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
  • sortColumn
    Type: string enum

    Column used to order interest groups. One of followers, likers. Defaults to followers.

    values
    • followers
    • likers
  • brandCount
    Type: integer
    min:  
    1
    max:  
    50

    Maximum 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": []
  }
}