Charts · GET
Top 20 by followers
GET /top_20_by_followers
About
Top 20 by followers is a GET endpoint in the Charts group of the Spotify Data API. The spec declares no query or path parameters for it. The recorded sample response, captured 2025-06-07, is a JSON array of 25 objects: [].rank, [].picture, [].artist, [].followers, [].followersDaily, [].followersWeekly, [].artist_spotify_id, [].gender, [].genre, [].country and [].language.
Parameters
No parameters
The spec declares no query or path parameters for this endpoint.
Request
Against https://spotify-proxy.checkleaked.cc, with the same example values the Run button sends.
| curl -X GET \ |
| "https://spotify-proxy.checkleaked.cc/top_20_by_followers" \ |
| -H "x-api-key: $SPOTIFY_API_KEY" |
Sample response
Recorded sample · captured 2025-06-07
| [ |
| { |
| "rank": 1, |
| "picture": "data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E", |
| "artist": "Arijit Singh", |
| "followers": 148199358, |
| "followersDaily": 113458, |
| "followersWeekly": 861105, |
| "artist_spotify_id": "4YRxDV8wJFPHPTeXepOstw", |
| "gender": "Solo - Male", |
| "genre": "Indian Film Music", |
| "country": "India", |
| "language": "Hindi" |
| }, |
| { |
| "rank": 2, |
| "picture": "data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E", |
| "artist": "Taylor Swift", |
| "followers": 138481883, |
| "followersDaily": 46039, |
| "followersWeekly": 431025, |
| "artist_spotify_id": "06HL4z0CvFAxyc27GXpf02", |
| "gender": "Solo - Female", |
| "genre": "Pop", |
| "country": "United States of America", |
| "language": "English" |
| }, |
| { |
| "rank": 3, |
| "picture": "data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E", |
| "artist": "Ed Sheeran", |
| "followers": 120664399, |
| "followersDaily": 13319, |
| "followersWeekly": 107059, |
| "artist_spotify_id": "6eUKZXaKkcviH0Ku9w2n3V", |
| "gender": "Solo - Male", |
| "genre": "Pop", |
| "country": "United Kingdom", |
| "language": "English" |
| }, |
| { |
| "rank": 4, |
| "picture": "data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E", |
| "artist": "Billie Eilish", |
| "followers": 112770602, |
| "followersDaily": 46066, |
| "followersWeekly": 394378, |
| "artist_spotify_id": "6qqNVTkY8uBg9cP3Jd7DAH", |
| "gender": "Solo - Female", |
| "genre": "Alternative", |
| "country": "United States of America", |
| "language": "English" |
| }, |
| { |
| "rank": 5, |
| "picture": "data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E", |
| "artist": "The Weeknd", |
| "followers": 106079076, |
| "followersDaily": 51458, |
| "followersWeekly": 437161, |
| "artist_spotify_id": "1Xyo4u8uXC1ZmMpatF05PJ", |
| "gender": "Solo - Male", |
| "genre": "Pop", |
| "country": "Canada", |
| "language": "English" |
| }, |
| { |
| "rank": 6, |
| "picture": "data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E", |
| "artist": "Ariana Grande", |
| "followers": 105588293, |
| "followersDaily": 13352, |
| "followersWeekly": 122326, |
| "artist_spotify_id": "66CXWjxzNUsdJxJ2JdwvnR", |
| "gender": "Solo - Female", |
| "genre": "Pop", |
| "country": "United States of America", |
| "language": "English" |
| }, |
| { |
The first 80 of 327 lines. Press Run for the full body.
Response fields
Read off the recorded sample, not a schema: a JSON array of 25 objects.
[].ranknumber[].picturestring[].artiststring[].followersnumber[].followersDailynumber[].followersWeeklynumber[].artist_spotify_idstring[].genderstring[].genrestring[].countrystring[].languagestring
Errors
- 400
- This endpoint takes no parameters and no body, so a 400 means the request itself was malformed — a method other than GET, or a body sent with it.
- 401 / 403
- The key is missing, wrong, or on a plan that does not include this endpoint. On RapidAPI the header is X-RapidAPI-Key; on the Direct Portal it is an Authorization: Bearer token; on Apify the actor supplies it.
- 429
- Rate limited. The demo on this site allows 100 requests per 15 minutes and 500 per day per visitor, inside a budget shared by every visitor. With a key it is 5 requests per second on every RapidAPI plan and 10 per second on the Direct Portal.
- 5xx
- Spotify itself failed or timed out. These are transient; retry once with a short backoff rather than immediately.
Related endpoints
The other 5 operations in the Charts group.