Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Retrieve Spotify public profile followers API Playground

Returns normalized public follower profiles from Spotify's Web Player user-profile service.

GETapiKey3 credits/requestspotify.userProfileFollowersResponseDocSpotify

Endpoint

Choose one catalog endpoint for this request.

30 shown
GETapiKey3 credits/requestspotify.userProfileFollowersResponseDocSpotify
GET /spotify/profile/followers

Retrieve Spotify public profile followers

Returns normalized public follower profiles from Spotify's Web Player user-profile service. Spotify exposes this as a public anonymous response for some profiles; private or restricted profiles may return an upstream error.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

spotify.profile_followers

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "uri": "spotify:user:spotify",
  "username": "spotify",
  "offset": 0,
  "limit": 50,
  "total": 998,
  "profiles": [
    {
      "uri": "spotify:user:example",
      "username": "example",
      "name": "Example"
    }
  ]
}

Endpoint details

Returns normalized public follower profiles from Spotify's Web Player user-profile service. Spotify exposes this as a public anonymous response for some profiles; private or restricted profiles may return an upstream error.

Method
GET
Path
/spotify/profile/followers
Authentication
apiKey
Credit cost
3 credits/request
Platform
Spotify
Parameters
6 documented fields

Request parameters

username:queryuri:queryurl:queryoffset:querylimit:queryx-api-key:header

Response schema fields

codedatadata.limitdata.metadata.meta.appVersiondata.meta.artistCountdata.meta.fetchedAtdata.meta.operationNamedata.meta.playlistCountdata.meta.profileCountdata.offsetdata.profiles

Sample response summary

{
  "uri": "spotify:user:spotify",
  "username": "spotify",
  "offset": 0,
  "limit": 50,
  "total": 998,
  "profiles": [
    {
      "uri": "spotify:user:example",
      "username": "example",
      "name": "Example"
    }
  ]
}

cURL example

curl "https://api.crawlora.net/api/v1/spotify/profile/followers" \
  -H "x-api-key: <api-key>"