GET
/
v3
/
stockx
/
products
/
{id}
/
chart
curl --request GET \
  --url https://api.kicks.dev/v3/stockx/products/{id}/chart \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "data": [
    {
      "product_id": "fb1a8a7d-5be4-4f0e-a4b5-bf0a735ab7fe",
      "date": "2025-07-02T00:00:00Z",
      "amount": 226,
      "currency": "USD"
    },
    {
      "product_id": "fb1a8a7d-5be4-4f0e-a4b5-bf0a735ab7fe",
      "date": "2025-07-04T00:00:00Z",
      "amount": 228,
      "currency": "USD"
    },
    {
      "product_id": "fb1a8a7d-5be4-4f0e-a4b5-bf0a735ab7fe",
      "date": "2025-07-06T00:00:00Z",
      "amount": 228,
      "currency": "USD"
    }
  ]
}

Information

This endpoint is a different from Daily Orders and Sales History.

  • Daily Orders and Sales History are aggregated by KicksDB based on sale history we collect, it might differ from StockX’s data.
  • Chart is based on the StockX Sales Chart that you can find on the end of the product page.

Membership

This endpoint is available in the standard tier.

Path parameters

id
string
required

The StockX UUID of the product. The slug is not supported.

Parameters

from
string

The start date of the chart, in YYYY-MM-DD format. By default, NOW - 1 MONTH.

to
string

The end date of the chart, in YYYY-MM-DD format. By default, NOW.

{
  "status": "success",
  "data": [
    {
      "product_id": "fb1a8a7d-5be4-4f0e-a4b5-bf0a735ab7fe",
      "date": "2025-07-02T00:00:00Z",
      "amount": 226,
      "currency": "USD"
    },
    {
      "product_id": "fb1a8a7d-5be4-4f0e-a4b5-bf0a735ab7fe",
      "date": "2025-07-04T00:00:00Z",
      "amount": 228,
      "currency": "USD"
    },
    {
      "product_id": "fb1a8a7d-5be4-4f0e-a4b5-bf0a735ab7fe",
      "date": "2025-07-06T00:00:00Z",
      "amount": 228,
      "currency": "USD"
    }
  ]
}