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

# Get Batch Details

> Fetches details for a single batch.

<ParamField path="batchId" type="string" required>
  The unique identifier of the batch.
</ParamField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "statusCode": 200,
    "message": "Batch retrieved successfully",
    "data": {
      "id": "08ddaf4f-77d9-4336-8e62-358d622f09e9",
      "organizationId": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
      "accountNumber": "1234567890",
      "batchReference": "PAYROLL-2026-06",
      "approvalStatus": "APPROVED",
      "executionMode": "SCHEDULED",
      "scheduleType": "DAILY",
      "scheduledAt": "2026-06-05T09:00:00Z",
      "recurrencePattern": "DAILY",
      "recurrenceInterval": 1,
      "recurrenceDays": "Mon,Tue,Wed,Thu,Fri",
      "recurrenceEndAt": "2026-12-31T23:59:59Z",
      "nextRunAt": "2026-06-06T09:00:00Z",
      "lastRunAt": "2026-06-05T09:00:00Z",
      "processingStatus": "COMPLETED",
      "createdAt": "2026-06-01T09:00:00Z",
      "updatedAt": "2026-06-05T09:00:00Z",
      "isActive": true,
      "totalRecipients": 100,
      "totalAmount": 50000
    }
  }
  ```
</ResponseExample>
