# List batches

> List your most recent batches (newest first) with per-status job counts. (GET /v1/batches)

Source: https://sightradar.com/docs/api/batch/list-batches

List your most recent batches (newest first) with per-status job
counts. Use this to power a dashboard history view. Free.

### Example request

```bash
curl -X GET "https://api.sightradar.com/v1/batches" \
  -H "Authorization: Bearer $SR_API_KEY"
```

### Parameters

| Name    | In    | Type      | Description |
| ------- | ----- | --------- | ----------- |
| `limit` | query | `integer` |             |

### Response body

| Field     | Type       | Description |
| --------- | ---------- | ----------- |
| `batches` | `object[]` |             |

### Status codes

| Status | Meaning                     |
| ------ | --------------------------- |
| `200`  | Recent batches.             |
| `401`  | Missing or invalid API key. |
