// wolfXspotify · WOLF TECH · v2.0

Spotify Data.
Zero Credentials.

Access the full Spotify catalogue — tracks, albums, artists and playlists — completely free. No developer account, no API keys, no sign-up. Built by WOLF TECH.

✓ No API Key ✓ No Sign Up ✓ CORS Enabled ✓ Real-time Token Node.js · Express Anonymous TOTP
8
ENDPOINTS
0
API KEYS
UPTIME

// WHY WOLF TECH?

🔑
Zero Auth
No Spotify account or developer credentials required. Ever.
Live Tokens
TOTP-generated anonymous access tokens, auto-refreshed every 30 min.
🌐
CORS Ready
Call directly from any browser or frontend app with zero config.
🎵
Full Catalogue
Tracks, albums, artists, playlists — search or fetch by ID.
🔍
Smart Search
Cached GraphQL queries with fast, paginated results.
🛡️
Open Source
Transparent, community-driven codebase. No hidden limits.

// LIVE ACCESS TOKEN

wolf::active_session
Fetching token...

Use: Authorization: Bearer {token}

// LIVE SEARCH PLAYGROUND


  

// AVAILABLE ENDPOINTS

Click any card to preview the response

GET
/api/token
Live Spotify access token
GET
/api/health
API health & uptime
GET
/api/search
Search tracks / albums / artists / playlists
GET
/api/track/:id
Track details by Spotify ID
GET
/api/album/:id
Album details + full tracklist
GET
/api/artist/:id
Artist profile & metadata
GET
/api/artist/:id/top-tracks
Artist top tracks
GET
/api/artist/:id/albums
Artist discography — albums, singles, compilations
GET
/api/playlist/:id
Playlist info + tracks

⚡ Response preview appears here


    

// API DOCUMENTATION

GET /api/token Returns a live Spotify access token

Returns an anonymous Spotify web-player token valid for ~1 hour. Use as a Bearer token for direct Spotify API calls.

GET /api/token
{"provider":"WOLF TECH","creator":"Silent Wolf","success":true,"access_token":"BQ...","token_type":"Bearer"}
GET /api/track/:id Track details by Spotify ID

Returns title, artist(s), album, thumbnail, duration, release date, explicit flag, and preview URL.

GET /api/track/4iV5W9uYEdYUVa79Axb7Rh
GET /api/album/:id Album details + full tracklist

Returns album metadata and every track with duration, explicit flag, and preview URLs.

GET /api/album/4aawyAB9vmqN3uQ7FjRGTy
GET /api/artist/:id Artist profile and metadata

Returns name, thumbnail, follower count, genres, and verified status.

GET /api/artist/1dfeR4HaWDbWqFHLkxsg1d
GET /api/artist/:id/top-tracks Top tracks for an artist
GET /api/artist/1dfeR4HaWDbWqFHLkxsg1d/top-tracks
GET /api/artist/:id/albums Full artist discography

Returns the artist's discography. Filter by release type and paginate with limit/offset.

ParamTypeDefaultNotes
typestringalbumoptional — album | single | compilation | all
limitnumber20optional — max 50
offsetnumber0optional — pagination
GET /api/artist/1dfeR4HaWDbWqFHLkxsg1d/albums?type=all&limit=10
GET /api/playlist/:id Playlist with full track listing

Returns playlist metadata, owner, follower count, and all tracks including duration and preview URLs.

GET /api/playlist/37i9dQZF1DXcBWIGoYBM5M