Reference
//
Stream job status
Returns progress counters for a stream job. Poll to track completion without consuming webhook deliveries.
Security
ApiKeyAuth or BearerAuth or BasicAuth
- Mock serverhttps://docs.kwery.co/_mock/api-reference/stream/{id}
- Productionhttps://api.kwery.co/stream/{id}
curl -i -X GET \
https://docs.kwery.co/_mock/api-reference/stream/64f1c2d3e4b5a6c7d8e9f0a1 \
-H 'x-api-key: YOUR_API_KEY_HERE'Stream job status
One of:
| Value | Meaning |
|---|---|
new | Created, queued for processing |
working | Crawls in progress |
finished | All results assembled |
failed | Timed out or unrecoverable error |
Enum:"new""working""finished""failed"
Response
{ "error": false, "job_id": "64f1c2d3e4b5a6c7d8e9f0a1", "status": "working", "source": "idealo", "country": "de", "values_total": 1000, "values_done": 452, "values_errors": 3, "is_final": false, "created_at": "2026-04-03T10:00:00.000Z", "finished_at": null, "client_ref": "batch-2026-04-03" }