Get Brand Info (V2)
Brand profile — identity, categorisation, per-platform follower counts, social handles — plus the artists whose audience best matches the brand.
Replaces GET /api/brand/{brandId}. The two do not share a brand universe, so a brandId from V1 is not valid here.
| V1 | V2 |
|---|---|
Artist list only (brandName, total, artists) |
Full brand profile plus the artist list |
| Instagram followers only | instagram_followers, tiktok_followers, youtube_followers |
affinity, a ratio around 1.0 |
audience_similarity, a 0-100 Affinity score |
overlap, overlap_percent, instagram_likers.* |
no equivalent — the affinity model was rebuilt |
Returns null in obj when the brand ID is unknown.
- Type: integerbrand
Id min:0max:2147483647requiredChartmetric brand ID.
- Type: string enumsort
Column Column used to sort the artist list. One of
followers,name,audienceSimilarity. Defaults tofollowers.values- followers
- name
- audience
Similarity
- Type: booleansort
Order Desc If true (default), sort
sortColumnin descending order. - Type: integerlimitmin:1max:100
Maximum number of artists to return. Defaults to 10, max 100.
- Type: integeroffsetmin:0
Number of items to skip from the start of the result set; pair with
limitto paginate. - Type: string enumplatform
Platform each artist's
followerscount is reported on, which also determines thefollowerssort order. One ofinstagram,tiktok,youtube. Defaults toinstagram. Does not affectaudience_similarity, which always reflects the strongest platform pair.values- instagram
- tiktok
- youtube
- application/json
curl https://api.chartmetric.com/api/brand/v2/1 \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"id": 138,
"name": "Apple",
"image_url": "https://storage.googleapis.com/cm-brand-images/138.jpg",
"country": "US",
"category": "Electronics & Computers",
"sub_categories": [
"Smartphones",
"Computers"
],
"description": "Consumer electronics and software company.",
"instagram_followers": 33500000,
"tiktok_followers": 2100000,
"youtube_followers": 19800000,
"social_links": {
"instagram": "https://www.instagram.com/apple",
"tiktok": "https://www.tiktok.com/@apple",
"youtube": "https://www.youtube.com/@Apple"
},
"artist_count": 98864,
"artists": [
{
"id": 74419,
"name": "XXXTENTACION",
"image_url": "https://rovimusic.rovicorp.com/image.jpg",
"country": "US",
"followers": 20578742,
"genres": [
"Hip-Hop/Rap",
"Pop"
],
"audience_similarity": 87.4,
"brand_platform": "instagram",
"best_artist_platform": "instagram"
}
]
}
}