Endpoints — Pro
Get top brands
Endpoints — Pro
Get top brands
Get the top brands by product count
GET
/
v2
/
brands
curl --request GET \
--url https://api.kicks.dev/v2/brands \
--header 'Authorization: <api-key>'
{
"status": "success",
"error": "",
"message": "",
"query": {},
"data": [
{
"brand": "Nike",
"count": 33735
},
{
"brand": "adidas",
"count": 18459
},
{
"brand": "Supreme",
"count": 17581
},
{
"brand": "Jordan",
"count": 10045
},
{
"brand": "BAPE",
"count": 8098
},
{
"brand": "New Balance",
"count": 5162
}
/* ... */
],
"meta": null
}
This endpoint is limited to 50 brands and is always ordered by DESCENDING
count (highest to lowest).
{
"status": "success",
"error": "",
"message": "",
"query": {},
"data": [
{
"brand": "Nike",
"count": 33735
},
{
"brand": "adidas",
"count": 18459
},
{
"brand": "Supreme",
"count": 17581
},
{
"brand": "Jordan",
"count": 10045
},
{
"brand": "BAPE",
"count": 8098
},
{
"brand": "New Balance",
"count": 5162
}
/* ... */
],
"meta": null
}
curl --request GET \
--url https://api.kicks.dev/v2/brands \
--header 'Authorization: <api-key>'
{
"status": "success",
"error": "",
"message": "",
"query": {},
"data": [
{
"brand": "Nike",
"count": 33735
},
{
"brand": "adidas",
"count": 18459
},
{
"brand": "Supreme",
"count": 17581
},
{
"brand": "Jordan",
"count": 10045
},
{
"brand": "BAPE",
"count": 8098
},
{
"brand": "New Balance",
"count": 5162
}
/* ... */
],
"meta": null
}