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

# List Call Logs

> List all call logs for the organization with pagination and date filtering.



## OpenAPI

````yaml https://voice.getprosperapp.com/openapi.json get /api/v1/call-logs
openapi: 3.1.0
info:
  title: Prosper Voice
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/call-logs:
    get:
      tags:
        - Call Logs
      summary: List Call Logs
      description: >-
        List all call logs for the organization with pagination and date
        filtering.
      operationId: list_call_logs_api_v1_call_logs_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            description: The page number to get.
            default: 0
            title: Page
          description: The page number to get.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            description: The number of call logs per page.
            default: 200
            title: Limit
          description: The number of call logs per page.
        - name: from_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter logs from this date.
            title: From Date
          description: Filter logs from this date.
        - name: to_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter logs until this date.
            title: To Date
          description: Filter logs until this date.
        - name: campaign_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter logs by campaign ID.
            title: Campaign Id
          description: Filter logs by campaign ID.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallLogExportPaginated'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CallLogExportPaginated:
      properties:
        call_logs:
          items:
            $ref: '#/components/schemas/CallLogListExportInformation'
          type: array
          title: Call Logs
        page_count:
          type: integer
          title: Page Count
        next_page:
          anyOf:
            - type: integer
            - type: 'null'
          title: Next Page
      type: object
      required:
        - call_logs
        - page_count
        - next_page
      title: CallLogExportPaginated
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CallLogListExportInformation:
      properties:
        id:
          type: string
          title: Id
        to:
          type: string
          title: To
        from_:
          anyOf:
            - type: string
              const: DeprecatedLocalTest
            - type: string
          title: From
        created_at:
          type: string
          format: date-time
          title: Created At
        call_length:
          type: string
          title: Call Length
        call_ended_reason:
          type: string
          title: Call Ended Reason
        call_categorization:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Call Categorization
        agent_data:
          additionalProperties: true
          type: object
          title: Agent Data
        campaign_target_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Campaign Target Id
        post_call_data:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Post Call Data
        qa:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Qa
        transcripts:
          items:
            additionalProperties:
              type: string
            type: object
          type: array
          title: Transcripts
      type: object
      required:
        - id
        - to
        - from_
        - created_at
        - call_length
        - call_ended_reason
        - call_categorization
        - agent_data
        - campaign_target_id
        - post_call_data
        - qa
        - transcripts
      title: CallLogListExportInformation
      description: >-
        Call log export information for list endpoint - includes full data
        except recordings
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````