List Brands by Interest Category
Brands grouped by interest category. The response is keyed by interest name (e.g. Music, Electronics & Computers) with up to 20 brands per category. Note: sortColumn is accepted for API compatibility but the handler currently returns a fixed ordering.
Query Parameters
- Type: string enumsort
Column Column used to order interest groups. One of
followers,likers. Defaults tofollowers.values- followers
- likers
- Type: integerbrand
Count min:1max:50Maximum number of brands returned per interest category. Defaults to 10, max 50.
Responses
- application/json
Request Example for get/api/brand/list/by/interest
curl https://api.chartmetric.com/api/brand/list/by/interest \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"Electronics & Computers": [
{
"brand_id": 138,
"brand_name": "Apple",
"interest_id": 25,
"interest_name": "Electronics & Computers",
"followers": 3305301635,
"artist_count": 141435
}
],
"Music": []
}
}