zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Music/JioSaavn
Logo JioSaavn

JioSaavn

Search and fetch songs, albums, and playlists from JioSaavn with full audio download URLs at multiple bitrates.

4 endpoints4 endpoints on this scraper35 calls35 calls so farupdated 4 months agoLast updated 5/27/2026, 1:27:15 PMBusy: 10+ calls so farllms.txt
Endpoints4

4/4 passing
checked 20 hours ago · daily 01:00 WIB

Search

Search the catalog by text query.

GET/v1/music:jiosaavn/search5m cache3 paramschecking key…
Parameters
qstringrequired

Search query (title, artist, etc)

limitnumber

Items per page (1-40). Default: 20

pagenumber

Page 1-based. Default: 1

·
Response
EXAMPLE
{
  "page": 1,
  "count": 85,
  "items": [
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights-techno/JQM9YzV6cnk",
      "type": "track",
      "album": "Blinding Lights",
      "image": "https://c.saavncdn.com/004/Blinding-Lights-Instrumental-2024-20250116131427-500x500.jpg",
      "label": "Glowave Town",
      "title": "Blinding Lights (Techno)",
      "artist": "Error404, Glowave Town",
      "albumId": "54994972",
      "artists": [
        {
          "id": "1029498",
          "url": "https://www.jiosaavn.com/artist/error404-songs/Qiv55cecT60_",
          "name": "Error404",
          "image": "https://c.saavncdn.com/707/Fuck-Me-I-m-Famous-English-2013-500x500.jpg"
        },
        {
          "id": "17043714",
          "url": "https://www.jiosaavn.com/artist/glowave-town-songs/OgI1-BeWNA0_",
          "name": "Glowave Town"
        }
      ],
      "trackId": "UkVRAJEJ",
      "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/pDR8bo-PMDA_",
      "language": "instrumental",
      "copyright": "© 2024 the Weeknd",
      "hasLyrics": false,
      "playCount": 45,
      "durationMs": 154000,
      "isExplicit": false,
      "releaseYear": "2024"
    },
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights/GRs0SAxYWWQ",
      "type": "track",
      "album": "Caletta Remixes",
      "image": "https://c.saavncdn.com/492/Caletta-Remixes-Instrumental-2025-20250605114214-500x500.jpg",
      "label": "The Vibes Network",
      "title": "Blinding Lights",
      "artist": "Nyae",
      "albumId": "65210356",
      "artists": [
        {
          "id": "10992508",
          "url": "https://www.jiosaavn.com/artist/nyae-songs/RKWQCMUVlf0_",
          "name": "Nyae"
        }
      ],
      "trackId": "is_yxhnW",
      "albumUrl": "https://www.jiosaavn.com/album/caletta-remixes/7rS2htRDXq8_",
      "language": "instrumental",
      "copyright": "© 2025 Outkast, R.E.M., Bruno Mars, Lady Gaga, Bob Marley, The Wailers, The Verve, The Weeknd, SNAP!, Snow Patrol",
      "hasLyrics": false,
      "playCount": 6,
      "durationMs": 174000,
      "isExplicit": false,
      "releaseYear": "2025"
    },
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights/RDgiSDgDB1o",
      "type": "track",
      "album": "Blinding Lights",
      "image": "https://c.saavncdn.com/137/Blinding-Lights-Instrumental-2024-20241007104639-500x500.jpg",
      "label": "7clouds",
      "title": "Blinding Lights",
      "artist": "Glazey",
      "albumId": "58670997",
      "artists": [
        {
          "id": "20047250",
          "url": "https://www.jiosaavn.com/artist/glazey-songs/XhstKOxjMMM_",
          "name": "Glazey"
        }
      ],
      "trackId": "4PIyL30i",
      "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/Y5rN2e4Vkw8_",
      "language": "instrumental",
      "copyright": "© 2024 the Weeknd",
      "hasLyrics": false,
      "playCount": 4,
      "durationMs": 141000,
      "isExplicit": false,
      "releaseYear": "2024"
    }
  ],
  "hasMore": true,
  "nextPage": 2
}

Code

Search
index.ts
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("music:jiosaavn", "search", {
  "q": "blinding lights",
  "limit": 20,
  "page": 1
});
console.log(data);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

4 endpoints · plain text
GET
Search/v1/music:jiosaavn/search
3 params

Search the catalog by text query.

Parameters

qstringrequired
Search query (title, artist, etc)
limitnumberoptional
Items per page (1-40). Default: 20
pagenumberoptional
Page 1-based. Default: 1

Request

curl -X GET "https://api.zapi.ink/v1/music:jiosaavn/search?q=blinding+lights&limit=20&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 85,
  "items": [
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights-techno/JQM9YzV6cnk",
      "type": "track",
      "album": "Blinding Lights",
      "image": "https://c.saavncdn.com/004/Blinding-Lights-Instrumental-2024-20250116131427-500x500.jpg",
      "label": "Glowave Town",
      "title": "Blinding Lights (Techno)",
      "artist": "Error404, Glowave Town",
      "albumId": "54994972",
      "artists": [
        {
          "id": "1029498",
          "url": "https://www.jiosaavn.com/artist/error404-songs/Qiv55cecT60_",
          "name": "Error404",
          "image": "https://c.saavncdn.com/707/Fuck-Me-I-m-Famous-English-2013-500x500.jpg"
        },
        {
          "id": "17043714",
          "url": "https://www.jiosaavn.com/artist/glowave-town-songs/OgI1-BeWNA0_",
          "name": "Glowave Town"
        }
      ],
      "trackId": "UkVRAJEJ",
      "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/pDR8bo-PMDA_",
      "language": "instrumental",
      "copyright": "© 2024 the Weeknd",
      "hasLyrics": false,
      "playCount": 45,
      "durationMs": 154000,
      "isExplicit": false,
      "releaseYear": "2024"
    },
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights/GRs0SAxYWWQ",
      "type": "track",
      "album": "Caletta Remixes",
      "image": "https://c.saavncdn.com/492/Caletta-Remixes-Instrumental-2025-20250605114214-500x500.jpg",
      "label": "The Vibes Network",
      "title": "Blinding Lights",
      "artist": "Nyae",
      "albumId": "65210356",
      "artists": [
        {
          "id": "10992508",
          "url": "https://www.jiosaavn.com/artist/nyae-songs/RKWQCMUVlf0_",
          "name": "Nyae"
        }
      ],
      "trackId": "is_yxhnW",
      "albumUrl": "https://www.jiosaavn.com/album/caletta-remixes/7rS2htRDXq8_",
      "language": "instrumental",
      "copyright": "© 2025 Outkast, R.E.M., Bruno Mars, Lady Gaga, Bob Marley, The Wailers, The Verve, The Weeknd, SNAP!, Snow Patrol",
      "hasLyrics": false,
      "playCount": 6,
      "durationMs": 174000,
      "isExplicit": false,
      "releaseYear": "2025"
    },
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights/RDgiSDgDB1o",
      "type": "track",
      "album": "Blinding Lights",
      "image": "https://c.saavncdn.com/137/Blinding-Lights-Instrumental-2024-20241007104639-500x500.jpg",
      "label": "7clouds",
      "title": "Blinding Lights",
      "artist": "Glazey",
      "albumId": "58670997",
      "artists": [
        {
          "id": "20047250",
          "url": "https://www.jiosaavn.com/artist/glazey-songs/XhstKOxjMMM_",
          "name": "Glazey"
        }
      ],
      "trackId": "4PIyL30i",
      "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/Y5rN2e4Vkw8_",
      "language": "instrumental",
      "copyright": "© 2024 the Weeknd",
      "hasLyrics": false,
      "playCount": 4,
      "durationMs": 141000,
      "isExplicit": false,
      "releaseYear": "2024"
    }
  ],
  "hasMore": true,
  "nextPage": 2
}
GET
Song Detail/v1/music:jiosaavn/song/:id
1 param

Fetch full metadata for a single song by ID or URL.

Parameters

idstringrequiredin path
Track ID (e.g. UkVRAJEJ) OR canonical web URL with /song/<slug>/<token> path

Request

curl -X GET "https://api.zapi.ink/v1/music:jiosaavn/song/UkVRAJEJ" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://www.jiosaavn.com/song/blinding-lights-techno/JQM9YzV6cnk",
  "album": "Blinding Lights",
  "image": "https://c.saavncdn.com/004/Blinding-Lights-Instrumental-2024-20250116131427-500x500.jpg",
  "label": "Glowave Town",
  "title": "Blinding Lights (Techno)",
  "artist": "Error404, Glowave Town",
  "albumId": "54994972",
  "preview": "https://preview.saavncdn.com/004/aSkZGNeYUxQYjx5ssXu8QYeyJWIP6nHJ5BvlovKqcHpfP_96_p.mp4",
  "trackId": "UkVRAJEJ",
  "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/pDR8bo-PMDA_",
  "language": "instrumental",
  "copyright": "© 2024 the Weeknd",
  "hasLyrics": false,
  "playCount": 45,
  "durationMs": 154000,
  "isExplicit": false,
  "releaseDate": "2024-06-14",
  "releaseYear": "2024"
}
GET
Playlist Detail/v1/music:jiosaavn/playlist/:id
3 params

Fetch playlist info with tracklist.

Parameters

idstringrequiredin path
Playlist token (URL last segment), numeric listid (e.g. 47599074), or full canonical playlist URL
limitnumberoptional
Tracks per page (1-50). Default: 30
pagenumberoptional
Page 1-based. Default: 1

Request

curl -X GET "https://api.zapi.ink/v1/music:jiosaavn/playlist/BECHl0fsh08_?limit=30&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://www.jiosaavn.com/featured/now-trending/BECHl0fsh08_",
  "page": 1,
  "image": "https://c.saavncdn.com/editorial/NowTrending_20260423085344.jpg?bch=1776936232",
  "owner": "JioSaavn",
  "title": "Now Trending",
  "tracks": [
    {
      "url": "https://www.jiosaavn.com/song/bairan/HRoqBycHAnU",
      "album": "Bairan",
      "image": "https://c.saavncdn.com/238/Bairan-Unknown-2026-20260223182954-500x500.jpg",
      "title": "Bairan",
      "artist": "Banjaare",
      "albumId": "72717346",
      "trackId": "mrA6S75F",
      "language": "haryanvi",
      "playCount": 12663931,
      "durationMs": 150000,
      "isExplicit": false
    },
    {
      "url": "https://www.jiosaavn.com/song/sheesha-aakhya-mai-aakh-ghali-jo-bairan/KCUfUgRmDwY",
      "album": "Sheesha (Aakhya Mai Aakh Ghali Jo Bairan)",
      "image": "https://c.saavncdn.com/034/Sheesha-Aakhya-Mai-Aakh-Ghali-Jo-Beran-Unknown-2026-20260123134431-500x500.jpg",
      "title": "Sheesha (Aakhya Mai Aakh Ghali Jo Bairan)",
      "artist": "Mitta Ror, Swara Verma",
      "albumId": "71448075",
      "trackId": "XMtcpV85",
      "language": "haryanvi",
      "playCount": 7837091,
      "durationMs": 196000,
      "isExplicit": false
    },
    {
      "url": "https://www.jiosaavn.com/song/chand-mera-dil-title-track/XQssWg4AeVY",
      "album": "Chand Mera Dil (Title Track)",
      "image": "https://c.saavncdn.com/299/Chand-Mera-Dil-Title-Track-Hindi-2026-20260411122555-500x500.jpg",
      "title": "Chand Mera Dil (Title Track)",
      "artist": "Amitabh Bhattacharya, Sachin-Jigar, Faheem Abdullah",
      "albumId": "74476597",
      "trackId": "-cGkz0Ne",
      "language": "hindi",
      "playCount": 1367950,
      "durationMs": 280000,
      "isExplicit": false
    }
  ],
  "hasMore": true,
  "fanCount": 0,
  "nextPage": 2,
  "playlistId": "47599074",
  "trackCount": 37,
  "description": "37 songs with music from artists like Banjaare, Mitta Ror, Swara Verma, and more.",
  "lastUpdated": "1776934432",
  "followerCount": 58405
}
GET
Album Detail/v1/music:jiosaavn/album/:id
1 param

Fetch album info with its tracklist.

Parameters

idstringrequiredin path
Album token (last URL segment) or full canonical album URL

Request

curl -X GET "https://api.zapi.ink/v1/music:jiosaavn/album/pDR8bo-PMDA_" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://www.jiosaavn.com/album/blinding-lights/pDR8bo-PMDA_",
  "image": "https://c.saavncdn.com/004/Blinding-Lights-Instrumental-2024-20250116131427-500x500.jpg",
  "title": "Blinding Lights",
  "artist": "Error404,  Glowave Town",
  "tracks": [
    {
      "url": "https://www.jiosaavn.com/song/blinding-lights-techno/JQM9YzV6cnk",
      "image": "https://c.saavncdn.com/004/Blinding-Lights-Instrumental-2024-20250116131427-500x500.jpg",
      "title": "Blinding Lights (Techno)",
      "artist": "Error404, Glowave Town",
      "trackId": "UkVRAJEJ",
      "language": "instrumental",
      "playCount": 45,
      "durationMs": 154000,
      "isExplicit": false
    }
  ],
  "albumId": "54994972",
  "language": "instrumental",
  "copyright": "© 2024 the Weeknd",
  "playCount": 0,
  "isExplicit": false,
  "trackCount": 1,
  "description": "2024 · Instrumental Album · Error404 and Glowave Town",
  "releaseYear": "2024"
}

Related APIs

More in music

SoundCloud

musicsoundcloud

Search tracks, fetch metadata, and extract full audio download URLs (progressive MP3 / HLS) for public SoundCloud tracks.

2626 calls so far5mResponses cached for 5m
Busy: 10+ calls so far

Spotify

musicspotify

Search tracks, albums, and artists on Spotify. Returns metadata + 30s preview URLs. Full audio is DRM-protected.

3333 calls so far5mResponses cached for 5m
Busy: 10+ calls so far

Apple Music

musicapple-music

Search tracks, albums, and artists via the iTunes catalog. Returns metadata + 30s preview URLs.

1010 calls so far5mResponses cached for 5m
Busy: 10+ calls so far

Deezer

musicdeezer

Search tracks, albums, artists, and playlists on Deezer. Returns metadata + 30s preview URLs.

1010 calls so far5mResponses cached for 5m
Busy: 10+ calls so far

Genius

musicgenius

Search songs and fetch full lyrics from Genius. Returns clean text with section markers preserved.

77 calls so far5mResponses cached for 5m

Shazam

musicshazam

Song search via the Shazam catalog, plus per-country chart top tracks. Note: audio-fingerprint recognition is not implemented.

88 calls so far5mResponses cached for 5m
zapi.

One key, one response shape. We keep the scrapers working.

Get an API key
ProductBrowse APIsPricingDocsMCP server
DevelopersSDK on npmGitHubOpenAPI specllms.txt
SupportReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.