v1
latestOpenAPI 3.0.0MIT2026-08-043290199.3 KBGet active orders
Get all active orders API allows you to view all their active orders in the StockX marketplace. An order is considered active from the time it was created to the time the product was received and authenticated by StockX and the seller is paid out.
Query parameters
The number of page
Requested page number. Starts at 1
To filter your Orders by a given order status<br><br>Available values: "CREATED", "CCAUTHORIZATIONFAILED", "SHIPPED", "RECEIVED", "AUTHENTICATING", "AUTHENTICATED", "PAYOUTPENDING", "PAYOUTCOMPLETED", "SYSTEMFULFILLED", "PAYOUTFAILED", "SUSPENDED", "PENDING", "DONOTSHIP"
Unique identifier for a product
Unique identifier for a products variant
The field by which the results are sorted. Defaults to "CREATEDAT" and can also accept "SHIPBYDATE".
Comma-separated list of inventory type(s). This field must not include array brackets [] or quotation marks ("| ''). The inventory types are STANDARD, FLEX or DIRECT.
The shipment's unique display id associated with the order. Note: This is the same ID generated when a Flex inbound list is created in StockX Pro.
Response
Ok
Example response
{
"count": 266,
"pageSize": 10,
"pageNumber": 1,
"hasNextPage": true,
"orders": [
{
"listingId": "35d76ac8-a112-4d75-b44f-c8ef04a87c93",
"askId": "13658831621304650018",
"amount": "140",
"currencyCode": "USD",
"createdAt": "2021-08-25T13:51:47.000Z",
"updatedAt": "2021-08-25T13:51:47.000Z",
"product": {
"productId": "bf364c53-eb77-4522-955c-6a6ce952cc6f",
"productName": "Gucci Duchessa Boston Bag"
},
"variant": {
"variantName": "Auston-Matthews-2016-Upper-Deck-Series-1-Young-Guns-Rookie-201:0",
"variantValue": "PSA 10"
},
"payout": {
"adjustments": [
{
"adjustmentType": "Shipping Fee (10%)"
}
]
},
"condition": "Used",
"conditionDescription": "Brand new, never worn"
}
]
}