v1

latestOpenAPI 3.1.02026-07-136138.4 KB
Batch
Distill

Get Batch Distill Job Status

Check the status and retrieve results of a batch distill job.

Response States:

  • processing: Job is currently running
  • completed: All URLs have been processed
  • failed: Job encountered a fatal error

Polling Best Practices:

  • Poll every 5-10 seconds for jobs with <10 URLs
  • Poll every 30-60 seconds for larger jobs
  • Use webhooks for better efficiency

Partial Results: You can retrieve completed results while the job is still processing. The results array will contain all URLs processed so far.

get/batch/distill/{id}

Path parameters

idstring required

Batch task ID

Response

Success response

successboolean

Example response

{
  "success": true,
  "data": {
    "id": "batch_abc123",
    "status": "completed",
    "total": 3,
    "completed": 3,
    "creditsUsed": 3
  }
}