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

# List All Conversations

> Conversations across every agent the caller can see, newest first.

``cursor`` is the offset into the sorted result set. It is honest about what it
is: calls recorded between two page requests shift later rows, so a row can
repeat or be missed while paging through a live agent.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/conversations
openapi: 3.1.0
info:
  description: >
    Create and run form-filling voice agents, and read back the conversations
    they had.


    Send your API key on every request as `Authorization: Bearer fb_live_...`.

    A key belongs to one workspace and only reaches that workspace's agents.
    Create

    and revoke keys from Settings in the web app; keys cannot manage other keys.
  title: FormBharo API
  version: 1.0.0
servers:
  - description: Production
    url: https://form-fill-agent-backend.artpark.ai
security:
  - apiKey: []
paths:
  /api/v1/conversations:
    get:
      tags:
        - Analytics
      summary: List All Conversations
      description: >-
        Conversations across every agent the caller can see, newest first.


        ``cursor`` is the offset into the sorted result set. It is honest about
        what it

        is: calls recorded between two page requests shift later rows, so a row
        can

        repeat or be missed while paging through a live agent.
      operationId: list_all_conversations_api_v1_conversations_get
      parameters:
        - in: query
          name: workspace_id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Workspace Id
        - in: query
          name: agent_id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Agent Id
        - in: query
          name: status
          required: false
          schema:
            anyOf:
              - enum:
                  - complete
                  - screened_out
                  - failed
                  - in_progress
                type: string
              - type: 'null'
            title: Status
        - in: query
          name: source
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Source
        - description: >-
            Unix seconds; created_at >= since. Note: created_at is the last time
            the call's answers were written, not when the call happened, so a
            call edited later moves.
          in: query
          name: since
          required: false
          schema:
            anyOf:
              - type: number
              - type: 'null'
            description: >-
              Unix seconds; created_at >= since. Note: created_at is the last
              time the call's answers were written, not when the call happened,
              so a call edited later moves.
            title: Since
        - description: >-
            Unix seconds; created_at <= until. Note: created_at is the last time
            the call's answers were written, not when the call happened, so a
            call edited later moves.
          in: query
          name: until
          required: false
          schema:
            anyOf:
              - type: number
              - type: 'null'
            description: >-
              Unix seconds; created_at <= until. Note: created_at is the last
              time the call's answers were written, not when the call happened,
              so a call edited later moves.
            title: Until
        - in: query
          name: limit
          required: false
          schema:
            default: 50
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
        - in: query
          name: cursor
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/routes_analytics__ConversationPage'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    routes_analytics__ConversationPage:
      properties:
        data:
          items:
            additionalProperties: true
            type: object
          title: Data
          type: array
        next_cursor:
          anyOf:
            - type: integer
            - type: 'null'
          title: Next Cursor
      required:
        - data
        - next_cursor
      title: ConversationPage
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    apiKey:
      bearerFormat: fb_live_...
      scheme: bearer
      type: http

````