Retrieve Job Status
Get the status and results of an async job:Cancel Job
Cancel a running job:List Jobs
Get a list of your jobs with pagination:Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | int | 100 | Maximum jobs per page (max: 500) |
cursor | str | None | None | Pagination cursor from previous response |
exclude_configs | bool | False | Exclude raw_config to reduce response size |
Polling for Completion
Poll for job completion:Job Status Values
| Status | Description |
|---|---|
Pending | Job is queued, waiting for a worker |
Idle | Job is idle, waiting to be picked up |
Completed | Results are ready |
Failed | Processing failed (check job.reason for details) |
Error Handling
Next Steps
- Learn about the async client for concurrent processing
- Explore error handling for robust applications