> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vertracloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Application Logs

> Retrieves logs for an application by its ID.

<ParamField path="id" type="string" required>
  The application ID to retrieve real-time logs. If the application
  belongs to a workspace, include the workspace ID in the format
  `appId-workspaceId`.
</ParamField>

### Response

<ResponseField name="response" type="string">
  The log content for the specified application.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "response": "2026-03-20T19:58:00Z [INFO] Application iniciada com sucesso\n2026-03-20T19:58:01Z [DEBUG] Connected to database\n2026-03-20T19:58:02Z [ERROR] Failed to process request"
  }
  ```
</ResponseExample>
