Platform · Music & audio

Spotify

Artists, tracks, albums, playlists, podcasts and search.

Endpoints
9
Base price
1 cr
Source
Provider (official API once approved)

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/spotify/profileProfile
handlerequiredSpotify artist ID (22 characters).
enrichoptionalarabic: 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 credit

List a profile's recent posts.

GET/v1/spotify/postsPost[]
handlerequiredSpotify artist ID (22 characters).
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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 credit

Get a single post by id.

GET/v1/spotify/postPost
idrequiredSpotify album ID (22 characters).
enrichoptionalarabic: 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>"

Transcripts and media

Collection

1 credit

One playlist, album or podcast.

GET/v1/spotify/collectionCollection
idrequiredPlaylist, 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 credit

The posts in a playlist, board, highlight or podcast.

GET/v1/spotify/collection/postsPost[]
idrequiredPlaylist, board, highlight or podcast id, or its URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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 credit

The tracks in a playlist or album.

GET/v1/spotify/collection/tracksTrack[]
idrequiredPlaylist or album id, or its URL.
cursoroptionalFrom 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 credit

One track or sound.

GET/v1/spotify/trackTrack
idrequiredTrack 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 credit

An artist's tracks.

GET/v1/spotify/tracksTrack[]
handlerequiredArtist handle, id or URL.
cursoroptionalFrom 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.