Endpoint Playground
Test Crawlora's Spotify Track 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/track?uri=spotify%3Atrack%3A4vGg44GdCw3X8i8r01XJH0&id=4vGg44GdCw3X8i8r01XJH0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:track:4vGg44GdCw3X8i8r01XJH0 | Spotify track URI or open.spotify.com track URL |
| id | string | No | 4vGg44GdCw3X8i8r01XJH0 | Spotify track ID. Used when uri is omitted |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"id": "4vGg44GdCw3X8i8r01XJH0",
"type": "Track",
"name": "Example Track",
"artists": [
{
"uri": "spotify:artist:example",
"title": "Example Artist"
}
],
"externalUrl": "https://open.spotify.com/track/4vGg44GdCw3X8i8r01XJH0",
"meta": {
"operationName": "getTrack",
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}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 Spotify Web Player track metadata from Spotify's getTrack Pathfinder response. Provide either uri or id; defaults to a known public track when omitted.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:track:4vGg44GdCw3X8i8r01XJH0",
"id": "4vGg44GdCw3X8i8r01XJH0",
"type": "Track",
"name": "Example Track",
"artists": [
{
"uri": "spotify:artist:example",
"title": "Example Artist"
}
],
"externalUrl": "https://open.spotify.com/track/4vGg44GdCw3X8i8r01XJH0",
"meta": {
"operationName": "getTrack",
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/track" \
-H "x-api-key: $CRAWLORA_API_KEY"