List Batch Jobs
Retrieve batch jobs with pagination and optional status filtering, including progress and lifecycle details for operational monitoring.
Endpoint URL
https://api.neudociq.com/api/v1/batchOverview
Retrieve batch jobs with pagination and optional status filtering, including progress and lifecycle details for operational monitoring.
Purpose
List Batch Jobs
Use Case
This endpoint is read-only and should be safe to call repeatedly for the same resource identifier.
Authentication
- APIKeyHeader: API key in header (X-API-Key).
Header Example
X-API-Key: ndq_test_api_keyHeaders
No parameters.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| status | unknown | Optional | Filter by batch status | - |
| page | integer | Optional | Page number (1-indexed) | - |
| page_size | integer | Optional | Items per page | - |
Path Parameters
No parameters.
Request Fields
No request body fields are defined for this endpoint.
Request Default
Copy-ready examples with real endpoint paths and authentication placeholders.
const url = "https://api.neudociq.com/api/v1/batch";
const response = await fetch(url, {
method: 'GET',
headers: {
'X-API-Key': 'ndq_test_api_key',
},
});
const data = await response.json();
console.log(data);Best Practices
- Validate required fields client-side before sending requests.
- Log request identifiers and HTTP status codes for supportability.
- Retry only when the operation is safe or your workflow is idempotent.
- Poll status endpoints with backoff and stop polling once the batch reaches a terminal state.