Get 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.

Request
Security:
query Parameters
pageNumber
integer <int32> >= 1

The number of page

pageSize
integer <int32> [ 1 .. 100 ]

Requested page number. Starts at 1

orderStatus
string

To filter your Orders by a given order status

Available values: "CREATED", "CCAUTHORIZATIONFAILED", "SHIPPED", "RECEIVED", "AUTHENTICATING", "AUTHENTICATED", "PAYOUTPENDING", "PAYOUTCOMPLETED", "SYSTEMFULFILLED", "PAYOUTFAILED", "SUSPENDED"

Example: orderStatus=CREATED
productId
string

Unique identifier for a product

variantId
string

Unique identifier for a products variant

Responses
200

Ok

400

Bad Request

401

Unauthorized

500

Internal Server Error

get/selling/orders/active
Request samples
curl -i -X GET \
  'https://api.stockx.com/v2/selling/orders/active?pageNumber=1&pageSize=1&orderStatus=string&productId=string&variantId=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "count": 266,
  • "pageSize": 10,
  • "pageNumber": 1,
  • "hasNextPage": true,
  • "orders": [
    ]
}