Your first request
Understand submission, polling, and result retrieval.
- Submit a
POST /api/v1/data/requestsrequest with a URL and route preferences. - Poll
GET /api/v1/data/requests/{id}until the job reaches a terminal state. Use backoff; do not hammer the status endpoint. - Retrieve
GET /api/v1/data/requests/{id}/resultafter success. - Validate the result in your application before persisting or serving it.
Use Idempotency-Key on submission so a network retry does not accidentally create duplicate work. Do not assume that a submitted request is complete, and do not treat a non-2xx response as a result payload.
Last updated on