v1

latestOpenAPI 3.0.0MIT2026-08-043290199.3 KB
Order

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.

get/selling/orders/{orderNumber}

Path parameters

orderNumberstring required

The unique order number. Standard example: 323314425-323214184. Flex example: 02-L0QT6MRVSG

Response

Ok

askIdstring required

Unique identifier for an ask on the StockX platform

orderNumberstring required

The unique order number. Standard example: 323314425-323214184. Flex example: 02-L0QT6MRVSG

listingIdstring nullable required

Unique ID for this listing

amountstring required

The ask/order price

currencyCodestring nullable required

The currency type for this order.<br><br>Available values: "AUD", "CAD", "CHF", "EUR", "GBP", "HKD", "JPY", "KRW", "MXN", "NZD", "SGD", "USD"

createdAtstring date-time nullable required

When the order was created in UTC. Represented as ISO 8601 format like 2021-08-25T13:51:47.000Z

updatedAtstring date-time nullable required

When the order was updated in UTC. Represented as ISO 8601 format like 2021-08-25T13:51:47.000Z

inventoryType'STANDARD' | 'FLEX' | 'DFS' | 'DIRECT' required

Example response

{
  "askId": "13658831621304650018",
  "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": {
    "variantName": "Auston-Matthews-2016-Upper-Deck-Series-1-Young-Guns-Rookie-201:0",
    "variantValue": "PSA 10"
  },
  "product": {
    "productId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
    "productName": "Gucci Duchessa Boston Bag"
  },
  "shipment": {
    "trackingNumber": "1Z3983AF9121770825",
    "trackingUrl": "http://wwwapps.ups.com/etracking/tracking.cgi?tracknum=1Z3983AF9121770825",
    "carrierCode": "UPS",
    "shippingLabelUrl": "https://stockx.com/shipping_label.png",
    "shippingDocumentUrl": "https://api.stockx.io/v1/selling/orders/12342334/shipping-document/S-123"
  },
  "payout": {
    "adjustments": [
      {
        "adjustmentType": "Shipping Fee (10%)"
      }
    ]
  }
}