Get single order

Get order details API allows you to fetch details for a single order by order number. This includes shipping and payout information.

Request
Security:
path Parameters
orderNumber
required
string

The unique order number

Responses
200

Ok

401

Unauthorized

500

Internal Server Error

get/selling/orders/{orderNumber}
Request samples
curl -i -X GET \
  https://api.stockx.com/v2/selling/orders/:orderNumber \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "askId": "13658831621304650018",
  • "orderNumber": "323314425-323214184",
  • "listingId": "35d76ac8-a112-4d75-b44f-c8ef04a87c93",
  • "amount": "140",
  • "currencyCode": "USD",
  • "createdAt": "2021-08-25T13:51:47.000Z",
  • "updatedAt": "2021-08-25T13:51:47.000Z",
  • "variant": {
    },
  • "product": {
    },
  • "status": "CREATED",
  • "shipment": {},
  • "payout": {
    }
}