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

# Get execution logs

> Returns paginated execution logs from GCS. Logs are agent conversation entries (tool calls, responses, assistant messages) stored as JSONL chunks.



## OpenAPI

````yaml /openapi/v1.json get /projects/{id}/executions/{executionId}/logs
openapi: 3.1.0
info:
  title: Bugzy API
  description: >-
    Programmatic access to Bugzy's QA automation capabilities. Trigger test
    runs, query results, manage schedules, and configure event triggers.
  version: 1.0.0
  contact:
    name: Bugzy Support
    url: https://www.bugzy.ai
servers:
  - url: https://bugzy.ai/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /projects/{id}/executions/{executionId}/logs:
    get:
      tags:
        - Executions
      summary: Get execution logs
      description: >-
        Returns paginated execution logs from GCS. Logs are agent conversation
        entries (tool calls, responses, assistant messages) stored as JSONL
        chunks.
      operationId: getExecutionLogs
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: executionId
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: page
          in: query
          schema:
            type: integer
            default: 1
          description: Page number (1-indexed)
        - name: pageSize
          in: query
          schema:
            type: integer
            default: 10
          description: Number of log chunks per page
      responses:
        '200':
          description: Paginated execution log entries
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                  pagination:
                    type: object
                    properties:
                      page:
                        type: integer
                      pageSize:
                        type: integer
                      totalChunks:
                        type: integer
                      hasMore:
                        type: boolean
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Project API key (bzy_proj_*) for project routes or team API key
        (bzy_team_*) for selected team routes.

````