v1

latestOpenAPI 3.0.0MIT2026-08-043290199.3 KB
Order

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.

get/selling/orders/active

Query parameters

pageNumberinteger

The number of page

pageSizeinteger

Requested page number. Starts at 1

orderStatusstring

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"

productIdstring

Unique identifier for a product

variantIdstring

Unique identifier for a products variant

sortOrderstring

The field by which the results are sorted. Defaults to "CREATEDAT" and can also accept "SHIPBYDATE".

inventoryTypesstring

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.

initiatedShipmentDisplayIdsstring

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

countnumber double required

Total number of items present

pageSizenumber double required

Total number of items in the current page

pageNumbernumber double required

Requested page number. Starts at 1.

hasNextPageboolean required

Returns true if there are elements in the next page.

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"
    }
  ]
}