Batch listings creation - Get Batch Status

Once you are able to create a batch successfully, you need to poll the get batch status API to track the progress of the batch. This polling is necessary because all batch operations are asynchronous in nature.

Request
Security:
path Parameters
batchId
required
string

Unique Batch ID

Responses
200

Ok

401

Unauthorized

500

Internal Server Error

get/selling/batch/create-listing/{batchId}
Request samples
curl -i -X GET \
  https://api.stockx.com/v2/selling/batch/create-listing/:batchId \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "batchId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
  • "status": "QUEUED",
  • "completedAt": "2021-11-09T12:44:31.000Z",
  • "createdAt": "2021-11-09T12:44:31.000Z",
  • "updatedAt": "2021-11-09T12:44:31.000Z",
  • "totalItems": 10,
  • "itemStatuses": {
    }
}