CaptureIQ
GET
/api/v1/captureiq/jobs/:jobIdPoll the status of an async CaptureIQ analysis job.
Authentication
Any valid key scoped to the same organization that created the job. See Authentication.
Code examples
curl https://api.myqateam.com/api/v1/captureiq/jobs/c4b2... \ -H "Authorization: Bearer myqa_..."Response — processing
json
{ "job_id": "c4b2…", "status": "processing", "created_at": "2026-04-19T12:00:00Z" }Response — completed
json
{ "job_id": "c4b2…", "status": "completed", "created_at": "...", "completed_at": "...", "data": { /* same shape as the sync analyze response */ }}Response — failed
json
{ "job_id": "c4b2…", "status": "failed", "error": { "code": "PROCESSING_ERROR", "message": "..." }, "completed_at": "..."}