Endpoint Playground
Test Crawlora's Spotify profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/spotify/profile?username=spotify&uri=spotify%3Auser%3Aspotify&url=https%3A%2F%2Fopen.spotify.com%2Fuser%2Fspotify&playlist_limit=10&artist_limit=10&episode_limit=0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username | string | No | spotify | Spotify username |
| uri | string | No | spotify:user:spotify | Spotify user URI |
| url | string | No | https://open.spotify.com/user/spotify | open.spotify.com user URL |
| playlist_limit | integer | No | 10 | Embedded public playlist limit, clamped to 0-50 |
| artist_limit | integer | No | 10 | Recently played artist limit, clamped to 0-50 |
| episode_limit | integer | No | 0 | Embedded episode limit, clamped to 0-50 |
{
"uri": "spotify:user:spotify",
"username": "spotify",
"name": "Spotify",
"followersCount": 12162371,
"followingCount": 327,
"totalPublicPlaylistsCount": 1519,
"publicPlaylists": [
{
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M",
"name": "Today’s Top Hits",
"ownerName": "Spotify"
}
]
}Public Playground
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.
Returns normalized public profile metadata and preview playlists from Spotify's Web Player user-profile service. Provide username, uri, or url; defaults to Spotify's official profile.
{
"uri": "spotify:user:spotify",
"username": "spotify",
"name": "Spotify",
"followersCount": 12162371,
"followingCount": 327,
"totalPublicPlaylistsCount": 1519,
"publicPlaylists": [
{
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M",
"name": "Today’s Top Hits",
"ownerName": "Spotify"
}
]
}curl "https://api.crawlora.net/api/v1/spotify/profile" \
-H "x-api-key: $CRAWLORA_API_KEY"