> ## 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 Batch Calls

> Retrieve every batch call job in your workspace, with status and progress counters, ordered newest first.

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

Returns every batch call job in your workspace, paginated and sorted by creation date (newest first). Each entry includes the batch's display `name`, the current `status`, the totals of attempted and completed calls, and the creation timestamp. Use this to power a batch history dashboard, build automation that watches for new batches, or audit which jobs have run in a given period.

## When to use this

* **Operational dashboards**: render a batch history view with progress bars.
* **Compliance audits**: list every batch run in a quarter for review.
* **Reporting pipelines**: sync batch metadata into a data warehouse alongside call logs.
* **Automation triggers**: detect newly created batches and start downstream reporting jobs.

## Query parameters

| Parameter | Description                                                                    |
| --------- | ------------------------------------------------------------------------------ |
| `page`    | Page number, starting from 1.                                                  |
| `limit`   | Results per page (max 100, default 20).                                        |
| `status`  | Filter by status (`queued`, `processing`, `completed`, `failed`, `cancelled`). |

## Errors

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

## Related endpoints

* [Get Batch Call](/docs/api-reference/v1/batches/get): fetch a single batch's detail.
* [Create Batch Call](/docs/api-reference/v1/batches/create): start a new batch.
* [Pagination](/docs/api-reference/pagination): how DialNexa list endpoints paginate.
* [Batch calling](/docs/batch-calls/overview): guidance on designing a batch.


## OpenAPI

````yaml GET /batch-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:
  /batch-calls:
    get:
      tags:
        - Batch Calls
      summary: List batch calls for the organization
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 
      operationId: BatchCallsController_list
      parameters:
        - name: x-organization-id
          in: header
          description: RSA encrypted organization ID (base64 format)
          required: true
          schema:
            type: string
            example: BASE64_ENCRYPTED_ORG_ID_HERE
      responses:
        '200':
          description: Batch calls fetched successfully
      deprecated: true
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````