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

# Retrieve Execution Logs for a Call Log

> Retrieve the provider execution logs captured for a production call log.



## OpenAPI

````yaml get /observability/v1/call-logs/{id}/logs/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /observability/v1/call-logs/{id}/logs/:
    get:
      tags:
        - observability
      summary: Retrieve execution logs for a call log
      description: >-
        Retrieve the provider execution logs captured for a production call log.


        Before calling this tool, retrieve or list the call log and confirm that
        `is_log_present` is true; when it is false no logs were captured. Pass
        the call log's integer `id`, not its provider `call_id`. Entries are
        normalized across providers into `ts`, `level`, `message` and an
        optional provider-specific `raw`.
      operationId: call-logs-execution-logs-retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallLogLogsResponse'
          description: ''
        '404':
          description: The call log does not exist or has no stored execution logs.
      security:
        - api_key: []
        - oauth2: []
        - embedded_session: []
        - supabase_session: []
components:
  schemas:
    CallLogLogsResponse:
      type: object
      properties:
        provider:
          type: string
          description: Provider the logs were captured from.
        format:
          type: string
          description: >-
            Shape of the source log: `text` for line logs, `events` for
            structured ones.
        fetched_at:
          type: string
          description: When the logs were captured from the provider.
        entries:
          description: Normalized log entries, oldest first.
      required:
        - entries
        - fetched_at
        - format
        - provider
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-CEKURA-API-KEY
      description: >-
        API Key Authentication. It should be included in the header of each
        request.
    oauth2:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth access token issued by Cekura for connected apps.
    embedded_session:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Embedded-dashboard session token. Internal.
    supabase_session:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Cekura dashboard session token. Not a customer API credential.

````