Get all listings API allows you to fetch all existing listings. Multiple filters are available.
Ok
Bad Request
Unauthorized
Internal Server Error
curl -i -X GET \ 'https://api.stockx.com/v2/selling/listings?pageNumber=1&pageSize=1&productIds=string&variantIds=string&batchIds=string&fromDate=string&toDate=string&listingStatuses=string&inventoryTypes=string' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>' \ -H 'x-api-key: YOUR_API_KEY_HERE'
{- "count": 266,
- "pageSize": 10,
- "pageNumber": 1,
- "hasNextPage": true,
- "listings": [
- {
- "listingId": "98e2e748-8000-45bf-a624-5531d6a68318",
- "status": "ACTIVE",
- "amount": "300",
- "currencyCode": "AUD",
- "inventoryType": "STANDARD",
- "createdAt": "2021-11-09T12:44:31.000Z",
- "updatedAt": "2021-11-09T12:44:31.000Z",
- "batch": {
- "batchId": "86378f62-ad0e-4a06-9c8e-642731bb9140",
- "taskId": "7083634e-3bc5-4747-a4f3-768093074b5e"
}, - "ask": {
- "askId": "string",
- "askCreatedAt": "2021-11-09T12:44:31.000Z",
- "askUpdatedAt": "2021-11-09T12:44:31.000Z",
- "askExpiresAt": "2021-11-09T12:44:31.000Z"
}, - "order": {
- "orderNumber": "323314425-323214184",
- "orderCreatedAt": "2021-11-09T12:44:31.000Z",
- "orderStatus": "CREATED"
}, - "product": {
- "productId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
- "productName": "Nike Air"
}, - "variant": {
- "variantId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
- "variantName": "color",
- "variantValue": "black"
}
}
]
}