GET
/
v3
/
stockx
/
products
/
{id}
/
sales
/
daily
curl --request GET \
  --url https://api.kicks.dev/v3/stockx/products/{id}/sales/daily \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "data": [
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 183.8085174560547,
      "orders": 47,
      "date": "2025-01-22T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 179.1545867919922,
      "orders": 414,
      "date": "2025-01-21T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 148.87754821777344,
      "orders": 49,
      "date": "2025-01-20T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 164.15383911132812,
      "orders": 39,
      "date": "2025-01-19T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 173.375,
      "orders": 56,
      "date": "2025-01-18T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 170.18182373046875,
      "orders": 22,
      "date": "2025-01-17T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 166.16128540039062,
      "orders": 31,
      "date": "2025-01-16T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 153.23077392578125,
      "orders": 39,
      "date": "2025-01-15T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 172.375,
      "orders": 16,
      "date": "2025-01-14T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 176.75,
      "orders": 16,
      "date": "2025-01-13T00:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total": 10
  }
}

Membership

This endpoint is available in the pro tier.

Path parameters

id
string
required

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

Parameters

limit
number
default:"50"

The number of results to return.

page
number
default:"1"

The page number to return.

{
  "status": "success",
  "data": [
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 183.8085174560547,
      "orders": 47,
      "date": "2025-01-22T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 179.1545867919922,
      "orders": 414,
      "date": "2025-01-21T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 148.87754821777344,
      "orders": 49,
      "date": "2025-01-20T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 164.15383911132812,
      "orders": 39,
      "date": "2025-01-19T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 173.375,
      "orders": 56,
      "date": "2025-01-18T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 170.18182373046875,
      "orders": 22,
      "date": "2025-01-17T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 166.16128540039062,
      "orders": 31,
      "date": "2025-01-16T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 153.23077392578125,
      "orders": 39,
      "date": "2025-01-15T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 172.375,
      "orders": 16,
      "date": "2025-01-14T00:00:00Z"
    },
    {
      "product_id": "71fe981f-f575-4d16-a85e-277411b05878",
      "avg_amount": 176.75,
      "orders": 16,
      "date": "2025-01-13T00:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total": 10
  }
}