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

# List recordings

> Returns processed recordings for your organization, ordered by most recent first.



## OpenAPI

````yaml /openapi.json get /v1/recordings
openapi: 3.1.0
info:
  title: Sales Ask API
  version: 1.0.0
  description: >-
    Public API for integrating with Sales Ask. Authenticate every request using
    your organization API key in the x-api-key header. To generate an API key,
    call POST /organizations/:organizationId/api-key while authenticated as an
    organization admin.
servers:
  - url: https://integrations.salesask.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/recordings:
    get:
      tags:
        - Recordings
      summary: List recordings
      description: >-
        Returns processed recordings for your organization, ordered by most
        recent first.
      operationId: listRecordings
      parameters:
        - name: fromDate
          in: query
          schema:
            type: string
            format: date-time
          description: Filter recordings created on or after this date (ISO 8601)
        - name: toDate
          in: query
          schema:
            type: string
            format: date-time
          description: Filter recordings created on or before this date (ISO 8601)
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
          description: Number of results to return
        - name: startAfter
          in: query
          schema:
            type: string
            format: date-time
          description: >-
            Pagination cursor. Pass the nextCursor value from the previous
            response.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  recordings:
                    type: array
                    items:
                      $ref: '#/components/schemas/Recording'
                  nextCursor:
                    type: string
                    format: date-time
                    nullable: true
                  hasMore:
                    type: boolean
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Recording:
      type: object
      properties:
        id:
          type: string
          example: abc123
        name:
          type: string
          nullable: true
          example: Call with John Doe
        status:
          type: string
          enum:
            - processing
            - processed
            - processing-failed
          example: processed
        organizationId:
          type: string
          example: org_abc
        createdAt:
          type: string
          format: date-time
          nullable: true
        updatedAt:
          type: string
          format: date-time
          nullable: true
        duration:
          type: integer
          nullable: true
          description: Duration in milliseconds
          example: 1800000
        summary:
          type: string
          nullable: true
        notes:
          type: string
          nullable: true
        actionItems:
          nullable: true
        coaching:
          nullable: true
        tags:
          type: array
          nullable: true
          items:
            type: string
        recording:
          type: string
          format: uri
          example: https://integrations.salesask.com/meetings/abc123
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````