Platform · Music & audio
Spotify
Artists, tracks, albums, playlists, podcasts and search.
- Endpoints
- 9
- Base price
- 1 cr
- Source
- Provider (official API once approved)
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/spotify/profile | Profile | 1 |
| GET /v1/spotify/posts | Post[] | 1 |
| GET /v1/spotify/post | Post | 1 |
| GET /v1/spotify/search | SearchResult[] | 1 |
| GET /v1/spotify/collection | Collection | 1 |
| GET /v1/spotify/collection/posts | Post[] | 1 |
| GET /v1/spotify/collection/tracks | Track[] | 1 |
| GET /v1/spotify/track | Track | 1 |
| GET /v1/spotify/tracks | Track[] | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Spotify artist ID (22 characters). |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/spotify/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02"Posts
1 creditList a profile's recent posts.
| handle | required | Spotify artist ID (22 characters). |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/spotify/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02"Post
1 creditGet a single post by id.
| id | required | Spotify album ID (22 characters). |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/spotify/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Search
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/spotify/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=lofi"Transcripts and media
Collection
1 creditOne playlist, album or podcast.
| id | required | Playlist, album or podcast id, or its URL. |
curl -G https://api.crawlfeed.dev/v1/spotify/collection \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Collection posts
1 creditThe posts in a playlist, board, highlight or podcast.
| id | required | Playlist, board, highlight or podcast id, or its URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/spotify/collection/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Music and audio
Collection tracks
1 creditThe tracks in a playlist or album.
| id | required | Playlist or album id, or its URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/spotify/collection/tracks \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Track
1 creditOne track or sound.
| id | required | Track or sound id, or its URL. |
curl -G https://api.crawlfeed.dev/v1/spotify/track \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Tracks
1 creditAn artist's tracks.
| handle | required | Artist handle, id or URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/spotify/tracks \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02"Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.