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

# List Calls

> Retrieve a paginated list of every call placed in your workspace, filterable by agent, status, and time range.

<Warning>
  **Legacy endpoint - deprecated.** Unversioned endpoints are scheduled for removal on **July 31, 2026**. Use the [`/v1` version](/docs/api-reference/v1/calls/list) for new integrations. This endpoint remains available for existing integrations until then.
</Warning>

Returns every call placed in your workspace, paginated and sorted by start time (newest first). Each entry includes the call's `id`, current `status`, `agent_id`, destination phone number, duration, and creation timestamp. Use this for lightweight call browsing, status polling against a known set of recent calls, and quick filtering by agent or outcome.

For richer per-call data, full transcripts, recording URLs, sentiment, and the structured post-call analysis fields configured on the agent, use [List Call Logs](/docs/api-reference/call-logs/list) instead. Call logs carry the analytics payload while `/calls` is the lightweight scheduling-layer view.

## When to use this

* **Operational dashboards**: render a recent-calls table without paying the cost of full transcripts.
* **Live monitoring**: quickly filter to `initiated` and `in-progress` calls to see active conversations.
* **Per-agent health checks**: filter by `agent_id` to spot agents producing unusually high failure rates.

## Query parameters

| Parameter     | Description                                                                                |
| ------------- | ------------------------------------------------------------------------------------------ |
| `agent_id`    | Return only calls placed by a specific agent.                                              |
| `status`      | Filter by status (`initiated`, `in-progress`, `completed`, `failed`, `busy`, `no-answer`). |
| `from` / `to` | ISO 8601 timestamps to bound the result by `created_at`.                                   |
| `page`        | Page number, starting from 1.                                                              |
| `limit`       | Results per page (max 100, default 20).                                                    |

## Errors

* `403 Forbidden` is returned when the API key cannot read calls on this workspace.

## Related endpoints

* [Get Call](/docs/api-reference/v1/calls/get): fetch a single call's detail.
* [Trigger a Call](/docs/api-reference/v1/calls/create): start a new outbound call.
* [List Call Logs](/docs/api-reference/call-logs/list): richer call data with transcript and analysis.
* [Pagination](/docs/api-reference/pagination): how DialNexa list endpoints paginate.


## OpenAPI

````yaml GET /calls
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /calls:
    get:
      tags:
        - Calls
      summary: Get all calls for the organization
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 


        Retrieve all call logs for the authenticated organization.
      operationId: CallsController_findAll
      parameters:
        - name: agent_id
          required: false
          in: query
          description: >-
            Filter by agent ID(s) - can be a single ID or comma-separated list
            (e.g., 1,2,3)
          schema:
            type: string
        - name: call_id
          required: false
          in: query
          description: >-
            Filter by call ID - can be a single ID or comma-separated list
            (e.g., call_abc,call_def)
          schema:
            type: string
        - name: batch_call_id
          required: false
          in: query
          description: >-
            Filter by batch call ID - can be a single ID or comma-separated list
            (e.g., batch_abc,batch_def)
          schema:
            type: string
        - name: from
          required: false
          in: query
          description: Filter by sender phone number
          schema:
            type: string
        - name: to
          required: false
          in: query
          description: Filter by recipient phone number
          schema:
            type: string
        - name: type
          required: false
          in: query
          description: >-
            Filter by call type(s) - can be a single value or comma-separated
            list
          schema:
            type: string
            enum:
              - phone
              - web
        - name: call_direction
          required: false
          in: query
          description: >-
            Filter by call direction(s) - can be a single value or
            comma-separated list
          schema:
            type: string
            enum:
              - inbound
              - outbound
        - name: latency_min
          required: false
          in: query
          description: Filter by minimum latency (in milliseconds)
          schema:
            type: number
        - name: latency_max
          required: false
          in: query
          description: Filter by maximum latency (in milliseconds)
          schema:
            type: number
        - name: agent_version_id
          required: false
          in: query
          description: >-
            Filter by agent version ID(s) - can be a single ID or
            comma-separated list (e.g., 1,2,3)
          schema:
            type: string
        - name: agent_version_name
          required: false
          in: query
          description: Search by agent version name (partial match, case-insensitive)
          schema:
            type: string
        - name: sentiment
          required: false
          in: query
          description: >-
            Filter by sentiment(s) - can be a single value or comma-separated
            list
          schema:
            type: string
            enum:
              - positive
              - neutral
              - negative
              - unknown
        - name: start_date
          required: false
          in: query
          description: Filter by start date (ISO format)
          schema:
            type: string
        - name: end_date
          required: false
          in: query
          description: Filter by end date (ISO format)
          schema:
            type: string
        - name: duration_greater_than
          required: false
          in: query
          description: Filter by minimum call duration (in milliseconds)
          schema:
            type: number
        - name: duration_less_than
          required: false
          in: query
          description: Filter by maximum call duration (in milliseconds)
          schema:
            type: number
        - name: duration_min
          required: false
          in: query
          description: Filter by minimum duration range (in milliseconds)
          schema:
            type: number
        - name: duration_max
          required: false
          in: query
          description: Filter by maximum duration range (in milliseconds)
          schema:
            type: number
        - name: page
          required: false
          in: query
          description: Page number (starts from 1)
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: 'Number of records per page (min: 1, default: 20, max: 200)'
          schema:
            type: string
        - name: created_at
          required: false
          in: query
          description: Sort by created_at (asc or desc)
          schema:
            type: string
            enum:
              - asc
              - desc
        - name: duration
          required: false
          in: query
          description: Sort by duration (asc or desc)
          schema:
            type: string
            enum:
              - asc
              - desc
        - name: status
          required: false
          in: query
          description: >-
            Filter by call status(es) - can be a single status or
            comma-separated list
          schema:
            type: string
        - name: export
          required: false
          in: query
          description: Set to true to export all data without pagination
          schema:
            type: boolean
        - name: x-organization-id
          in: header
          description: Encrypted ID of the organization
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Return all calls for the organization
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CallLogs'
        '401':
          description: Unauthorized
      deprecated: true
components:
  schemas:
    CallLogs:
      type: object
      properties:
        id:
          type: string
          example: call_abc123
          description: Signed call ID
      required:
        - id
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````