List jobs
List jobs submitted for a given ASIN.
List jobs submitted for a given ASIN. Returns a paginated summary — use Get a job to fetch the full job details.
Endpoint
GET /v1/api/jobsQuery parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
asin | string | Required | Amazon Standard Identification Number. Must be 5–15 characters. Returns jobs submitted for this ASIN. |
Response fields
| Field | Type | Description |
|---|---|---|
data | object[] | Array of job summaries, most recent first |
data[].id | string | Unique job identifier. Use with Get a job for details |
data[].job_type | string | The type of job — e.g. Listing Builder or Scale |
data[].status | string | Current job status — see Get a job |
data[].created_at | string | ISO 8601 timestamp when the job was submitted |
total | number | Total number of jobs for this ASIN |
page | number | Current page (1-indexed) |
limit | number | Page size (default 20) |
Errors
| Code | HTTP | Description |
|---|---|---|
VALIDATION_ERROR | 400 | asin is missing or not 5–15 characters |
UNAUTHORIZED | 401 | Missing or invalid API key |