Better Fetch
Music and audio6 runnable operations

Spotify reference

Artists, tracks, albums, search, podcasts, and podcast episodes from public Spotify pages.

Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.

Artist

Available

Artist from public Spotify surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/spotify_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"artist","url":"https://open.spotify.com/artist/4dpARuHxo51G3z768sgnrY"}}'

Tool: spotify_scraper

Track

Available

Track from public Spotify surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/spotify_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"track","url":"https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT"}}'

Tool: spotify_scraper

Album

Available

Album from public Spotify surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/spotify_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"album","url":"https://open.spotify.com/album/1azUkThwd2HfUDdeNeT147"}}'

Tool: spotify_scraper

Podcast

Available

Podcast from public Spotify surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/spotify_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"podcast","url":"https://open.spotify.com/show/2MAi0BvDc6GTFvKFPXnkCL"}}'

Tool: spotify_scraper

Podcast episodes

Available

Podcast episodes from public Spotify surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/spotify_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"podcast_episodes","url":"https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk"}}'

Tool: spotify_scraper