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

# List conversations for a project



## OpenAPI

````yaml api-reference/data/openapi.json GET /v1/agents/{agentId}/conversations
openapi: 3.1.0
info:
  title: Data API
  version: 1.0.9
  description: Query conversations, recordings, annotations, notes, and debug chat.
servers:
  - url: https://api.us.poly.ai
  - url: https://api.eu.poly.ai
  - url: https://api.uk.poly.ai
  - url: https://api.studio.poly.ai
security:
  - polyApiKey: []
paths:
  /v1/agents/{agentId}/conversations:
    parameters:
      - name: agentId
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Conversations
      summary: List conversations for a project
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            default: 50
            minimum: 1
            type: integer
          description: Max number of conversations to return
        - name: offset
          in: query
          required: false
          schema:
            default: 0
            minimum: 0
            type: integer
          description: Number of conversations to skip
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetConversationsResponse'
        '400':
          description: Validation error
        '401':
          description: Unauthorized – missing or invalid API key
        '403':
          description: Forbidden – insufficient permissions
components:
  schemas:
    GetConversationsResponse:
      description: |-
        A page of conversations matching the query, plus total count and
        limit/offset pagination.
      type: object
      properties:
        conversations:
          type: array
          items:
            $ref: '#/components/schemas/ConversationSummaryResponse'
        count:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
      required:
        - conversations
        - count
        - limit
        - offset
    ConversationSummaryResponse:
      description: Public-facing conversation summary (used in list endpoint).
      type: object
      properties:
        conversationId:
          type: string
        accountId:
          type: string
        projectId:
          type: string
        createdAt:
          type: string
        startedAt:
          type: string
        finishedAt:
          type: string
        channel:
          type: string
        fromNumber:
          type: string
        toNumber:
          type: string
        language:
          type: string
        variantId:
          type: string
        clientEnv:
          type: string
        totalDuration:
          type: integer
        polyaiDuration:
          type: integer
        duration:
          type: integer
        inProgress:
          type: boolean
        handoff:
          type: boolean
        handoffDestination:
          type: string
        handoffReason:
          type: string
        direction:
          type: string
        tags:
          type: array
          items:
            type: string
        polyScore:
          type: number
        shortSummary:
          type: string
        deploymentId:
          type: string
        note:
          type: string
        audioUrl:
          type: string
      required:
        - conversationId
        - accountId
        - projectId
  securitySchemes:
    polyApiKey:
      type: apiKey
      in: header
      name: X-API-KEY

````