Festival List
Get Chartmetric's Festival List. Supports filtering by country codes, genre IDs, event-size categories, and name search. Sort by festivalName, rank, startDate (default), numberOfDays, eventSize, score, or totalEditions.
- Type: array string[] · code2[]code2s[]
Filter to festivals held in these countries (ISO 3166-1 alpha-2 codes, e.g. ['US', 'GB']).
- Type: array integer[]genre
Ids[] Filter to festivals matching any of these Chartmetric genre IDs.
- Type: string enumsort
Column Column used to sort the festival list. One of
rank,score,festivalName,startDate,numberOfDays,eventSize,totalEditions. Defaults tostartDate.values- rank
- score
- festival
Name - start
Date - number
Of Days - event
Size - total
Editions
- Type: booleansort
Order Desc If true, sort
sortColumnin descending order. Defaults to false. - Type: stringname
Search max length:100Case-insensitive substring filter on festival name.
- Type: integerlimitmin:1
Maximum number of items to return per request.
- Type: integeroffsetmin:0max:100000
Number of items to skip from the start of the result set; bounded by the public API offset limit.
- Type: array string[] enumevent
Sizes[] Filter by festival size category. One of
small,medium,large,mega.values- small
- medium
- large
- mega
- application/json
curl https://api.chartmetric.com/api/festival/list \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": [
{
"id": 642168,
"name": "Rock Werchter",
"date": "2025-07-03 00:00:00.000",
"numberOfDays": 3,
"city": "Werchter",
"country": "BE",
"performersCount": 89,
"popularityRank": 21,
"eventSize": "Mega (60K+)",
"topGenres": [
{
"id": 501120,
"name": "pop"
},
{
"id": 501122,
"name": "rock"
},
{
"id": 501124,
"name": "electronic"
}
],
"links": {
"jambase": "https://www.jambase.com/festival/rock-werchter-2025",
"songkick": null,
"seatgeek": null
}
}
]
}