Tasks - get all results
GET/api/v1/tasks/:taskId/results
Returns download URLs for every available result format in a single call. Use this instead of making multiple requests to /result/{format}.
Request
Responses
- 200
- 404
- 409
Download links for all available formats
Not found
Task is not yet completed
Reference
GET /api/v1/tasks/{taskId}/results
Returns download URLs for every available result format in a single call. Use this instead of making multiple requests to /result/{format}.
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
taskId | path | string | yes | Task ID |
Responses
| Status | Description |
|---|---|
200 | Download links for all available formats |
404 | Not found |
409 | Task is not yet completed |
Example request
curl -X GET "https://api.bitbybit.dev/api/v1/tasks/{taskId}/results" \
-H "x-api-key: YOUR_API_KEY"
Authentication: send your key in the x-api-key header. The full machine-readable specification is at openapi.json.