Pro subscription
Get a price history
API Documentation
Endpoints
Pro subscription
Get a price history
Get the price history for a product
GET
/
product
/
{id}
/
market
curl --request GET \
--url https://api.kicks.dev/product/{id}/market \
--header 'Authorization: Bearer <token>'
[
{
"id": "e3eb1f74-1eca-4494-ac5d-4414a6a6fec5",
"median_price": 249,
"avg_price": 248.24,
"variants": [
{
"size": "6",
"variant_id": "59ff0336-d226-4b11-b37f-f789a12c84d2",
"variant_price": 270
},
{
"size": "5",
"variant_id": "582e6a7b-c36a-46e4-8e4c-7d1c275a0685",
"variant_price": 262
}
],
"date": "2024-10-01T07:00:00+09:00"
},
{
"id": "e3eb1f74-1eca-4494-ac5d-4414a6a6fec5",
"median_price": 249,
"avg_price": 248.72,
"variants": [
{
"size": "11.5",
"variant_id": "f56a9180-ace3-4e21-a775-c6745cb84c6b",
"variant_price": 259
},
{
"size": "6.5",
"variant_id": "1207ac95-394a-4613-b9b5-e658fc089452",
"variant_price": 278
}
],
"date": "2024-09-29T07:00:00+09:00"
}
]
The product ID, must be an UUID. The slug will not be accepted.
There is not date range filter for this endpoint at this moment. Only the last 30 days of data is available.
The data is fetched daily, however, it begins on 2024-09-28, the date where we released this feature.
[
{
"id": "e3eb1f74-1eca-4494-ac5d-4414a6a6fec5",
"median_price": 249,
"avg_price": 248.24,
"variants": [
{
"size": "6",
"variant_id": "59ff0336-d226-4b11-b37f-f789a12c84d2",
"variant_price": 270
},
{
"size": "5",
"variant_id": "582e6a7b-c36a-46e4-8e4c-7d1c275a0685",
"variant_price": 262
}
],
"date": "2024-10-01T07:00:00+09:00"
},
{
"id": "e3eb1f74-1eca-4494-ac5d-4414a6a6fec5",
"median_price": 249,
"avg_price": 248.72,
"variants": [
{
"size": "11.5",
"variant_id": "f56a9180-ace3-4e21-a775-c6745cb84c6b",
"variant_price": 259
},
{
"size": "6.5",
"variant_id": "1207ac95-394a-4613-b9b5-e658fc089452",
"variant_price": 278
}
],
"date": "2024-09-29T07:00:00+09:00"
}
]
curl --request GET \
--url https://api.kicks.dev/product/{id}/market \
--header 'Authorization: Bearer <token>'
[
{
"id": "e3eb1f74-1eca-4494-ac5d-4414a6a6fec5",
"median_price": 249,
"avg_price": 248.24,
"variants": [
{
"size": "6",
"variant_id": "59ff0336-d226-4b11-b37f-f789a12c84d2",
"variant_price": 270
},
{
"size": "5",
"variant_id": "582e6a7b-c36a-46e4-8e4c-7d1c275a0685",
"variant_price": 262
}
],
"date": "2024-10-01T07:00:00+09:00"
},
{
"id": "e3eb1f74-1eca-4494-ac5d-4414a6a6fec5",
"median_price": 249,
"avg_price": 248.72,
"variants": [
{
"size": "11.5",
"variant_id": "f56a9180-ace3-4e21-a775-c6745cb84c6b",
"variant_price": 259
},
{
"size": "6.5",
"variant_id": "1207ac95-394a-4613-b9b5-e658fc089452",
"variant_price": 278
}
],
"date": "2024-09-29T07:00:00+09:00"
}
]