# Music — Zapi reference > Every Music endpoint on Zapi, with parameters, request shape and an example response. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a key at https://zpi.web.id/dashboard/keys (free tier — 2,000 req/mo, no credit card). **Response envelope:** `{ status: "success" | "error", message: string, content: }` **Rate limit:** 60 req/min (free tier). Per-endpoint cache TTL is documented below. **Errors:** standard HTTP codes (`401` invalid key, `429` rate limited, `5xx` upstream). Body always has `{ status: "error", message, errors? }`. ```bash curl "https://api.zpi.web.id/v1/CATEGORY:SCRAPER/ENDPOINT?param=value" \ -H "x-api-key: $ZAPI_KEY" ``` **Category page:** https://zpi.web.id/category/music **Full catalog:** https://zpi.web.id/apis · **Index:** https://zpi.web.id/llms-full.txt --- ## Apple Music **Category:** music · **Slug:** `apple-music` **Detail page:** https://zpi.web.id/api/music/apple-music Search tracks, albums, and artists via the iTunes catalog. Returns metadata + 30s preview URLs. **Tags:** music, metadata, search, preview ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:apple-music/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search query (track, album, or artist name) | | `type` | enum(track|album|artist) | query | no | Entity type to search. Default: track | | `limit` | number | query | no | Results per page (1-50). Default: 25 | | `page` | number | query | no | Page 1-based. Default: 1 | | `country` | string | query | no | 2-letter ISO country code. Default: US | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:apple-music/search?q=stereo%20love&type=track&limit=25&page=1&country=US" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:apple-music/search?q=stereo%20love&type=track&limit=25&page=1&country=US", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:apple-music/search?q=stereo%20love&type=track&limit=25&page=1&country=US", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 25, "items": [ { "url": "https://music.apple.com/us/album/stereo-love/351996342?i=351996354&uo=4", "type": "track", "album": "Stereo Love - EP", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music/4e/4b/01/mzi.npqfzwyn.jpg/1000x1000bb.jpg", "title": "Stereo Love", "artist": "Edward Maya & Vika Jigulina", "albumId": 351996342, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/b1/75/f2/b175f28c-19af-4461-b8c9-bf3df63ed690/mzaf_698653242872365367.plus.aac.p.m4a", "trackId": 351996354, "artistId": 318015722, "discNumber": 1, "durationMs": 247810, "isExplicit": false, "releaseDate": "2009-09-17T07:00:00Z", "trackNumber": 2, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-radio-edit/1712039608?i=1712039609&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Radio Edit)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview116/v4/10/09/c4/1009c40d-7727-5bb0-bb6c-357fe4e6faf6/mzaf_13826604688655549992.plus.aac.p.m4a", "trackId": 1712039609, "artistId": 318015722, "discNumber": 1, "durationMs": 185120, "isExplicit": false, "releaseDate": "2010-01-31T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-feat-vika-jigulina-tiktok/1746904739?i=1746905207&uo=4", "type": "track", "album": "Stereo Love Deluxe (feat. Vika Jigulina)", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/be/bb/19/bebb1911-10d6-1223-d32c-99f4ac63e822/6420565479716.jpg/1000x1000bb.jpg", "title": "Stereo Love (feat. Vika Jigulina) [TikTok]", "artist": "Edward Maya", "albumId": 1746904739, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/a7/82/7c/a7827cd1-e327-234f-15bb-c090d901c8e8/mzaf_3216352783463090977.plus.aac.p.m4a", "trackId": 1746905207, "artistId": 318015722, "discNumber": 1, "durationMs": 215500, "isExplicit": false, "releaseDate": "2024-06-05T12:00:00Z", "trackNumber": 5, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-original/1712047771?i=1712047772&uo=4", "type": "track", "album": "The Stereo Love Show", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/5c/62/fd/5c62fdea-a2c0-92c9-a453-1c80b83dc69e/0617465381652.jpg/1000x1000bb.jpg", "title": "Stereo Love (Original)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712047771, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview116/v4/38/2e/b4/382eb4da-b031-8195-fe44-c16e226ad0ea/mzaf_3676209656947739947.plus.aac.p.m4a", "trackId": 1712047772, "artistId": 318015722, "discNumber": 1, "durationMs": 320693, "isExplicit": false, "releaseDate": "2009-09-17T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-sp3ctrum-remix/1730705078?i=1730705279&uo=4", "type": "track", "album": "Stereo Love (SP3CTRUM Remix) - Single", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/e2/85/49/e28549ae-06e2-99f6-dfa6-fd0eff7764f1/6420565479068.jpg/1000x1000bb.jpg", "title": "Stereo Love (SP3CTRUM Remix)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1730705078, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/ca/1c/33/ca1c3340-2119-d8ad-81c5-14d5704625fa/mzaf_8494639950543486727.plus.aac.p.m4a", "trackId": 1730705279, "artistId": 318015722, "discNumber": 1, "durationMs": 173143, "isExplicit": false, "releaseDate": "2024-02-23T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-molella-rmx-radio-edit/1712039608?i=1712039612&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Molella RMX Radio Edit)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/c1/3a/3a/c13a3a41-c86e-d91b-6bba-4115aa6473fd/mzaf_12863334056338010448.plus.aac.p.m4a", "trackId": 1712039612, "artistId": 318015722, "discNumber": 1, "durationMs": 171267, "isExplicit": false, "releaseDate": "2009-10-19T12:00:00Z", "trackNumber": 4, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-sped-up-version/1655009772?i=1655009773&uo=4", "type": "track", "album": "Stereo Love (Sped up Version) - Single", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music122/v4/14/b9/28/14b9289a-86af-a47c-0ba6-e1d243c7d1a5/0196762002786.png/1000x1000bb.jpg", "title": "Stereo Love (Sped up Version)", "artist": "Stereo Love", "albumId": 1655009772, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview122/v4/77/0f/40/770f408a-ddeb-6171-f009-94a302fa9a7b/mzaf_9734428521436375383.plus.aac.p.m4a", "trackId": 1655009773, "artistId": 349973190, "discNumber": 1, "durationMs": 157356, "isExplicit": false, "releaseDate": "2022-12-02T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-radio-edit/351996342?i=351996346&uo=4", "type": "track", "album": "Stereo Love - EP", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music/4e/4b/01/mzi.npqfzwyn.jpg/1000x1000bb.jpg", "title": "Stereo Love (Radio Edit)", "artist": "Edward Maya & Vika Jigulina", "albumId": 351996342, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/21/5d/1f/215d1f5b-4486-12ea-f0e6-88914d35c129/mzaf_9418093229509445665.plus.aac.p.m4a", "trackId": 351996346, "artistId": 318015722, "discNumber": 1, "durationMs": 184502, "isExplicit": false, "releaseDate": "2009-09-17T07:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love/1800337187?i=1800337188&uo=4", "type": "track", "album": "STEREO LOVE - Single", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/71/4a/db/714adb68-e137-28d7-8717-6a420f076ce0/663918128121.jpg/1000x1000bb.jpg", "title": "STEREO LOVE", "artist": "Xxtristanxo", "albumId": 1800337187, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/9d/10/35/9d103554-4c58-3653-88e5-ca868df75b16/mzaf_10867395342296182556.plus.aac.p.m4a", "trackId": 1800337188, "artistId": 1579058020, "discNumber": 1, "durationMs": 127031, "isExplicit": false, "releaseDate": "2025-03-14T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-feat-vika-jigulina-deluxe-version/1742199227?i=1742200253&uo=4", "type": "track", "album": "Best Dance Hits (Deluxe Version)", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music211/v4/82/48/f9/8248f94a-2be3-38e1-6034-1efce8db11d5/6420565479501.jpg/1000x1000bb.jpg", "title": "Stereo Love (feat. Vika Jigulina) [Deluxe Version]", "artist": "Edward Maya", "albumId": 1742199227, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/bb/bb/0e/bbbb0ef4-4d66-77fb-4845-b8bf730485a8/mzaf_5132290812466950776.plus.aac.p.m4a", "trackId": 1742200253, "artistId": 318015722, "discNumber": 1, "durationMs": 153776, "isExplicit": false, "releaseDate": "2024-03-20T12:00:00Z", "trackNumber": 7, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-hypertechno/1749445707?i=1749445709&uo=4", "type": "track", "album": "Stereo Love (HYPERTECHNO) - Single", "genre": "Electronica", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/3c/bd/3c/3cbd3c3c-1544-3585-f79a-c6a33581a83e/198342958575_cover.jpg/1000x1000bb.jpg", "title": "Stereo Love (HYPERTECHNO)", "artist": "Yellow Pvnk, GopStop & TECHNO KING", "albumId": 1749445707, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/dc/a4/6a/dca46aec-b9f0-2c75-c635-67e2a0d49001/mzaf_1381912217489947858.plus.aac.p.m4a", "trackId": 1749445709, "artistId": 1606481222, "discNumber": 1, "durationMs": 123016, "isExplicit": false, "releaseDate": "2024-07-05T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-main-mix/1715063223?i=1715063226&uo=4", "type": "track", "album": "Ultra Top 10 September", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/03/07/c7/0307c7e2-4444-1ce6-8ff2-e1a7f25cffa4/0617465270055.jpg/1000x1000bb.jpg", "title": "Stereo Love (Main Mix)", "artist": "Edward Maya & Mia Martina", "albumId": 1715063223, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/e1/da/4d/e1da4d72-7eb1-e390-a992-14d82160c335/mzaf_15302919057400772374.plus.aac.p.m4a", "trackId": 1715063226, "artistId": 318015722, "discNumber": 1, "durationMs": 248845, "isExplicit": false, "releaseDate": "2009-10-19T12:00:00Z", "trackNumber": 3, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-original/1712039608?i=1712039610&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Original)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/3c/68/2b/3c682b79-4ecd-06ec-8249-d53b82de6dba/mzaf_14662103411953965393.plus.aac.p.m4a", "trackId": 1712039610, "artistId": 318015722, "discNumber": 1, "durationMs": 248667, "isExplicit": false, "releaseDate": "2009-09-17T12:00:00Z", "trackNumber": 2, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-scotty-remix/1712039608?i=1712039618&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Scotty Remix)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview116/v4/af/e8/e4/afe8e4c3-b155-10f3-1173-b7d8ddde2593/mzaf_965733624276086995.plus.aac.p.m4a", "trackId": 1712039618, "artistId": 318015722, "discNumber": 1, "durationMs": 322053, "isExplicit": false, "releaseDate": "2009-10-19T12:00:00Z", "trackNumber": 10, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love/1524787893?i=1524787894&uo=4", "type": "track", "album": "Stereo Love - Single", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/8d/2e/63/8d2e63c7-e470-2285-b648-7f1655bb2192/cover.jpg/1000x1000bb.jpg", "title": "Stereo Love", "artist": "HUTS & Brenton Mattheus", "albumId": 1524787893, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/84/be/56/84be565f-235d-d4f8-62f6-d2009c4e6896/mzaf_8827025450324493413.plus.aac.p.m4a", "trackId": 1524787894, "artistId": 275704526, "discNumber": 1, "durationMs": 146190, "isExplicit": false, "releaseDate": "2020-07-31T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love/460035717?i=460035772&uo=4", "type": "track", "album": "Karaoke Summer Hits", "genre": "Karaoke", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music/v4/64/74/58/64745823-556d-9649-b74a-1ec9c750226f/886788061583.jpg/1000x1000bb.jpg", "title": "Stereo Love", "artist": "Instrumental", "albumId": 460035717, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/99/bd/f4/99bdf4b0-4196-1302-95b4-e2010f192d25/mzaf_17008511170060108209.plus.aac.p.m4a", "trackId": 460035772, "artistId": 5091276, "discNumber": 1, "durationMs": 206427, "isExplicit": false, "releaseDate": "2011-09-18T12:00:00Z", "trackNumber": 9, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love/1530851441?i=1530851452&uo=4", "type": "track", "album": "Live for Now", "genre": "Rock", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/ad/91/56/ad9156b4-37ab-f533-54bf-9f53ef77ff5a/5054526178847_1.jpg/1000x1000bb.jpg", "title": "Stereo Love", "artist": "Jeremy Renner", "albumId": 1530851441, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/92/30/89/92308924-f3ea-60c8-3596-402d943d125f/mzaf_14183362205392144505.plus.aac.p.m4a", "trackId": 1530851452, "artistId": 270393522, "discNumber": 1, "durationMs": 177547, "isExplicit": false, "releaseDate": "2020-09-25T12:00:00Z", "trackNumber": 7, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-molella-remix/1712039608?i=1712039613&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Molella remix)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview116/v4/5c/e7/47/5ce7473d-65b0-a2b0-aec9-30987b069dbe/mzaf_6911561877184595279.plus.aac.p.m4a", "trackId": 1712039613, "artistId": 318015722, "discNumber": 1, "durationMs": 303267, "isExplicit": false, "releaseDate": "2009-10-19T12:00:00Z", "trackNumber": 5, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-spanish-version/1711630505?i=1711630506&uo=4", "type": "track", "album": "Stereo Love (Spanish Version) - Single", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/d9/3a/64/d93a643e-cb7e-f803-7e93-95fd52681ed4/617465253157.jpg/1000x1000bb.jpg", "title": "Stereo Love (Spanish Version)", "artist": "Edward Maya", "albumId": 1711630505, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview116/v4/bf/da/33/bfda3318-9d4c-9703-c6a0-d25255493798/mzaf_1175928412828922236.plus.aac.p.m4a", "trackId": 1711630506, "artistId": 318015722, "discNumber": 1, "durationMs": 185493, "isExplicit": false, "releaseDate": "2009-01-01T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-hardstyle/1663314739?i=1663314740&uo=4", "type": "track", "album": "Stereo Love - Single", "genre": "Electronica", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music211/v4/fc/02/ed/fc02ed05-d54e-bd20-0fdd-1364e2cf785e/197368088082_cover.jpg/1000x1000bb.jpg", "title": "Stereo Love (Hardstyle)", "artist": "HARDSTYLE MAGE, Zyzz Music & WE GO JIM", "albumId": 1663314739, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/a8/d0/32/a8d032b4-a919-cbf1-9f08-7f04a6bd5cd8/mzaf_1285358548357476681.plus.aac.p.m4a", "trackId": 1663314740, "artistId": 1663304679, "discNumber": 1, "durationMs": 144014, "isExplicit": false, "releaseDate": "2023-01-13T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-molella-remix/1714540504?i=1714540513&uo=4", "type": "track", "album": "The Jersey Shore", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/1b/ec/09/1bec09c7-86fd-df77-b8df-69dacf6b4118/617465245459.jpg/1000x1000bb.jpg", "title": "Stereo Love (Molella Remix)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1714540504, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/d2/98/d5/d298d50a-39a0-6528-fd4e-e621245d592e/mzaf_7409681257805998897.plus.aac.p.m4a", "trackId": 1714540513, "artistId": 318015722, "discNumber": 1, "durationMs": 225000, "isExplicit": false, "releaseDate": "2010-01-01T12:00:00Z", "trackNumber": 9, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love/1647294483?i=1647294484&uo=4", "type": "track", "album": "Stereo Love - Single", "genre": "Fitness & Workout", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music112/v4/d1/6a/1c/d16a1ccc-1ade-9822-18d1-a43dc05062c4/artwork.jpg/1000x1000bb.jpg", "title": "Stereo Love", "artist": "Always Mirin", "albumId": 1647294483, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview112/v4/53/9d/65/539d6587-f9cf-fa4e-0cee-c80c7da768cd/mzaf_14737396265617596459.plus.aac.p.m4a", "trackId": 1647294484, "artistId": 1616731098, "discNumber": 1, "durationMs": 145500, "isExplicit": false, "releaseDate": "2022-09-14T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love/1694966599?i=1694966609&uo=4", "type": "track", "album": "Timeless Driving Mix", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/ee/7a/df/ee7adff4-02b3-6218-65f5-8bfaa5d4e384/197189063787.jpg/1000x1000bb.jpg", "title": "Stereo Love", "artist": "Edward Maya & Vika Jigulina", "albumId": 1694966599, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/eb/7e/6a/eb7e6a50-78e5-a0ea-e683-039b1ef37657/mzaf_18228412612057238233.plus.aac.p.m4a", "trackId": 1694966609, "artistId": 318015722, "discNumber": 1, "durationMs": 247615, "isExplicit": false, "releaseDate": "2009-09-17T12:00:00Z", "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-extended-version/1712039608?i=1712039611&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Extended Version)", "artist": "Edward Maya & Vika Jigulina", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/9d/97/85/9d978552-ae22-3bb9-158a-a0c729ab7cc0/mzaf_17059299310116292454.plus.aac.p.m4a", "trackId": 1712039611, "artistId": 318015722, "discNumber": 1, "durationMs": 322293, "isExplicit": false, "releaseDate": "2009-09-17T12:00:00Z", "trackNumber": 3, "isStreamable": true }, { "url": "https://music.apple.com/us/album/stereo-love-scotty-edit-mix/1712039608?i=1712039617&uo=4", "type": "track", "album": "Stereo Love", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/45/33/38/4533387a-c8b5-ac5d-fef7-318af8ac9dee/617465238451.jpg/1000x1000bb.jpg", "title": "Stereo Love (Scotty Edit Mix)", "artist": "Edward Maya", "albumId": 1712039608, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/f0/69/22/f06922f0-8b58-d618-d293-9d4bcbdf637e/mzaf_9497095733888580494.plus.aac.p.m4a", "trackId": 1712039617, "artistId": 318015722, "discNumber": 1, "durationMs": 226320, "isExplicit": false, "releaseDate": "2009-10-19T12:00:00Z", "trackNumber": 9, "isStreamable": true } ], "query": "stereo love", "hasMore": false } ``` --- ### Track Detail Fetch full metadata for a single track by ID or URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:apple-music/track/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Track ID (numeric) | | `country` | string | query | no | 2-letter ISO country code. Default: US | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:apple-music/track/:id?country=US" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:apple-music/track/:id?country=US", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:apple-music/track/:id?country=US", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://music.apple.com/us/album/stereo-love/351996342?i=351996354&uo=4", "album": "Stereo Love - EP", "genre": "Dance", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music/4e/4b/01/mzi.npqfzwyn.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Stereo Love", "artist": "Edward Maya & Vika Jigulina", "albumId": 351996342, "country": "USA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/b1/75/f2/b175f28c-19af-4461-b8c9-bf3df63ed690/mzaf_698653242872365367.plus.aac.p.m4a", "trackId": 351996354, "albumUrl": "https://music.apple.com/us/album/stereo-love/351996342?i=351996354&uo=4", "artistId": 318015722, "currency": "USD", "artistUrl": "https://music.apple.com/us/artist/edward-maya/318015722?uo=4", "discCount": 1, "discNumber": 1, "durationMs": 247810, "isExplicit": false, "trackCount": 6, "releaseDate": "2009-09-17T07:00:00Z", "trackNumber": 2, "isStreamable": true } ``` --- ### Album Detail Fetch album info with its tracklist. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:apple-music/album/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Album ID (numeric collectionId) | | `country` | string | query | no | 2-letter ISO country code. Default: US | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:apple-music/album/:id?country=US" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:apple-music/album/:id?country=US", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:apple-music/album/:id?country=US", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://music.apple.com/us/album/after-hours/1499378108?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/6f/bc/e6/6fbce6c4-c38c-72d8-4fd0-66cfff32f679/20UMGIM12176.rgb.jpg/1000x1000bb.jpg", "price": 11.99, "title": "After Hours", "artist": "The Weeknd", "tracks": [ { "url": "https://music.apple.com/us/album/alone-again/1499378108?i=1499378115&uo=4", "title": "Alone Again", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/82/52/4d/82524d29-5e72-7988-3157-35cfa1fdf8a3/mzaf_9428890031202476397.plus.aac.p.m4a", "trackId": 1499378115, "artistId": 479756766, "discNumber": 1, "durationMs": 250057, "isExplicit": true, "trackNumber": 1, "isStreamable": true }, { "url": "https://music.apple.com/us/album/too-late/1499378108?i=1499378125&uo=4", "title": "Too Late", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/ff/73/cc/ff73cc6f-ef5c-b3bb-c5ef-93802f3f95b0/mzaf_14572003710782904344.plus.aac.p.m4a", "trackId": 1499378125, "artistId": 479756766, "discNumber": 1, "durationMs": 239980, "isExplicit": true, "trackNumber": 2, "isStreamable": true }, { "url": "https://music.apple.com/us/album/hardest-to-love/1499378108?i=1499378134&uo=4", "title": "Hardest To Love", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/c3/d4/3c/c3d43c94-ed8b-f8ce-bdd1-c2039a7f7dcf/mzaf_15057603390522654879.plus.aac.p.m4a", "trackId": 1499378134, "artistId": 479756766, "discNumber": 1, "durationMs": 211402, "isExplicit": true, "trackNumber": 3, "isStreamable": true }, { "url": "https://music.apple.com/us/album/scared-to-live/1499378108?i=1499378135&uo=4", "title": "Scared To Live", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/b7/d3/c8/b7d3c863-1aea-7500-eff3-b02442ac9cfb/mzaf_7312285710708647985.plus.aac.p.m4a", "trackId": 1499378135, "artistId": 479756766, "discNumber": 1, "durationMs": 191299, "isExplicit": true, "trackNumber": 4, "isStreamable": true }, { "url": "https://music.apple.com/us/album/snowchild/1499378108?i=1499378588&uo=4", "title": "Snowchild", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/09/d3/cf/09d3cf14-ee50-5897-4cf2-37f3c636a7a7/mzaf_15491189254646483000.plus.aac.p.m4a", "trackId": 1499378588, "artistId": 479756766, "discNumber": 1, "durationMs": 247192, "isExplicit": true, "trackNumber": 5, "isStreamable": true }, { "url": "https://music.apple.com/us/album/escape-from-la/1499378108?i=1499378596&uo=4", "title": "Escape From LA", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/31/a7/6d/31a76d87-8832-ea1f-9159-4cbc1a86640b/mzaf_17376158779514882680.plus.aac.p.m4a", "trackId": 1499378596, "artistId": 479756766, "discNumber": 1, "durationMs": 355960, "isExplicit": true, "trackNumber": 6, "isStreamable": true }, { "url": "https://music.apple.com/us/album/heartless/1499378108?i=1499378597&uo=4", "title": "Heartless", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/71/61/f8/7161f81f-f3b5-1a5a-1de3-186d7c84347b/mzaf_7357412783772919585.plus.aac.p.m4a", "trackId": 1499378597, "artistId": 479756766, "discNumber": 1, "durationMs": 198267, "isExplicit": true, "trackNumber": 7, "isStreamable": true }, { "url": "https://music.apple.com/us/album/faith/1499378108?i=1499378601&uo=4", "title": "Faith", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/01/e2/e2/01e2e2bf-1d47-8dcc-89ce-e7364f5d20a9/mzaf_3080633805298845967.plus.aac.p.m4a", "trackId": 1499378601, "artistId": 479756766, "discNumber": 1, "durationMs": 283217, "isExplicit": true, "trackNumber": 8, "isStreamable": true }, { "url": "https://music.apple.com/us/album/blinding-lights/1499378108?i=1499378607&uo=4", "title": "Blinding Lights", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/19/d6/60/19d660ff-e3a9-8377-15a3-ce4b28e89cac/mzaf_18422426156481158187.plus.aac.p.m4a", "trackId": 1499378607, "artistId": 479756766, "discNumber": 1, "durationMs": 200046, "isExplicit": false, "trackNumber": 9, "isStreamable": true }, { "url": "https://music.apple.com/us/album/in-your-eyes/1499378108?i=1499378612&uo=4", "title": "In Your Eyes", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/18/82/11/1882111a-79d3-5f79-593e-6511ad4788cd/mzaf_8486135305449676903.plus.aac.p.m4a", "trackId": 1499378612, "artistId": 479756766, "discNumber": 1, "durationMs": 237522, "isExplicit": true, "trackNumber": 10, "isStreamable": true }, { "url": "https://music.apple.com/us/album/save-your-tears/1499378108?i=1499378613&uo=4", "title": "Save Your Tears", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/14/4c/93/144c934b-0cf0-6862-7209-a881b7224294/mzaf_11580342643921855366.plus.aac.p.m4a", "trackId": 1499378613, "artistId": 479756766, "discNumber": 1, "durationMs": 215627, "isExplicit": true, "trackNumber": 11, "isStreamable": true }, { "url": "https://music.apple.com/us/album/repeat-after-me-interlude/1499378108?i=1499378614&uo=4", "title": "Repeat After Me (Interlude)", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/46/40/a9/4640a996-24c0-0065-0560-85d139124148/mzaf_15065003890468897926.plus.aac.p.m4a", "trackId": 1499378614, "artistId": 479756766, "discNumber": 1, "durationMs": 195815, "isExplicit": true, "trackNumber": 12, "isStreamable": true }, { "url": "https://music.apple.com/us/album/after-hours/1499378108?i=1499378615&uo=4", "title": "After Hours", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/54/2b/61/542b6133-80f7-f30f-4dcf-059490db9d84/mzaf_1539067797902127760.plus.aac.p.m4a", "trackId": 1499378615, "artistId": 479756766, "discNumber": 1, "durationMs": 361025, "isExplicit": false, "trackNumber": 13, "isStreamable": true }, { "url": "https://music.apple.com/us/album/until-i-bleed-out/1499378108?i=1499378860&uo=4", "title": "Until I Bleed Out", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/bd/46/fa/bd46fa43-ba67-c898-a00d-c0d4ad1b2905/mzaf_634581172611651183.plus.aac.p.m4a", "trackId": 1499378860, "artistId": 479756766, "discNumber": 1, "durationMs": 190151, "isExplicit": true, "trackNumber": 14, "isStreamable": true } ], "albumId": 1499378108, "country": "USA", "artistId": 479756766, "currency": "USD", "artistUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "copyright": "℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 14, "releaseDate": "2020-03-20T07:00:00Z", "totalDurationMs": 3377560, "contentAdvisoryRating": "Explicit" } ``` --- ### Artist Detail Fetch artist profile with top tracks and discography. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:apple-music/artist/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Artist ID (numeric artistId) | | `limit` | number | query | no | Max albums to return (1-200). Default: 25 | | `country` | string | query | no | 2-letter ISO country code. Default: US | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:apple-music/artist/:id?limit=25&country=US" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:apple-music/artist/:id?limit=25&country=US", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:apple-music/artist/:id?limit=25&country=US", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "name": "The Weeknd", "type": "Artist", "genre": "R&B/Soul", "albums": [ { "url": "https://music.apple.com/us/album/hurry-up-tomorrow/1793654348?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music211/v4/49/9b/6e/499b6e2d-648f-1a4e-31b8-fb7f06a8123c/25UMGIM09490.rgb.jpg/1000x1000bb.jpg", "price": 9.99, "title": "Hurry Up Tomorrow", "albumId": 1793654348, "country": "USA", "currency": "USD", "copyright": "℗ 2025 The Weeknd XO Music ULC, marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 22, "releaseDate": "2025-01-31T08:00:00Z" }, { "url": "https://music.apple.com/us/album/timeless-single/1770380869?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/40/77/cb/4077cbd1-b6a0-d8df-b9d3-e9a339dbc0ea/24UM1IM04061.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Timeless - Single", "albumId": 1770380869, "country": "USA", "currency": "USD", "copyright": "℗ 2024 The Weeknd XO Music ULC, marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 1, "releaseDate": "2024-09-27T07:00:00Z" }, { "url": "https://music.apple.com/us/album/the-idol-episode-5-part-1-music-from-the-hbo/1694779180?uo=4", "type": "Album", "genre": "Soundtrack", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/92/91/eb/9291eb77-060f-125f-ee0d-bdc720fa6971/23UMGIM74968.rgb.jpg/1000x1000bb.jpg", "price": 1.99, "title": "The Idol Episode 5 Part 1 (Music from the HBO Original Series) - Single", "albumId": 1694779180, "country": "USA", "currency": "USD", "copyright": "℗ 2023 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 2, "releaseDate": "2023-06-30T07:00:00Z" }, { "url": "https://music.apple.com/us/album/the-idol-episode-4-music-from-the-hbo-original-series-single/1693891133?uo=4", "type": "Album", "genre": "Soundtrack", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/db/28/e7/db28e7c3-f53a-76c8-eaa4-d92a22e4f160/23UMGIM72115.rgb.jpg/1000x1000bb.jpg", "price": 2.99, "title": "The Idol Episode 4 (Music from the HBO Original Series) - Single", "albumId": 1693891133, "country": "USA", "currency": "USD", "copyright": "℗ 2023 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 3, "releaseDate": "2023-06-23T07:00:00Z" }, { "url": "https://music.apple.com/us/album/popular-feat-playboi-carti-music-from-the-hbo/1691920669?uo=4", "type": "Album", "genre": "Soundtrack", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/f9/40/ce/f940ce64-ef5e-9ed0-5171-45d790b8b999/23UMGIM66787.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Popular (feat. Playboi Carti) [Music from the HBO Original Series The Idol] - Single", "albumId": 1691920669, "country": "USA", "currency": "USD", "copyright": "℗ 2023 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 1, "releaseDate": "2023-06-02T07:00:00Z" }, { "url": "https://music.apple.com/us/album/die-for-you-remix-single/1673432330?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/a7/bd/11/a7bd119c-5f0b-e357-8c44-2d133c854ed1/23UMGIM17426.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Die For You (Remix) - Single", "albumId": 1673432330, "country": "USA", "currency": "USD", "copyright": "℗ 2023 The Weeknd XO, Inc., Marketed by Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 1, "releaseDate": "2023-02-24T08:00:00Z" }, { "url": "https://music.apple.com/us/album/dawn-fm/1603171516?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/2f/22/a9/2f22a9a6-5af1-5846-a44e-ba016724ed69/21UM1IM58860.rgb.jpg/1000x1000bb.jpg", "price": 7.99, "title": "Dawn FM", "albumId": 1603171516, "country": "USA", "currency": "USD", "copyright": "℗ 2022 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 16, "releaseDate": "2022-01-07T08:00:00Z" }, { "url": "https://music.apple.com/us/album/take-my-breath-single/1579408007?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/b1/1b/10/b11b1074-5109-7bfc-32f0-8b49eaaeb9ac/21UMGIM75290.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Take My Breath - Single", "albumId": 1579408007, "country": "USA", "currency": "USD", "copyright": "℗ 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 1, "releaseDate": "2021-08-06T07:00:00Z" }, { "url": "https://music.apple.com/us/album/save-your-tears-remix-single/1563812774?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/bb/35/39/bb353980-b0c7-eac5-9509-267feb48d1b3/21UMGIM33221.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Save Your Tears (Remix) - Single", "albumId": 1563812774, "country": "USA", "currency": "USD", "copyright": "℗ 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 1, "releaseDate": "2021-04-23T07:00:00Z" }, { "url": "https://music.apple.com/us/album/the-highlights/1550877895?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/4b/ab/3c/4bab3c0d-ea9a-ad8e-4229-b1e73cad0283/21UMGIM06668.rgb.jpg/1000x1000bb.jpg", "price": 10.99, "title": "The Highlights", "albumId": 1550877895, "country": "USA", "currency": "USD", "copyright": "This Compilation ℗ 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 18, "releaseDate": "2021-02-05T08:00:00Z" }, { "url": "https://music.apple.com/us/album/the-highlights/1550875218?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/dc/e9/95/dce995ab-5287-cba4-4966-46d16bf1c072/21UMGIM06667.rgb.jpg/1000x1000bb.jpg", "price": 10.99, "title": "The Highlights", "albumId": 1550875218, "country": "USA", "currency": "USD", "copyright": "This Compilation ℗ 2021 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 18, "releaseDate": "2021-02-05T08:00:00Z" }, { "url": "https://music.apple.com/us/album/blinding-lights-remix-single/1542842760?uo=4", "type": "Album", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/61/e7/3f/61e73f94-018d-5f50-50ec-8521952bc72e/20UM1IM11629.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "Blinding Lights (Remix) - Single", "albumId": 1542842760, "country": "USA", "currency": "USD", "copyright": "℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 1, "releaseDate": "2020-12-04T08:00:00Z" }, { "url": "https://music.apple.com/us/album/in-your-eyes-remix-feat-doja-cat-single/1514288273?uo=4", "type": "Album", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/26/29/7e/26297e27-73d6-a22a-4f7f-41b67a829d57/20UMGIM41901.rgb.jpg/1000x1000bb.jpg", "price": 1.29, "title": "In Your Eyes (Remix) [feat. Doja Cat] - Single", "albumId": 1514288273, "country": "USA", "currency": "USD", "copyright": "℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 1, "releaseDate": "2020-05-21T07:00:00Z" }, { "url": "https://music.apple.com/us/album/after-hours/1499378108?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/6f/bc/e6/6fbce6c4-c38c-72d8-4fd0-66cfff32f679/20UMGIM12176.rgb.jpg/1000x1000bb.jpg", "price": 11.99, "title": "After Hours", "albumId": 1499378108, "country": "USA", "currency": "USD", "copyright": "℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 14, "releaseDate": "2020-03-20T07:00:00Z" }, { "url": "https://music.apple.com/us/album/after-hours-deluxe/1505683705?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/03/e1/67/03e167d6-ee05-eb32-55e9-c5040f55a8bf/20UMGIM21166.rgb.jpg/1000x1000bb.jpg", "price": 13.99, "title": "After Hours (Deluxe)", "albumId": 1505683705, "country": "USA", "currency": "USD", "copyright": "℗ 2020 The Weeknd XO, Inc., marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 17, "releaseDate": "2020-03-20T07:00:00Z" }, { "url": "https://music.apple.com/us/album/my-dear-melancholy/1363309866?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/2a/aa/b4/2aaab42a-a4cb-a600-4a25-d78961495960/18UMGIM17204.rgb.jpg/1000x1000bb.jpg", "price": 5.99, "title": "My Dear Melancholy,", "albumId": 1363309866, "country": "USA", "currency": "USD", "copyright": "℗ 2018 The Weeknd XO, Inc., manufactured and marketed by Republic Records, a division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 6, "releaseDate": "2018-03-30T07:00:00Z" }, { "url": "https://music.apple.com/us/album/starboy/1440871397?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/e2/61/f8/e261f8c1-73db-9a7a-c89e-1068f19970e0/16UMGIM67863.rgb.jpg/1000x1000bb.jpg", "price": 9.99, "title": "Starboy", "albumId": 1440871397, "country": "USA", "currency": "USD", "copyright": "℗ 2016 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 18, "releaseDate": "2016-11-25T08:00:00Z" }, { "url": "https://music.apple.com/us/album/starboy-deluxe/1676999839?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/0e/d4/bd/0ed4bd74-cff6-4aab-dd94-947256c613fb/23UMGIM22526.rgb.jpg/1000x1000bb.jpg", "price": 13.99, "title": "Starboy (Deluxe)", "albumId": 1676999839, "country": "USA", "currency": "USD", "copyright": "℗ 2023 The Weeknd XO, Inc., Marketed by Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 21, "releaseDate": "2016-11-25T08:00:00Z" }, { "url": "https://music.apple.com/us/album/the-hills-remixes-single/1440849138?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music123/v4/93/4e/0a/934e0a15-e6f3-5e26-6593-93ecf65a82cf/15UMGIM58633.rgb.jpg/1000x1000bb.jpg", "price": 1.99, "title": "The Hills Remixes - Single", "albumId": 1440849138, "country": "USA", "currency": "USD", "copyright": "℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 2, "releaseDate": "2015-10-11T07:00:00Z" }, { "url": "https://music.apple.com/us/album/beauty-behind-the-madness/1440826239?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/40/cd/1a/40cd1a65-7948-eb96-74c6-1c4b3497456c/15UMGIM36513.rgb.jpg/1000x1000bb.jpg", "price": 9.99, "title": "Beauty Behind the Madness", "albumId": 1440826239, "country": "USA", "currency": "USD", "copyright": "℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 14, "releaseDate": "2015-08-28T07:00:00Z" }, { "url": "https://music.apple.com/us/album/beauty-behind-the-madness/1440858094?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/30/05/1e/30051e57-a63a-3acc-4b30-42568293f5f7/15UMGIM36514.rgb.jpg/1000x1000bb.jpg", "price": 9.99, "title": "Beauty Behind the Madness", "albumId": 1440858094, "country": "USA", "currency": "USD", "copyright": "℗ 2015 The Weeknd XO, Inc., Manufactured and Marketed by Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": false, "trackCount": 14, "releaseDate": "2015-08-28T07:00:00Z" }, { "url": "https://music.apple.com/us/album/kiss-land/1422667786?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/f1/7f/7a/f17f7a98-1e96-b29d-2916-df7fcf63f34e/13UAAIM69533.rgb.jpg/1000x1000bb.jpg", "price": 9.99, "title": "Kiss Land", "albumId": 1422667786, "country": "USA", "currency": "USD", "copyright": "℗ 2013 The Weeknd XO, Inc., Marketed by Universal Republic Records, a Division of UMG Recordings, Inc.", "isExplicit": true, "trackCount": 13, "releaseDate": "2013-01-01T08:00:00Z" }, { "url": "https://music.apple.com/us/album/house-of-balloons-original/1558941834?uo=4", "type": "Album", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/31/18/fa/3118fab0-90ea-2ae5-cf6c-bc64054ab9e3/21UMGIM21449.rgb.jpg/1000x1000bb.jpg", "price": 9.99, "title": "House of Balloons (Original)", "albumId": 1558941834, "country": "USA", "currency": "USD", "copyright": "A Republic Records release.; ℗ 2011 The Weeknd XO, Inc.", "isExplicit": true, "trackCount": 9, "releaseDate": "2011-03-21T07:00:00Z" } ], "genreId": 15, "artistId": 479756766, "albumCount": 23 } ``` --- ## Bandcamp **Category:** music · **Slug:** `bandcamp` **Detail page:** https://zpi.web.id/api/music/bandcamp Search music tracks, albums, and artists. **Tags:** music ### Search Search music tracks, albums, and artists. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:bandcamp/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search text | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:bandcamp/search?query=lofi%20beats" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:bandcamp/search?query=lofi%20beats", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:bandcamp/search?query=lofi%20beats", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 50, "results": [ { "id": 2366858632, "url": "https://akirathedon.bandcamp.com", "name": "LOFI BEATS", "type": "a", "image": "https://f4.bcbits.com/img/4026553902_3.jpg", "bandId": 2929173621, "bandName": "Akira The Don" }, { "id": 4094592826, "url": "https://akirathedon.bandcamp.com", "name": "LOFI BEATS IMMORTAL", "type": "a", "image": "https://f4.bcbits.com/img/2812708276_3.jpg", "bandId": 2929173621, "bandName": "Akira The Don" }, { "id": 2925224825, "url": "https://akirathedon.bandcamp.com", "name": "LOFI BEATS 2", "type": "a", "image": "https://f4.bcbits.com/img/2385228822_3.jpg", "bandId": 2929173621, "bandName": "Akira The Don" }, { "id": 1492125113, "url": "https://sbassbear.bandcamp.com", "name": "GrumpWave (Game Grumps Lofi Beats)", "type": "a", "image": "https://f4.bcbits.com/img/0979751799_3.jpg", "bandId": 2436963920, "bandName": "Sbassbear" }, { "id": 4243400258, "url": "https://akirathedon.bandcamp.com", "name": "LOFI BEATS ALPHA", "type": "a", "image": "https://f4.bcbits.com/img/3933552401_3.jpg", "bandId": 2929173621, "bandName": "Akira The Don" }, { "id": 3500178559, "url": "https://floatingfast.bandcamp.com", "name": "lofi beats to socially distance to", "type": "a", "image": "https://f4.bcbits.com/img/1585623471_3.jpg", "bandId": 464865046, "bandName": "Gautam Srikishan" }, { "id": 485207582, "url": "https://jeffball.bandcamp.com", "name": "lofi beats 1", "type": "a", "image": "https://f4.bcbits.com/img/0772152586_3.jpg", "bandId": 1117419640, "bandName": "Jeff Ball" }, { "id": 3989472092, "url": "https://eddache.bandcamp.com", "name": "lofi beats", "type": "a", "image": "https://f4.bcbits.com/img/2707612870_3.jpg", "bandId": 1452447555, "bandName": "Eddache" }, { "id": 3086139073, "url": "https://davidgonzo.bandcamp.com", "name": "Lofi Beats To Make Lofi Beats To", "type": "a", "image": "https://f4.bcbits.com/img/1764204324_3.jpg", "bandId": 1770443752, "bandName": "David Gonzo" }, { "id": 3766402964, "url": "https://meltycanon.bandcamp.com", "name": "Spirit Swap: Lofi Beats to Match-3 To", "type": "a", "image": "https://f4.bcbits.com/img/0115195836_3.jpg", "bandId": 2692967214, "bandName": "meltycanon" }, { "id": 3763534189, "url": "https://jazzhopcafe.bandcamp.com", "name": "lofi beats for insomniacs", "type": "a", "image": "https://f4.bcbits.com/img/3820679447_3.jpg", "bandId": 267666380, "bandName": "The Jazz Hop Café" }, { "id": 2435973825, "url": "https://chillhop.bandcamp.com", "name": "Calm Evenings 🍵 [chill ambient lofi beats / instrumental mix]", "type": "a", "image": "https://f4.bcbits.com/img/1690906766_3.jpg", "bandId": 2355322748, "bandName": "Chillhop Music" }, { "id": 1160930881, "url": "https://indievibes1.bandcamp.com", "name": "Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/3598214465_3.jpg", "bandId": 1691647210, "bandName": "Indie Vibes" }, { "id": 1111783286, "url": "https://ejrue.bandcamp.com", "name": "Relaxing Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/1184233918_3.jpg", "bandId": 2414382980, "bandName": "EJ Rue" }, { "id": 2084627093, "url": "https://riftibeats.bandcamp.com", "name": "FFX Lofi", "type": "a", "image": "https://f4.bcbits.com/img/2980844654_3.jpg", "bandId": 2474157486, "bandName": "RiftiBeats" }, { "id": 557042898, "url": "https://oxinym.bandcamp.com", "name": "60 Lofi Beats - DMCA free / royalty free / no copyright", "type": "a", "image": "https://f4.bcbits.com/img/0798443883_3.jpg", "bandId": 4201153266, "bandName": "oxinym" }, { "id": 3562823985, "url": "https://curtoren.bandcamp.com", "name": "Lofi Beats to Study To", "type": "a", "image": "https://f4.bcbits.com/img/3237136199_3.jpg", "bandId": 791348872, "bandName": "Curt Oren" }, { "id": 276834552, "url": "https://meltycanon.bandcamp.com", "name": "Spirit Swap: Lofi Beats to Match-3 To | Endless Album", "type": "a", "image": "https://f4.bcbits.com/img/0690394215_3.jpg", "bandId": 2692967214, "bandName": "meltycanon" }, { "id": 712860627, "url": "https://benner.bandcamp.com", "name": "lofi beats to kill to", "type": "a", "image": "https://f4.bcbits.com/img/4248162501_3.jpg", "bandId": 420574578, "bandName": "Benner" }, { "id": 3244300793, "url": "https://ezhevika.bandcamp.com", "name": "VIII Miracle: Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/1203228645_3.jpg", "bandId": 1258828536, "bandName": "Various Artists" }, { "id": 356481948, "url": "https://beatsbyboi.bandcamp.com", "name": "lofi beats", "type": "a", "image": "https://f4.bcbits.com/img/4041612947_3.jpg", "bandId": 4198555393, "bandName": "Boi" }, { "id": 921126322, "url": "https://dsproducedit.bandcamp.com", "name": "Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/4293888385_3.jpg", "bandId": 3198853990, "bandName": "DSPRODUCEDIT" }, { "id": 1062653591, "url": "https://ridlaa.bandcamp.com", "name": "Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/2959590217_3.jpg", "bandId": 252360123, "bandName": "Ridlaa" }, { "id": 3175197626, "url": "https://bucket4.bandcamp.com", "name": "Lofi beats: The Ablum", "type": "a", "image": "https://f4.bcbits.com/img/2302464091_3.jpg", "bandId": 2643140959, "bandName": "Bucket" }, { "id": 684252765, "url": "https://invaderdez.bandcamp.com", "name": "lofi beats for wavers", "type": "a", "image": "https://f4.bcbits.com/img/1070576120_3.jpg", "bandId": 772988875, "bandName": "Invader Dez" }, { "id": 2817592668, "url": "https://wolfslofibeats.bandcamp.com", "name": "Wolf's Lofi Beats", "type": "b", "genre": "Hip-Hop/Rap", "image": "https://f4.bcbits.com/img/1350632948_23.jpg", "location": "Denver, Colorado" }, { "id": 1694742590, "url": "https://polarlofibeats.bandcamp.com", "name": "Polar Lofi Beats", "type": "b", "genre": "Ambient", "image": "https://f4.bcbits.com/img/0031905777_23.jpg", "location": "Barcelona, Spain" }, { "id": 813919807, "url": "https://enjoylofibeats.bandcamp.com", "name": "Enjoy Lofi Beats", "type": "b", "genre": "Electronic", "image": "https://f4.bcbits.com/img/0041744000_23.jpg", "location": "Brussels, Belgium" }, { "id": 1977703216, "url": "https://beatssleepcollective.bandcamp.com", "name": "LOFI BEATS X SLEEP DREAMERS 001", "type": "a", "image": "https://f4.bcbits.com/img/0357685597_3.jpg", "bandId": 336824611, "bandName": "beats>sleep collective" }, { "id": 1287794955, "url": "https://redlightchill.bandcamp.com", "name": "Unwind Pt. 1 - Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/0033779128_3.jpg", "bandId": 1137100318, "bandName": "RedLight_Chill" }, { "id": 901405530, "url": "https://scraptakes.bandcamp.com", "name": "Lofi Beats To Study/Be Swallowed By *The Pale* To", "type": "a", "image": "https://f4.bcbits.com/img/1569545040_3.jpg", "bandId": 232714769, "bandName": "Scrap Takes" }, { "id": 4020006898, "url": "https://mcromusic.bandcamp.com", "name": "lofi beats to slay dragons to", "type": "a", "image": "https://f4.bcbits.com/img/1722464312_3.jpg", "bandId": 3163764198, "bandName": "McRoMusic" }, { "id": 340546019, "url": "https://treypowell.bandcamp.com", "name": "lofi beats", "type": "a", "image": "https://f4.bcbits.com/img/0953796901_3.jpg", "bandId": 2304012273, "bandName": "Trey Powell" }, { "id": 3263393243, "url": "https://eryknowakmusic.bandcamp.com", "name": "Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/3919104438_3.jpg", "bandId": 3124789740, "bandName": "Eryk Nowak" }, { "id": 3959658346, "url": "https://nathanwellermusic.bandcamp.com", "name": "Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/0343143721_3.jpg", "bandId": 82213954, "bandName": "Nathan Weller" }, { "id": 3998908003, "url": "https://riftibeats.bandcamp.com", "name": "Super Mario Lofi", "type": "a", "image": "https://f4.bcbits.com/img/1464618188_3.jpg", "bandId": 2474157486, "bandName": "RiftiBeats" }, { "id": 4196938573, "url": "https://djbrace.bandcamp.com", "name": "A Time To Remember Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/2300604802_3.jpg", "bandId": 3042510352, "bandName": "DJ Brace and Illdigger" }, { "id": 3971552886, "url": "https://highsociety.bandcamp.com", "name": "Paleo-Fi - Prehistoric Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/3238630795_3.jpg", "bandId": 3468547529, "bandName": "The High Society" }, { "id": 688977216, "url": "https://catholiclofi.bandcamp.com", "name": "Catholic LoFi Beats", "type": "b", "genre": "Devotional", "image": "https://f4.bcbits.com/img/0029763414_23.jpg", "location": "Virginia" }, { "id": 2870809070, "url": "https://riftibeats.bandcamp.com", "name": "Final Fantasy VII Lofi", "type": "a", "image": "https://f4.bcbits.com/img/3821371717_3.jpg", "bandId": 2474157486, "bandName": "RiftiBeats" }, { "id": 1012675023, "url": "https://djuglykatz.bandcamp.com", "name": "Lofi Beats to Meow to", "type": "a", "image": "https://f4.bcbits.com/img/0369755840_3.jpg", "bandId": 2474755572, "bandName": "DJ Ugly Katz" }, { "id": 843280206, "url": "https://cookinsoul.bandcamp.com", "name": "LOFI PAPI (BEATS)", "type": "a", "image": "https://f4.bcbits.com/img/3553423614_3.jpg", "bandId": 1967189777, "bandName": "Cookin Soul" }, { "id": 3147538721, "url": "https://riftibeats.bandcamp.com", "name": "Attack on Titan Lofi: Beats From Beyond the Walls", "type": "a", "image": "https://f4.bcbits.com/img/0247585722_3.jpg", "bandId": 2474157486, "bandName": "RiftiBeats" }, { "id": 2467866591, "url": "https://seulbeats.bandcamp.com", "name": "A Year From Now (Lofi Beats EP)", "type": "a", "image": "https://f4.bcbits.com/img/3227500988_3.jpg", "bandId": 1074902156, "bandName": "SeulBeats" }, { "id": 3221251375, "url": "https://ushinatta.bandcamp.com", "name": "Lofi Beats Vol 1", "type": "a", "image": "https://f4.bcbits.com/img/2435987837_3.jpg", "bandId": 2286950639, "bandName": "Ushinatta" }, { "id": 3811077487, "url": "https://yenboy666.bandcamp.com", "name": "lofi beats", "type": "a", "image": "https://f4.bcbits.com/img/2710759519_3.jpg", "bandId": 3048340, "bandName": "yenboy666" }, { "id": 1165666658, "url": "https://caixazul.bandcamp.com", "name": "Lofi Beats 001", "type": "a", "image": "https://f4.bcbits.com/img/0588367123_3.jpg", "bandId": 3116155253, "bandName": "RAFABYTES" }, { "id": 1163957216, "url": "https://sjdsjdsjd.bandcamp.com", "name": "lofi beats for trev", "type": "a", "image": "https://f4.bcbits.com/img/4014964313_3.jpg", "bandId": 2300804528, "bandName": "samantha" }, { "id": 226800832, "url": "https://shogokiriyama.bandcamp.com", "name": "Accordion Lofi Beats", "type": "a", "image": "https://f4.bcbits.com/img/1168109461_3.jpg", "bandId": 257523596, "bandName": "Shogo KIRIYAMA" }, { "id": 4069626840, "url": "https://uekbeats.bandcamp.com", "name": "Lofi Beats Vol. 1", "type": "a", "image": "https://f4.bcbits.com/img/2363656368_3.jpg", "bandId": 1744260857, "bandName": "Ük" } ] } ``` --- ## Billboard **Category:** music · **Slug:** `billboard` **Detail page:** https://zpi.web.id/api/music/billboard Top music chart data. **Tags:** music, chart ### Chart Get top music chart data. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:billboard/chart` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `chart` | enum(hot-100|billboard-200) | query | no | Chart slug. Default hot-100 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:billboard/chart?chart=hot-100" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:billboard/chart?chart=hot-100", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:billboard/chart?chart=hot-100", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "chart": "hot-100", "count": 100, "items": [ { "rank": 1, "title": "Choosin' Texas", "artist": "Ella Langley" }, { "rank": 2, "title": "Be Her", "artist": "Ella Langley" }, { "rank": 3, "title": "Man I Need", "artist": "Olivia Dean" }, { "rank": 4, "title": "I Just Might", "artist": "Bruno Mars" }, { "rank": 5, "title": "So Easy (To Fall In Love)", "artist": "Olivia Dean" }, { "rank": 6, "title": "Ordinary", "artist": "Alex Warren" }, { "rank": 7, "title": "Drop Dead", "artist": "Olivia Rodrigo" }, { "rank": 8, "title": "Risk It All", "artist": "Bruno Mars" }, { "rank": 9, "title": "Folded", "artist": "Kehlani" }, { "rank": 10, "title": "Dracula", "artist": "Tame Impala & JENNIE" }, { "rank": 11, "title": "I Can't Love You Anymore", "artist": "Ella Langley & Morgan Wallen" }, { "rank": 12, "title": "Stateside", "artist": "PinkPantheress With Zara Larsson" }, { "rank": 13, "title": "Golden", "artist": "HUNTR/X: EJAE, Audrey Nuna & REI AMI" }, { "rank": 14, "title": "The Fate Of Ophelia", "artist": "Taylor Swift" }, { "rank": 15, "title": "Billie Jean", "artist": "Michael Jackson" }, { "rank": 16, "title": "Daisies", "artist": "Justin Bieber" }, { "rank": 17, "title": "Sleepless In A Hotel Room", "artist": "Luke Combs" }, { "rank": 18, "title": "Opalite", "artist": "Taylor Swift" }, { "rank": 19, "title": "Homewrecker", "artist": "sombr" }, { "rank": 20, "title": "Boston", "artist": "Stella Lefty" }, { "rank": 21, "title": "Human Nature", "artist": "Michael Jackson" }, { "rank": 22, "title": "Be By You", "artist": "Luke Combs" }, { "rank": 23, "title": "The Great Divide", "artist": "Noah Kahan" }, { "rank": 24, "title": "Babydoll", "artist": "Dominic Fike" }, { "rank": 25, "title": "Midnight Sun", "artist": "Zara Larsson" }, { "rank": 26, "title": "Earrings", "artist": "Malcolm Todd" }, { "rank": 27, "title": "Pop Dat Thang", "artist": "DaBaby" }, { "rank": 28, "title": "The Fall", "artist": "Cody Johnson" }, { "rank": 29, "title": "Beat It", "artist": "Michael Jackson" }, { "rank": 30, "title": "Doors", "artist": "Noah Kahan" }, { "rank": 31, "title": "Change My Mind", "artist": "Riley Green" }, { "rank": 32, "title": "E85", "artist": "Don Toliver" }, { "rank": 33, "title": "Loving Life Again", "artist": "Ella Langley" }, { "rank": 34, "title": "Swim", "artist": "BTS" }, { "rank": 35, "title": "Freakin' Out", "artist": "Dexter And The Moonrocks" }, { "rank": 36, "title": "Don't Stop 'Til You Get Enough", "artist": "Michael Jackson" }, { "rank": 37, "title": "American Girls", "artist": "Harry Styles" }, { "rank": 38, "title": "Iloveitiloveitiloveit", "artist": "Bella Kay" }, { "rank": 39, "title": "Brunette", "artist": "Tucker Wetmore" }, { "rank": 40, "title": "Body", "artist": "Don Toliver" }, { "rank": 41, "title": "Die On This Hill", "artist": "Sienna Spiro" }, { "rank": 42, "title": "Lush Life", "artist": "Zara Larsson" }, { "rank": 43, "title": "Fever Dream", "artist": "Alex Warren" }, { "rank": 44, "title": "Dirty Diana", "artist": "Michael Jackson" }, { "rank": 45, "title": "Dandelion", "artist": "Ella Langley" }, { "rank": 46, "title": "Willing And Able", "artist": "Noah Kahan" }, { "rank": 47, "title": "Rock With You", "artist": "Michael Jackson" }, { "rank": 48, "title": "Let 'Em Know", "artist": "T.I." }, { "rank": 49, "title": "End Of August", "artist": "Noah Kahan" }, { "rank": 50, "title": "Elizabeth Taylor", "artist": "Taylor Swift" }, { "rank": 51, "title": "Bottom Of Your Boots", "artist": "Ella Langley" }, { "rank": 52, "title": "Don't We", "artist": "Morgan Wallen" }, { "rank": 53, "title": "Porch Light", "artist": "Noah Kahan" }, { "rank": 54, "title": "I Ain't Coming Back", "artist": "Morgan Wallen Featuring Post Malone" }, { "rank": 55, "title": "Motion Party", "artist": "BossMan Dlow" }, { "rank": 56, "title": "Orbiter", "artist": "Noah Kahan" }, { "rank": 57, "title": "American Cars", "artist": "Noah Kahan" }, { "rank": 58, "title": "Dashboard", "artist": "Noah Kahan" }, { "rank": 59, "title": "White Keys", "artist": "Dominic Fike" }, { "rank": 60, "title": "Cinderella", "artist": "Mac Miller Featuring Ty Dolla $ign" }, { "rank": 61, "title": "Staying Still", "artist": "Noah Kahan" }, { "rank": 62, "title": "Downfall", "artist": "Noah Kahan" }, { "rank": 63, "title": "Obvious", "artist": "Chris Brown" }, { "rank": 64, "title": "Raindance", "artist": "Dave & Tems" }, { "rank": 65, "title": "Turn This Truck Around", "artist": "Jordan Davis" }, { "rank": 66, "title": "Dry Spell", "artist": "Kacey Musgraves" }, { "rank": 67, "title": "Haircut", "artist": "Noah Kahan" }, { "rank": 68, "title": "McArthur", "artist": "HARDY , Eric Church , Morgan Wallen & Tim McGraw" }, { "rank": 69, "title": "Beautiful Things", "artist": "Megan Moroney" }, { "rank": 70, "title": "What You Need", "artist": "Tems" }, { "rank": 71, "title": "Hate How You Look", "artist": "Josh Ross" }, { "rank": 72, "title": "Don't Tell On Me", "artist": "Jason Aldean" }, { "rank": 73, "title": "Self Aware", "artist": "Temper City" }, { "rank": 74, "title": "What You Saying", "artist": "Lil Uzi Vert" }, { "rank": 75, "title": "Deny Deny Deny", "artist": "Noah Kahan" }, { "rank": 76, "title": "Pinky Up", "artist": "KATSEYE" }, { "rank": 77, "title": "Rein Me In", "artist": "Sam Fender & Olivia Dean" }, { "rank": 78, "title": "Rethink Some Things", "artist": "Luke Combs" }, { "rank": 79, "title": "Dan", "artist": "Noah Kahan" }, { "rank": 80, "title": "Fallin'", "artist": "Chris Brown Featuring Leon Thomas" }, { "rank": 81, "title": "Paid Time Off", "artist": "Noah Kahan" }, { "rank": 82, "title": "In My Room", "artist": "Julia Wolf" }, { "rank": 83, "title": "Woman", "artist": "Kane Brown" }, { "rank": 84, "title": "23", "artist": "Noah Kahan" }, { "rank": 85, "title": "For The Moment", "artist": "Chris Brown" }, { "rank": 86, "title": "Rock Music", "artist": "Charli xcx" }, { "rank": 87, "title": "All Them Horses", "artist": "Noah Kahan" }, { "rank": 88, "title": "Mr. Know It All", "artist": "Teddy Swims" }, { "rank": 89, "title": "Damned If I Do", "artist": "Vincent Mason" }, { "rank": 90, "title": "Noble", "artist": "F3miii" }, { "rank": 91, "title": "Rocky Mountain Low", "artist": "Corey Kent & Koe Wetzel" }, { "rank": 92, "title": "Honey Pack", "artist": "Chris Brown" }, { "rank": 93, "title": "Sunburn", "artist": "Tucker Wetmore" }, { "rank": 94, "title": "Father", "artist": "Ye & Travis Scott" }, { "rank": 95, "title": "Ever Since U Left Me (I Went Deaf)", "artist": "French Montana & Max B" }, { "rank": 96, "title": "Lighthouse", "artist": "Noah Kahan" }, { "rank": 97, "title": "We Go Way Back", "artist": "Noah Kahan" }, { "rank": 98, "title": "Runway", "artist": "Lady Gaga & Doechii" }, { "rank": 99, "title": "Jane!", "artist": "The Long Faces" }, { "rank": 100, "title": "Go Away", "artist": "Weezer Featuring Best Coast" } ] } ``` --- ## Deezer **Category:** music · **Slug:** `deezer` **Detail page:** https://zpi.web.id/api/music/deezer Search tracks, albums, artists, and playlists on Deezer. Returns metadata + 30s preview URLs. **Tags:** music, metadata, search, preview ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:deezer/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search query (title, artist, etc) | | `type` | enum(track|album|artist|playlist) | query | no | Result type. Default: track | | `limit` | number | query | no | Items per page (1-50). Default: 25 | | `page` | number | query | no | Page 1-based. Default: 1 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:deezer/search?q=blinding%20lights&type=track&limit=25&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:deezer/search?q=blinding%20lights&type=track&limit=25&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:deezer/search?q=blinding%20lights&type=track&limit=25&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 231, "items": [ { "url": "https://www.deezer.com/track/908604612", "type": "track", "album": "After Hours", "image": "https://cdn-images.dzcdn.net/images/cover/fd00ebd6d30d7253f813dba3bb1c66a9/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 4050205, "url": "https://www.deezer.com/artist/4050205", "name": "The Weeknd", "image": "https://cdn-images.dzcdn.net/images/artist/581693b4724a7fcfa754455101e13a44/1000x1000-000000-80-0-0.jpg" }, "albumId": 137217782, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/b/2/0/1b27825bf63c36edcdc7fac9f920214e.mp3?hdnea=exp=1779796827~acl=/api/1/1/1/b/2/0/1b27825bf63c36edcdc7fac9f920214e.mp3*~data=user_id=0,application_id=42~hmac=733385456066a50584ec392462b5dcf3b914b434d6b01ced1af568bf2dc85153", "trackId": 908604612, "playCount": 984833, "durationMs": 200000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/920003242", "type": "track", "album": "Blinding Lights (Piano Version)", "image": "https://cdn-images.dzcdn.net/images/cover/a2d59f72801b38f6c1ddb837ef8f5e30/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Piano Version)", "artist": { "id": 87410952, "url": "https://www.deezer.com/artist/87410952", "name": "Flying Fingers", "image": "https://cdn-images.dzcdn.net/images/artist/44a5409bf89e0fc913795fbeee3b8cbd/1000x1000-000000-80-0-0.jpg" }, "albumId": 139665252, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/5/c/1/0/5c16c7e688e755f68c370b4f5b908faa.mp3?hdnea=exp=1779796827~acl=/api/1/1/5/c/1/0/5c16c7e688e755f68c370b4f5b908faa.mp3*~data=user_id=0,application_id=42~hmac=17c9a3e01bd9dabe3c9749aa3ee9c400eceae445609ffd6b377c68451ea44a29", "trackId": 920003242, "playCount": 406652, "durationMs": 121000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/851937072", "type": "track", "album": "Blinding Lights (Acoustic Version)", "image": "https://cdn-images.dzcdn.net/images/cover/0395001edac75ba51b1d838ab22bb7e3/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Acoustic Version)", "artist": { "id": 8941068, "url": "https://www.deezer.com/artist/8941068", "name": "Victoria Voss", "image": "https://cdn-images.dzcdn.net/images/artist/5c3a3fe90e8e981d906358791f1ded95/1000x1000-000000-80-0-0.jpg" }, "albumId": 126616392, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/e/f/4/0/ef47b0a8d944c98ab5d3862424b338ae.mp3?hdnea=exp=1779796827~acl=/api/1/1/e/f/4/0/ef47b0a8d944c98ab5d3862424b338ae.mp3*~data=user_id=0,application_id=42~hmac=5c5808c02644d24dd54f3f94ac890cd37bafb134e84c87a097602c830b3787d1", "trackId": 851937072, "playCount": 625340, "durationMs": 241000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1584368692", "type": "track", "album": "Coverz", "image": "https://cdn-images.dzcdn.net/images/cover/69fe76992b190810b7d9fcc6aa2cde35/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 153943952, "url": "https://www.deezer.com/artist/153943952", "name": "Marianne", "image": "https://cdn-images.dzcdn.net/images/artist/75d4cba8e4cf9bd1858d886e35cd16a8/1000x1000-000000-80-0-0.jpg" }, "albumId": 279113752, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/a/2/c/0/a2ce9712e50c9c3578d70aa685e74aff.mp3?hdnea=exp=1779796827~acl=/api/1/1/a/2/c/0/a2ce9712e50c9c3578d70aa685e74aff.mp3*~data=user_id=0,application_id=42~hmac=405d03cb87627eea89053874ae4af356563170142fcb35f65c05c21b3e6ffecd", "trackId": 1584368692, "playCount": 501074, "durationMs": 252000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/3638278102", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/a0a1bec307256fe6a99bbc7d71303e70/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 238676321, "url": "https://www.deezer.com/artist/238676321", "name": "Emily Dawn", "image": "https://cdn-images.dzcdn.net/images/artist/77644fb003dd0ff979fb37b2c9129f2c/1000x1000-000000-80-0-0.jpg" }, "albumId": 850397082, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/0/1/9/0/019c73bfc369ff9ac31aa74c63cbe482.mp3?hdnea=exp=1779796827~acl=/api/1/1/0/1/9/0/019c73bfc369ff9ac31aa74c63cbe482.mp3*~data=user_id=0,application_id=42~hmac=6b567bea9b65ac7bda9462aa37a9d6bbf4440603a906b7848d23bc0166242f49", "trackId": 3638278102, "playCount": 689762, "durationMs": 171000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1670331822", "type": "track", "album": "Covering the World (2021)", "image": "https://cdn-images.dzcdn.net/images/cover/10c6da2d8bef0096296cfe8e56a8de73/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Acoustic)", "artist": { "id": 72042482, "url": "https://www.deezer.com/artist/72042482", "name": "Music Travel Love", "image": "https://cdn-images.dzcdn.net/images/artist/3e30cdf2c1c493abe5a61e8b32cbb786/1000x1000-000000-80-0-0.jpg" }, "albumId": 299218932, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/e/b/5/0/eb500d84727ae4106a0a8984c9019a38.mp3?hdnea=exp=1779796827~acl=/api/1/1/e/b/5/0/eb500d84727ae4106a0a8984c9019a38.mp3*~data=user_id=0,application_id=42~hmac=ef1a4c4b7b216195317e1ab956125f404e562c2c5add770b5207255333b89ce7", "trackId": 1670331822, "playCount": 373595, "durationMs": 195000, "isExplicit": false, "titleShort": "Blinding Lights (Acoustic)" }, { "url": "https://www.deezer.com/track/2203579527", "type": "track", "album": "Songs Vol. 2", "image": "https://cdn-images.dzcdn.net/images/cover/d248c293b86bfbd8710f9daba3da7f6c/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 198445837, "url": "https://www.deezer.com/artist/198445837", "name": "The Northern Lights Quintet", "image": "https://cdn-images.dzcdn.net/images/artist/6b97c87ac983a4f230db03ca07128b32/1000x1000-000000-80-0-0.jpg" }, "albumId": 420558017, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/f/4/e/0/f4e9930c2dadc0a75cc1734f5ce407eb.mp3?hdnea=exp=1779796827~acl=/api/1/1/f/4/e/0/f4e9930c2dadc0a75cc1734f5ce407eb.mp3*~data=user_id=0,application_id=42~hmac=8d4632bb35960dfc2946637faf42317d193ef93ffa564476aee1fdf8d6cb3c0d", "trackId": 2203579527, "playCount": 614009, "durationMs": 228000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/959480292", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/28c5a6b7405450430463382258a6cf21/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 64927672, "url": "https://www.deezer.com/artist/64927672", "name": "Teddy Swims", "image": "https://cdn-images.dzcdn.net/images/artist/b00bd63bc45477674d8f21af2b73f4fd/1000x1000-000000-80-0-0.jpg" }, "albumId": 148007762, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/7/5/3/0/753a10c3fa32969c82ac07d767d49a8b.mp3?hdnea=exp=1779796827~acl=/api/1/1/7/5/3/0/753a10c3fa32969c82ac07d767d49a8b.mp3*~data=user_id=0,application_id=42~hmac=750367be0f155ec89ee8e5b487e189e506446b9c27f638e8602143a8b3e0da67", "trackId": 959480292, "playCount": 495648, "durationMs": 214000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1520722702", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/2cbe7b8dabe10562617c56ed487a70e0/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 1407782, "url": "https://www.deezer.com/artist/1407782", "name": "Quickdrop", "image": "https://cdn-images.dzcdn.net/images/artist/c4daa13216b981414d3b87a690cea6dc/1000x1000-000000-80-0-0.jpg" }, "albumId": 265278422, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/8/d/a/0/8da28f6a2ac198b5555f331d50b379ad.mp3?hdnea=exp=1779796827~acl=/api/1/1/8/d/a/0/8da28f6a2ac198b5555f331d50b379ad.mp3*~data=user_id=0,application_id=42~hmac=3b192eb659eb4dd688691125d72c94b290bc09ab4ac6d07e0d30bdf86a6b48c5", "trackId": 1520722702, "playCount": 296419, "durationMs": 176000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/2177992817", "type": "track", "album": "Bossa Nova Pop Hits", "image": "https://cdn-images.dzcdn.net/images/cover/a05dff553156d1b44b2f9921c2d32833/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 191586, "url": "https://www.deezer.com/artist/191586", "name": "Pablo Cepeda", "image": "https://cdn-images.dzcdn.net/images/artist/c442a52af6e0c067c133c7b6fb381a44/1000x1000-000000-80-0-0.jpg" }, "albumId": 414418377, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/3/e/0/0/3e07ad78158f7b513059c9091943c8a4.mp3?hdnea=exp=1779796827~acl=/api/1/1/3/e/0/0/3e07ad78158f7b513059c9091943c8a4.mp3*~data=user_id=0,application_id=42~hmac=0ecf18670b090b47676913d46e577da1263da01824dc9e7a8b00af69172d75b2", "trackId": 2177992817, "playCount": 596925, "durationMs": 204000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1486911192", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/76b15cefa4d1f4d447bb4592b079876b/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 128991072, "url": "https://www.deezer.com/artist/128991072", "name": "Loi", "image": "https://cdn-images.dzcdn.net/images/artist/b91430d5b69de7538913da1ac33103ac/1000x1000-000000-80-0-0.jpg" }, "albumId": 256906632, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/0/d/b/0/0db63c3111fc04ab1443c13ca35d5e72.mp3?hdnea=exp=1779796827~acl=/api/1/1/0/d/b/0/0db63c3111fc04ab1443c13ca35d5e72.mp3*~data=user_id=0,application_id=42~hmac=cd2f2ee597eaa5e8c976692b93450adb2cd95a0627c765df3f2d113f2951e4cf", "trackId": 1486911192, "playCount": 573433, "durationMs": 147000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1161752782", "type": "track", "album": "Blinding Lights (Remix)", "image": "https://cdn-images.dzcdn.net/images/cover/555be3736048d8370077be6e4cb6a369/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Remix)", "artist": { "id": 4050205, "url": "https://www.deezer.com/artist/4050205", "name": "The Weeknd", "image": "https://cdn-images.dzcdn.net/images/artist/581693b4724a7fcfa754455101e13a44/1000x1000-000000-80-0-0.jpg" }, "albumId": 190172832, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/7/0/0/6703a8ecf2c7fe402096f98f60dd51a8.mp3?hdnea=exp=1779796827~acl=/api/1/1/6/7/0/0/6703a8ecf2c7fe402096f98f60dd51a8.mp3*~data=user_id=0,application_id=42~hmac=3ce5d12be2dedfbed5b65d63d491d712c4ecc13a7cec4b49dcc380e9876dd3e9", "trackId": 1161752782, "playCount": 470506, "durationMs": 216000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/3130146151", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/5c3a3fe90e8e981d906358791f1ded95/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 13984663, "url": "https://www.deezer.com/artist/13984663", "name": "Revelries", "image": "https://cdn-images.dzcdn.net/images/artist/19fc858b0d1c1aac0f968a2efe662360/1000x1000-000000-80-0-0.jpg" }, "albumId": 680463181, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/d/f/5/0/df571b14a149eb0bf3c20057ce2425c3.mp3?hdnea=exp=1779796827~acl=/api/1/1/d/f/5/0/df571b14a149eb0bf3c20057ce2425c3.mp3*~data=user_id=0,application_id=42~hmac=6bf8069b4b3fec79d2d5e09579cfb7cad8b427bb73ed47ced84c133cdee75831", "trackId": 3130146151, "playCount": 484438, "durationMs": 176000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1260978162", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/b41207eff347b38686307d157cf5ba6d/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 4549214, "url": "https://www.deezer.com/artist/4549214", "name": "X Ambassadors", "image": "https://cdn-images.dzcdn.net/images/artist/d2b10f86b84ef2a7f015e15d36fa183e/1000x1000-000000-80-0-0.jpg" }, "albumId": 211555702, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/0/d/3/0/0d31f640062d09334c694739cc6059e2.mp3?hdnea=exp=1779796827~acl=/api/1/1/0/d/3/0/0d31f640062d09334c694739cc6059e2.mp3*~data=user_id=0,application_id=42~hmac=bb89cb059415f5edc3b008a8f022db42fd11ba6fa25f7c2c5143d4ad265752ef", "trackId": 1260978162, "playCount": 460109, "durationMs": 177000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/906147422", "type": "track", "album": "Blinding Lights (Tabata)", "image": "https://cdn-images.dzcdn.net/images/cover/e5c8db881aab3ac2b1aea133b324856d/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Tabata)", "artist": { "id": 1389928, "url": "https://www.deezer.com/artist/1389928", "name": "Tabata Songs", "image": "https://cdn-images.dzcdn.net/images/artist/c9632acfd7ffd22672223cc9bc135fa6/1000x1000-000000-80-0-0.jpg" }, "albumId": 136928052, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/2/2/3/0/22364f74e6b843d87b165dc045f4d481.mp3?hdnea=exp=1779796827~acl=/api/1/1/2/2/3/0/22364f74e6b843d87b165dc045f4d481.mp3*~data=user_id=0,application_id=42~hmac=4b569355186ea9a92ecc8d3e2dd43e4f7f32cf7e9bad64f256f40daa3c76c531", "trackId": 906147422, "playCount": 458222, "durationMs": 241000, "isExplicit": false, "titleShort": "Blinding Lights (Tabata)" }, { "url": "https://www.deezer.com/track/2695430402", "type": "track", "album": "Blinding Lights (Country Version)", "image": "https://cdn-images.dzcdn.net/images/cover/9ee55b6d172852e4473fbed9bd232ba3/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Country Version)", "artist": { "id": 1467062, "url": "https://www.deezer.com/artist/1467062", "name": "Tebey", "image": "https://cdn-images.dzcdn.net/images/artist/990d5763b0d040480b5426197e0c00c6/1000x1000-000000-80-0-0.jpg" }, "albumId": 557756452, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/3/8/f/0/38f7364a5ba141204f25a6ceaf5514ab.mp3?hdnea=exp=1779796827~acl=/api/1/1/3/8/f/0/38f7364a5ba141204f25a6ceaf5514ab.mp3*~data=user_id=0,application_id=42~hmac=c6ec5548665977bc42d3e1361070370eb8555451f84c7b06cf0314b2e714b6c4", "trackId": 2695430402, "playCount": 406787, "durationMs": 186000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1043884262", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/480db7fc86ebdee86bd48c5ebcce1afd/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 103165352, "url": "https://www.deezer.com/artist/103165352", "name": "Ouvindo", "image": "https://cdn-images.dzcdn.net/images/artist/480db7fc86ebdee86bd48c5ebcce1afd/1000x1000-000000-80-0-0.jpg" }, "albumId": 165466672, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/e/2/c/0/e2c9c540306dffbd0e4100aac6d2ab92.mp3?hdnea=exp=1779796827~acl=/api/1/1/e/2/c/0/e2c9c540306dffbd0e4100aac6d2ab92.mp3*~data=user_id=0,application_id=42~hmac=461ee240a77c8b72d5b460a1c7af4bbb8bab9e5e945293d70d35c2f8ffdc78de", "trackId": 1043884262, "playCount": 401735, "durationMs": 218000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1876126737", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/2b81d6b6a41a003ef03e4990963668ee/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 93467062, "url": "https://www.deezer.com/artist/93467062", "name": "BAWK", "image": "https://cdn-images.dzcdn.net/images/artist/c826d3c62be9c9e79dc1d0f2c38a4221/1000x1000-000000-80-0-0.jpg" }, "albumId": 348559477, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/2/4/3/0/24318c2b223e35162ba693f5824df731.mp3?hdnea=exp=1779796827~acl=/api/1/1/2/4/3/0/24318c2b223e35162ba693f5824df731.mp3*~data=user_id=0,application_id=42~hmac=d6373be4e51fd4942c329ffa7bf876cc9dccb0ee7f543e34bc3ba1eab0bb85a9", "trackId": 1876126737, "playCount": 403549, "durationMs": 173000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/2166259437", "type": "track", "album": "Live At SoFi Stadium", "image": "https://cdn-images.dzcdn.net/images/cover/17bf5f732c2943ad4cb2bf3778b806cc/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Live)", "artist": { "id": 4050205, "url": "https://www.deezer.com/artist/4050205", "name": "The Weeknd", "image": "https://cdn-images.dzcdn.net/images/artist/581693b4724a7fcfa754455101e13a44/1000x1000-000000-80-0-0.jpg" }, "albumId": 411519667, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/7/c/0/67c2e360ac632ff431e9977f1ff5e96f.mp3?hdnea=exp=1779796827~acl=/api/1/1/6/7/c/0/67c2e360ac632ff431e9977f1ff5e96f.mp3*~data=user_id=0,application_id=42~hmac=d0af7928e892b993a89c4e52ffb94a94e25ce7bf2187c8270b7fa65c3f8536ae", "trackId": 2166259437, "playCount": 355209, "durationMs": 253000, "isExplicit": true, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1359987492", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/e2ea65dea375958e295bd5ac44cee0b9/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 171159777, "url": "https://www.deezer.com/artist/171159777", "name": "Yori", "image": "https://cdn-images.dzcdn.net/images/artist/e2ea65dea375958e295bd5ac44cee0b9/1000x1000-000000-80-0-0.jpg" }, "albumId": 226959272, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/f/d/9/0/fd9acf3cd1e0ea431538dd3643257828.mp3?hdnea=exp=1779796827~acl=/api/1/1/f/d/9/0/fd9acf3cd1e0ea431538dd3643257828.mp3*~data=user_id=0,application_id=42~hmac=a6a36b64b2ac39975ace63fb5ff1e4b5ba480747acbb49dede3c8754b87ba7a8", "trackId": 1359987492, "playCount": 305896, "durationMs": 152000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/2531041661", "type": "track", "album": "Piano Covers, Vol.1", "image": "https://cdn-images.dzcdn.net/images/cover/f290bef09360c576295c8171bffa4c15/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Piano Arrangement)", "artist": { "id": 6480239, "url": "https://www.deezer.com/artist/6480239", "name": "Alexandre Pachabezian", "image": "https://cdn-images.dzcdn.net/images/artist/cbd0b52304e1f8d9734b71f9106dad73/1000x1000-000000-80-0-0.jpg" }, "albumId": 509436771, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/2/a/3/0/2a3073bb9cae3fa04d3469bf6982e9cb.mp3?hdnea=exp=1779796827~acl=/api/1/1/2/a/3/0/2a3073bb9cae3fa04d3469bf6982e9cb.mp3*~data=user_id=0,application_id=42~hmac=6c84cfdf5a5965e6fe8c5e2cb20ba7fa3b2f81f5f58fdbddd8b1139770226dca", "trackId": 2531041661, "playCount": 358619, "durationMs": 225000, "isExplicit": false, "titleShort": "Blinding Lights (Piano Arrangement)" }, { "url": "https://www.deezer.com/track/2074005367", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/0fe4b4f7fe93f7858dde58fb1ba0aec1/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 7927074, "url": "https://www.deezer.com/artist/7927074", "name": "Saint Asonia", "image": "https://cdn-images.dzcdn.net/images/artist/45bd25bca0b455841111403191bb8229/1000x1000-000000-80-0-0.jpg" }, "albumId": 387498227, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/5/1/0/651fc1a3b45ba7db0118f1b92fd3b01f.mp3?hdnea=exp=1779796827~acl=/api/1/1/6/5/1/0/651fc1a3b45ba7db0118f1b92fd3b01f.mp3*~data=user_id=0,application_id=42~hmac=c0ba9503c948b95b78c968f36c4e21b22c2ed88fdd1c95e8528952d8f2001a0d", "trackId": 2074005367, "playCount": 368350, "durationMs": 183000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/719837282", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/65763f6362b1c25f477548cc28e10811/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights", "artist": { "id": 8343320, "url": "https://www.deezer.com/artist/8343320", "name": "Lucas Estrada", "image": "https://cdn-images.dzcdn.net/images/artist/ae4ade6d2becee58093cbbab0a9a20b3/1000x1000-000000-80-0-0.jpg" }, "albumId": 105146022, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/7/3/6/0/736f17fe4ff4fb06e15cf7bcf6bbab26.mp3?hdnea=exp=1779796827~acl=/api/1/1/7/3/6/0/736f17fe4ff4fb06e15cf7bcf6bbab26.mp3*~data=user_id=0,application_id=42~hmac=6ff75794b41def65aeb282abbaa11977a3f0e26d264c4a96f3b9816a44dfdbc0", "trackId": 719837282, "playCount": 299092, "durationMs": 130000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1267006962", "type": "track", "album": "Blinding Lights (Joris Voorn Remix)", "image": "https://cdn-images.dzcdn.net/images/cover/76370fe4ab26058356551778897a315b/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Joris Voorn Remix)", "artist": { "id": 1150452, "url": "https://www.deezer.com/artist/1150452", "name": "Alex Kennon", "image": "https://cdn-images.dzcdn.net/images/artist/76370fe4ab26058356551778897a315b/1000x1000-000000-80-0-0.jpg" }, "albumId": 212838182, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/4/6/0/146b48d008931326268228cdfe47735f.mp3?hdnea=exp=1779796827~acl=/api/1/1/1/4/6/0/146b48d008931326268228cdfe47735f.mp3*~data=user_id=0,application_id=42~hmac=5db191a37ae8b81e4333fe40f2bbf65b2f5cefb3a8140c999be2a38cf2eca3ff", "trackId": 1267006962, "playCount": 366150, "durationMs": 313000, "isExplicit": false, "titleShort": "Blinding Lights" }, { "url": "https://www.deezer.com/track/1078622722", "type": "track", "album": "Blinding Lights", "image": "https://cdn-images.dzcdn.net/images/cover/cf22674710be326f668dfb27d5af9576/1000x1000-000000-80-0-0.jpg", "title": "Blinding Lights (Major Lazer Remix)", "artist": { "id": 4050205, "url": "https://www.deezer.com/artist/4050205", "name": "The Weeknd", "image": "https://cdn-images.dzcdn.net/images/artist/581693b4724a7fcfa754455101e13a44/1000x1000-000000-80-0-0.jpg" }, "albumId": 172920142, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/3/b/4/0/3b45132b57d8f2656c103e0a795add3a.mp3?hdnea=exp=1779796827~acl=/api/1/1/3/b/4/0/3b45132b57d8f2656c103e0a795add3a.mp3*~data=user_id=0,application_id=42~hmac=3727d4d21487dc277e8dc056ece13423effa4ae5beee44073f152614bc3d38e3", "trackId": 1078622722, "playCount": 364423, "durationMs": 198000, "isExplicit": false, "titleShort": "Blinding Lights" } ], "hasMore": true, "nextPage": 2 } ``` --- ### Track Detail Fetch full metadata for a single track by ID or URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:deezer/track/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Track ID (numeric) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:deezer/track/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:deezer/track/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:deezer/track/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "bpm": 112.3, "url": "https://www.deezer.com/track/916424", "gain": -8.7, "isrc": "USIR10211038", "album": "The Eminem Show", "image": "https://cdn-images.dzcdn.net/images/cover/ec3c8ed67427064c70f67e5815b74cef/1000x1000-000000-80-0-0.jpg", "title": "Without Me", "artist": { "id": 13, "url": "https://www.deezer.com/artist/13", "name": "Eminem", "image": "https://cdn-images.dzcdn.net/images/artist/0f30bbd33a680030054af004d698d6ac/1000x1000-000000-80-0-0.jpg" }, "albumId": 103248, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/a/e/b/0/aeb58f2f63ee57fb9c47cbe8fb5ccdaa.mp3?hdnea=exp=1779796832~acl=/api/1/1/a/e/b/0/aeb58f2f63ee57fb9c47cbe8fb5ccdaa.mp3*~data=user_id=0,application_id=42~hmac=1b5985d442f86b28eaa6ac47bfc845bb4a9b542091908208f989b136e684d03c", "trackId": 916424, "playCount": 961431, "diskNumber": 1, "durationMs": 290000, "isExplicit": true, "titleShort": "Without Me", "releaseDate": "2007-09-13", "contributors": [ { "id": 13, "url": "https://www.deezer.com/artist/13", "name": "Eminem", "role": "Main" } ], "trackPosition": 10, "availableCountries": [ "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BN", "BO", "BQ", "BR", "BT", "BV", "BW", "BY", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FR", "GA", "GB", "GD", "GE", "GH", "GM", "GN", "GQ", "GR", "GS", "GT", "GU", "GW", "HK", "HM", "HN", "HR", "HU", "ID", "IE", "IL", "IN", "IQ", "IR", "IS", "IT", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MD", "ME", "MG", "MH", "MK", "ML", "MM", "MN", "MP", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PG", "PH", "PK", "PL", "PN", "PS", "PT", "PW", "PY", "QA", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SI", "SJ", "SK", "SL", "SN", "SO", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TV", "TZ", "UA", "UG", "US", "UY", "UZ", "VC", "VE", "VG", "VI", "VN", "VU", "WS", "YE", "ZA", "ZM", "ZW" ] } ``` --- ### Album Detail Fetch album info with its tracklist. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:deezer/album/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Album ID (numeric) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:deezer/album/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:deezer/album/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:deezer/album/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "upc": "724384960650", "url": "https://www.deezer.com/album/302127", "image": "https://cdn-images.dzcdn.net/images/cover/5718f7c81c27e0b2417e2a4c45224f8a/1000x1000-000000-80-0-0.jpg", "label": "Daft Life Ltd./ADA France", "title": "Discovery", "artist": { "id": 27, "name": "Daft Punk", "image": "https://cdn-images.dzcdn.net/images/artist/638e69b9caaf9f9f3f8826febea7b543/1000x1000-000000-80-0-0.jpg" }, "genres": [ { "id": 106, "name": "Electro" } ], "tracks": [ { "url": "https://www.deezer.com/track/3135553", "title": "One More Time", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/f/8/c/0/f8c5dc3837912dba37c9a1ab3170cc3f.mp3?hdnea=exp=1779796835~acl=/api/1/1/f/8/c/0/f8c5dc3837912dba37c9a1ab3170cc3f.mp3*~data=user_id=0,application_id=42~hmac=6d4389885982e7650113d9043a6be91d298a669b6fe9a656efd8baf74923bc97", "trackId": 3135553, "playCount": 895695, "diskNumber": 0, "durationMs": 320000, "isExplicit": false, "titleShort": "One More Time", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135554", "title": "Aerodynamic", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/9/9/0/699d41611cf0280f0a55c8ba4a372c14.mp3?hdnea=exp=1779796835~acl=/api/1/1/6/9/9/0/699d41611cf0280f0a55c8ba4a372c14.mp3*~data=user_id=0,application_id=42~hmac=71d3cf015a99f61f41fd040c66838cf6252b37506de00a97a839318d6a3ffb6d", "trackId": 3135554, "playCount": 767940, "diskNumber": 0, "durationMs": 212000, "isExplicit": false, "titleShort": "Aerodynamic", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135555", "title": "Digital Love", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/e/c/0/1ec8ff31f93acc81ebb93a45c191e219.mp3?hdnea=exp=1779796835~acl=/api/1/1/1/e/c/0/1ec8ff31f93acc81ebb93a45c191e219.mp3*~data=user_id=0,application_id=42~hmac=3f2eaac5f5be82ed7b44d42541a9a1ad2bd24211e8fddab4062ad4f49e95d64e", "trackId": 3135555, "playCount": 738308, "diskNumber": 0, "durationMs": 301000, "isExplicit": false, "titleShort": "Digital Love", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135556", "title": "Harder, Better, Faster, Stronger", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/a/2/0/6a2c0a5670afe821e08fc5154909534a.mp3?hdnea=exp=1779796835~acl=/api/1/1/6/a/2/0/6a2c0a5670afe821e08fc5154909534a.mp3*~data=user_id=0,application_id=42~hmac=6260a1cd84f2fabfb32fa6d32db4790b1e30b83537b4aa9b3c65948f5783b4a3", "trackId": 3135556, "playCount": 814839, "diskNumber": 0, "durationMs": 226000, "isExplicit": false, "titleShort": "Harder, Better, Faster, Stronger", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135557", "title": "Crescendolls", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/f/6/0/1f65f58dc3cfa276ac6a1ee6f2ffac20.mp3?hdnea=exp=1779796835~acl=/api/1/1/1/f/6/0/1f65f58dc3cfa276ac6a1ee6f2ffac20.mp3*~data=user_id=0,application_id=42~hmac=0cb941a1284c9d64b5d9cd3b9122102584dd8cc4745bf32556a918588cf187ce", "trackId": 3135557, "playCount": 603822, "diskNumber": 0, "durationMs": 211000, "isExplicit": false, "titleShort": "Crescendolls", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135558", "title": "Nightvision", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/c/0/6/0/c063dbb3b8f2af8dac3e88950f2e38b0.mp3?hdnea=exp=1779796835~acl=/api/1/1/c/0/6/0/c063dbb3b8f2af8dac3e88950f2e38b0.mp3*~data=user_id=0,application_id=42~hmac=1dce11c2c3458ef28c8a8fcc08e38267e956bb9e7ca58847bfc542a15c4819b4", "trackId": 3135558, "playCount": 562648, "diskNumber": 0, "durationMs": 104000, "isExplicit": false, "titleShort": "Nightvision", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135559", "title": "Superheroes", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/b/c/0/1bc57c07bfaf6a265e06ce9574390e0e.mp3?hdnea=exp=1779796835~acl=/api/1/1/1/b/c/0/1bc57c07bfaf6a265e06ce9574390e0e.mp3*~data=user_id=0,application_id=42~hmac=e2f01f4acd28f9d6a147060c58a2f7a25db9de7ce740b8fe9bf17189a808cfeb", "trackId": 3135559, "playCount": 606586, "diskNumber": 0, "durationMs": 237000, "isExplicit": false, "titleShort": "Superheroes", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135560", "title": "High Life", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/e/e/a/0/eea4fd9467e697d503998dff44ceeaa3.mp3?hdnea=exp=1779796835~acl=/api/1/1/e/e/a/0/eea4fd9467e697d503998dff44ceeaa3.mp3*~data=user_id=0,application_id=42~hmac=2da637a81b855f172beed0d80d6e9c3d716b20d032adfc43c3e05464587d5114", "trackId": 3135560, "playCount": 593661, "diskNumber": 0, "durationMs": 201000, "isExplicit": false, "titleShort": "High Life", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135561", "title": "Something About Us", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/c/f/f/0/cff7c95e11ba9f6ac3ff0401a81df4f5.mp3?hdnea=exp=1779796835~acl=/api/1/1/c/f/f/0/cff7c95e11ba9f6ac3ff0401a81df4f5.mp3*~data=user_id=0,application_id=42~hmac=20679276d8ae4d89b71db6bd839fd531ca161841a1152123f20c6ea046afed50", "trackId": 3135561, "playCount": 764640, "diskNumber": 0, "durationMs": 232000, "isExplicit": false, "titleShort": "Something About Us", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135562", "title": "Voyager", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/b/c/9/0/bc95bc4a6fdcf3e9b1672229f679eea1.mp3?hdnea=exp=1779796835~acl=/api/1/1/b/c/9/0/bc95bc4a6fdcf3e9b1672229f679eea1.mp3*~data=user_id=0,application_id=42~hmac=5a38ca71edc004ef4444b0a1f6cc38a1115fc4b1127266212f2556efaae916f6", "trackId": 3135562, "playCount": 739634, "diskNumber": 0, "durationMs": 227000, "isExplicit": false, "titleShort": "Voyager", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135563", "title": "Veridis Quo", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/4/5/0/6456b666c0b1d4537e34d71e5cbd098c.mp3?hdnea=exp=1779796835~acl=/api/1/1/6/4/5/0/6456b666c0b1d4537e34d71e5cbd098c.mp3*~data=user_id=0,application_id=42~hmac=3a95c9694fb1df870295e10b17ac39af3ffd64d6e567bc951e684267b959f9a8", "trackId": 3135563, "playCount": 928445, "diskNumber": 0, "durationMs": 345000, "isExplicit": false, "titleShort": "Veridis Quo", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135564", "title": "Short Circuit", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/4/1/3/0/413592fd246163564e5416fb72f8c831.mp3?hdnea=exp=1779796835~acl=/api/1/1/4/1/3/0/413592fd246163564e5416fb72f8c831.mp3*~data=user_id=0,application_id=42~hmac=2598bcb084d0ac33b3e519c422cbe02b2d17f5d4a5d5f0a783472d4964706ed9", "trackId": 3135564, "playCount": 504125, "diskNumber": 0, "durationMs": 206000, "isExplicit": false, "titleShort": "Short Circuit", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135565", "title": "Face to Face", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/b/c/5/0/bc5ffa003d9ccf020a633083738c6ae4.mp3?hdnea=exp=1779796835~acl=/api/1/1/b/c/5/0/bc5ffa003d9ccf020a633083738c6ae4.mp3*~data=user_id=0,application_id=42~hmac=ec8f5fa9a453e2eabe746328977514655d80c5fd61754d8adf37a93255708eef", "trackId": 3135565, "playCount": 641846, "diskNumber": 0, "durationMs": 240000, "isExplicit": false, "titleShort": "Face to Face", "trackPosition": 0 }, { "url": "https://www.deezer.com/track/3135566", "title": "Too Long", "artist": { "id": 27, "name": "Daft Punk" }, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/8/f/e/0/8fe6827c48cc62fb82fe8e741b0534f4.mp3?hdnea=exp=1779796835~acl=/api/1/1/8/f/e/0/8fe6827c48cc62fb82fe8e741b0534f4.mp3*~data=user_id=0,application_id=42~hmac=4e335306927f7dac2f313fa0dda397de14a77dfd8d225cd890bbdc8847824ec7", "trackId": 3135566, "playCount": 612593, "diskNumber": 0, "durationMs": 600000, "isExplicit": false, "titleShort": "Too Long", "trackPosition": 0 } ], "albumId": 302127, "fanCount": 333010, "durationMs": 3662000, "isExplicit": false, "recordType": "album", "trackCount": 14, "releaseDate": "2001-03-07", "contributors": [ { "id": 27, "name": "Daft Punk", "role": "Main" } ] } ``` --- ### Artist Detail Fetch artist profile with top tracks and discography. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:deezer/artist/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Artist ID (numeric) | | `topLimit` | number | query | no | Number of top tracks (1-50). Default: 10 | | `albumLimit` | number | query | no | Number of albums (1-50). Default: 25 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:deezer/artist/:id?topLimit=10&albumLimit=25" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:deezer/artist/:id?topLimit=10&albumLimit=25", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:deezer/artist/:id?topLimit=10&albumLimit=25", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.deezer.com/artist/27", "name": "Daft Punk", "image": "https://cdn-images.dzcdn.net/images/artist/638e69b9caaf9f9f3f8826febea7b543/1000x1000-000000-80-0-0.jpg", "share": "https://www.deezer.com/artist/27?utm_source=deezer&utm_content=artist-27&utm_term=0_1779795942&utm_medium=web", "albums": [ { "url": "https://www.deezer.com/album/494309801", "image": "https://cdn-images.dzcdn.net/images/cover/bb8b5f188ae380ac3a7c876b70556357/1000x1000-000000-80-0-0.jpg", "title": "Random Access Memories (Drumless Edition)", "albumId": 494309801, "fanCount": 14096, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2023-11-17" }, { "url": "https://www.deezer.com/album/294609352", "image": "https://cdn-images.dzcdn.net/images/cover/117dcf85bdf0851347403796521d1e9d/1000x1000-000000-80-0-0.jpg", "title": "Homework (25th Anniversary Edition)", "albumId": 294609352, "fanCount": 17045, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "1997-01-20" }, { "url": "https://www.deezer.com/album/6575789", "image": "https://cdn-images.dzcdn.net/images/cover/311bba0fc112d15f72c8b5a65f0456c1/1000x1000-000000-80-0-0.jpg", "title": "Random Access Memories", "albumId": 6575789, "fanCount": 875382, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2013-05-17" }, { "url": "https://www.deezer.com/album/438167857", "image": "https://cdn-images.dzcdn.net/images/cover/ad250e6b44b43490a294d90d6104e124/1000x1000-000000-80-0-0.jpg", "title": "Random Access Memories (10th Anniversary Edition)", "albumId": 438167857, "fanCount": 31347, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2023-05-12" }, { "url": "https://www.deezer.com/album/1471670", "image": "https://cdn-images.dzcdn.net/images/cover/2f34e0fe8086785fab7d6dfd8d48ba5a/1000x1000-000000-80-0-0.jpg", "title": "TRON: Legacy Reconfigured", "albumId": 1471670, "fanCount": 11458, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2011-04-05" }, { "url": "https://www.deezer.com/album/192529232", "image": "https://cdn-images.dzcdn.net/images/cover/313e8a988614445ab1ad508da2805187/1000x1000-000000-80-0-0.jpg", "title": "TRON: Legacy - The Complete Edition (Original Motion Picture Soundtrack)", "albumId": 192529232, "fanCount": 36888, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2020-12-18" }, { "url": "https://www.deezer.com/album/321108967", "image": "https://cdn-images.dzcdn.net/images/cover/9c0250e6453c73a96d9e3a99d119ec2f/1000x1000-000000-80-0-0.jpg", "title": "TRON: Legacy", "albumId": 321108967, "fanCount": 3454, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2010-12-07" }, { "url": "https://www.deezer.com/album/304193", "image": "https://cdn-images.dzcdn.net/images/cover/ad3dda2e1b770ad143d5dbfeb667fa39/1000x1000-000000-80-0-0.jpg", "title": "Alive 2007", "albumId": 304193, "fanCount": 164653, "isExplicit": true, "recordType": "album", "trackCount": 0, "releaseDate": "2007-11-16" }, { "url": "https://www.deezer.com/album/1343199", "image": "https://cdn-images.dzcdn.net/images/cover/39e2281a0e9f564e73b4f49dfa06f4ab/1000x1000-000000-80-0-0.jpg", "title": "Musique, Vol. 1", "albumId": 1343199, "fanCount": 65261, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2006-03-31" }, { "url": "https://www.deezer.com/album/8244118", "image": "https://cdn-images.dzcdn.net/images/cover/f6a4dbf47cb8828c281ed4e63364f99e/1000x1000-000000-80-0-0.jpg", "title": "Human After All (Remixes)", "albumId": 8244118, "fanCount": 33131, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2014-08-04" }, { "url": "https://www.deezer.com/album/303459", "image": "https://cdn-images.dzcdn.net/images/cover/48701ef0699add067f257045a72d06af/1000x1000-000000-80-0-0.jpg", "title": "Human After All", "albumId": 303459, "fanCount": 105330, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2005-03-14" }, { "url": "https://www.deezer.com/album/299205", "image": "https://cdn-images.dzcdn.net/images/cover/0416976ab8f3f32e0b447dd1b9b1e0cf/1000x1000-000000-80-0-0.jpg", "title": "Daft Club", "albumId": 299205, "fanCount": 47936, "isExplicit": true, "recordType": "album", "trackCount": 0, "releaseDate": "2003-12-01" }, { "url": "https://www.deezer.com/album/299137", "image": "https://cdn-images.dzcdn.net/images/cover/dad3f5830a650c17f7125dca7c50f1d6/1000x1000-000000-80-0-0.jpg", "title": "Alive 1997", "albumId": 299137, "fanCount": 9699, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2005-01-21" }, { "url": "https://www.deezer.com/album/302127", "image": "https://cdn-images.dzcdn.net/images/cover/5718f7c81c27e0b2417e2a4c45224f8a/1000x1000-000000-80-0-0.jpg", "title": "Discovery", "albumId": 302127, "fanCount": 333010, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "2001-03-07" }, { "url": "https://www.deezer.com/album/301775", "image": "https://cdn-images.dzcdn.net/images/cover/b870579c8650cd59b1cce656dde2ef17/1000x1000-000000-80-0-0.jpg", "title": "Homework", "albumId": 301775, "fanCount": 170094, "isExplicit": false, "recordType": "album", "trackCount": 0, "releaseDate": "1997-01-16" }, { "url": "https://www.deezer.com/album/6703346", "image": "https://cdn-images.dzcdn.net/images/cover/b1b2ac88710b0c721a680b9f9df947d7/1000x1000-000000-80-0-0.jpg", "title": "Get Lucky (feat. Pharrell Williams & Nile Rodgers)", "albumId": 6703346, "fanCount": 10004, "isExplicit": false, "recordType": "ep", "trackCount": 0, "releaseDate": "2013-07-03" }, { "url": "https://www.deezer.com/album/325477", "image": "https://cdn-images.dzcdn.net/images/cover/3d0891473275db1310a4feea8e6bb405/1000x1000-000000-80-0-0.jpg", "title": "Revolution 909", "albumId": 325477, "fanCount": 6468, "isExplicit": false, "recordType": "ep", "trackCount": 0, "releaseDate": "2005-01-21" }, { "url": "https://www.deezer.com/album/325476", "image": "https://cdn-images.dzcdn.net/images/cover/cea7bffeacb0f7093cff63469e7e5944/1000x1000-000000-80-0-0.jpg", "title": "Burnin'", "albumId": 325476, "fanCount": 6056, "isExplicit": false, "recordType": "ep", "trackCount": 0, "releaseDate": "2006-04-21" }, { "url": "https://www.deezer.com/album/302364", "image": "https://cdn-images.dzcdn.net/images/cover/8bf010db50a851518e3edf3407145387/1000x1000-000000-80-0-0.jpg", "title": "Around the World", "albumId": 302364, "fanCount": 21804, "isExplicit": false, "recordType": "ep", "trackCount": 0, "releaseDate": "1997-04-11" }, { "url": "https://www.deezer.com/album/431082537", "image": "https://cdn-images.dzcdn.net/images/cover/ad250e6b44b43490a294d90d6104e124/1000x1000-000000-80-0-0.jpg", "title": "GLBTM (Studio Outtakes)", "albumId": 431082537, "fanCount": 5027, "isExplicit": false, "recordType": "single", "trackCount": 0, "releaseDate": "2023-04-20" }, { "url": "https://www.deezer.com/album/418374497", "image": "https://cdn-images.dzcdn.net/images/cover/ad250e6b44b43490a294d90d6104e124/1000x1000-000000-80-0-0.jpg", "title": "The Writing of Fragments of Time", "albumId": 418374497, "fanCount": 2746, "isExplicit": false, "recordType": "single", "trackCount": 0, "releaseDate": "2023-03-22" }, { "url": "https://www.deezer.com/album/7561419", "image": "https://cdn-images.dzcdn.net/images/cover/f3e62688b1f759f9c986a073df77ee63/1000x1000-000000-80-0-0.jpg", "title": "Derezzed (From “TRON: Legacy” Avicii \"So Amazing Mix\" Feat. Negin)", "albumId": 7561419, "fanCount": 6253, "isExplicit": false, "recordType": "single", "trackCount": 0, "releaseDate": "2014-04-01" }, { "url": "https://www.deezer.com/album/6516139", "image": "https://cdn-images.dzcdn.net/images/cover/bc49adb87758e0c8c4e508a9c5cce85d/1000x1000-000000-80-0-0.jpg", "title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)", "albumId": 6516139, "fanCount": 160803, "isExplicit": false, "recordType": "single", "trackCount": 0, "releaseDate": "2013-04-19" }, { "url": "https://www.deezer.com/album/3492561", "image": "https://cdn-images.dzcdn.net/images/cover/9882207e85296dc1ef9933bc73fb1b1d/1000x1000-000000-80-0-0.jpg", "title": "Human After All (Medley)", "albumId": 3492561, "fanCount": 3578, "isExplicit": false, "recordType": "single", "trackCount": 0, "releaseDate": "2012-06-22" }, { "url": "https://www.deezer.com/album/7294967", "image": "https://cdn-images.dzcdn.net/images/cover/43a0af617608677263fba3fb4709b706/1000x1000-000000-80-0-0.jpg", "title": "Harder, Better, Faster, Stronger", "albumId": 7294967, "fanCount": 4313, "isExplicit": false, "recordType": "single", "trackCount": 0, "releaseDate": "2010-04-05" } ], "artistId": 27, "fanCount": 5154880, "topTracks": [ { "url": "https://www.deezer.com/track/66609426", "album": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)", "image": "https://cdn-images.dzcdn.net/images/cover/bc49adb87758e0c8c4e508a9c5cce85d/1000x1000-000000-80-0-0.jpg", "title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)", "albumId": 6516139, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3?hdnea=exp=1779796842~acl=/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3*~data=user_id=0,application_id=42~hmac=ed815a0074da08e4cee5c730da964e332c6daa83040107f72c70201f8a11b494", "trackId": 66609426, "playCount": 954234, "durationMs": 248000, "isExplicit": false, "titleShort": "Get Lucky" }, { "url": "https://www.deezer.com/track/67238732", "album": "Random Access Memories", "image": "https://cdn-images.dzcdn.net/images/cover/311bba0fc112d15f72c8b5a65f0456c1/1000x1000-000000-80-0-0.jpg", "title": "Instant Crush (feat. Julian Casablancas)", "albumId": 6575789, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/d/6/b/0/d6bc80aadfa1d7625d59a6620f229371.mp3?hdnea=exp=1779796842~acl=/api/1/1/d/6/b/0/d6bc80aadfa1d7625d59a6620f229371.mp3*~data=user_id=0,application_id=42~hmac=1befc3bd4f09eb1cebf87508ce8215e27d459407b29493dba0f14044b1330a90", "trackId": 67238732, "playCount": 942491, "durationMs": 337000, "isExplicit": false, "titleShort": "Instant Crush" }, { "url": "https://www.deezer.com/track/3135563", "album": "Discovery", "image": "https://cdn-images.dzcdn.net/images/cover/5718f7c81c27e0b2417e2a4c45224f8a/1000x1000-000000-80-0-0.jpg", "title": "Veridis Quo", "albumId": 302127, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/4/5/0/6456b666c0b1d4537e34d71e5cbd098c.mp3?hdnea=exp=1779796842~acl=/api/1/1/6/4/5/0/6456b666c0b1d4537e34d71e5cbd098c.mp3*~data=user_id=0,application_id=42~hmac=8996e9a96ab9828cde5f402b8fb2d3e59c855482b78216ecce4b30609a3ae210", "trackId": 3135563, "playCount": 928445, "durationMs": 345000, "isExplicit": false, "titleShort": "Veridis Quo" }, { "url": "https://www.deezer.com/track/3135553", "album": "Discovery", "image": "https://cdn-images.dzcdn.net/images/cover/5718f7c81c27e0b2417e2a4c45224f8a/1000x1000-000000-80-0-0.jpg", "title": "One More Time", "albumId": 302127, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/f/8/c/0/f8c5dc3837912dba37c9a1ab3170cc3f.mp3?hdnea=exp=1779796842~acl=/api/1/1/f/8/c/0/f8c5dc3837912dba37c9a1ab3170cc3f.mp3*~data=user_id=0,application_id=42~hmac=2f11362ed8b454479b7557be92f27d420790b55fcd1dcc2fba9007d676a36b95", "trackId": 3135553, "playCount": 895695, "durationMs": 320000, "isExplicit": false, "titleShort": "One More Time" }, { "url": "https://www.deezer.com/track/67238735", "album": "Random Access Memories", "image": "https://cdn-images.dzcdn.net/images/cover/311bba0fc112d15f72c8b5a65f0456c1/1000x1000-000000-80-0-0.jpg", "title": "Get Lucky (feat. Pharrell Williams and Nile Rodgers)", "albumId": 6575789, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/c/8/a/0/c8a61130657a2cf58e3ac751e7950617.mp3?hdnea=exp=1779796842~acl=/api/1/1/c/8/a/0/c8a61130657a2cf58e3ac751e7950617.mp3*~data=user_id=0,application_id=42~hmac=fd1abe0bc601da2ff4521b7d2f953313fbfd4b01549116c3a2c1e07487d79cd0", "trackId": 67238735, "playCount": 877635, "durationMs": 367000, "isExplicit": false, "titleShort": "Get Lucky" }, { "url": "https://www.deezer.com/track/3129775", "album": "Homework", "image": "https://cdn-images.dzcdn.net/images/cover/b870579c8650cd59b1cce656dde2ef17/1000x1000-000000-80-0-0.jpg", "title": "Around the World", "albumId": 301775, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/a/4/7/0/a47dbed01e6d9b0ac4e39a134f745ca2.mp3?hdnea=exp=1779796842~acl=/api/1/1/a/4/7/0/a47dbed01e6d9b0ac4e39a134f745ca2.mp3*~data=user_id=0,application_id=42~hmac=61d55331f1d5068c0c7d7df9f2bb3ce870b06137ee1ac084560650bacb898d88", "trackId": 3129775, "playCount": 830730, "durationMs": 429000, "isExplicit": false, "titleShort": "Around the World" }, { "url": "https://www.deezer.com/track/3135556", "album": "Discovery", "image": "https://cdn-images.dzcdn.net/images/cover/5718f7c81c27e0b2417e2a4c45224f8a/1000x1000-000000-80-0-0.jpg", "title": "Harder, Better, Faster, Stronger", "albumId": 302127, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/6/a/2/0/6a2c0a5670afe821e08fc5154909534a.mp3?hdnea=exp=1779796842~acl=/api/1/1/6/a/2/0/6a2c0a5670afe821e08fc5154909534a.mp3*~data=user_id=0,application_id=42~hmac=93d4a480702ebcacec575e322086cafd24635b949a7ee6c8e3f184f82544cd06", "trackId": 3135556, "playCount": 814839, "durationMs": 226000, "isExplicit": false, "titleShort": "Harder, Better, Faster, Stronger" }, { "url": "https://www.deezer.com/track/2271580987", "album": "Random Access Memories (10th Anniversary Edition)", "image": "https://cdn-images.dzcdn.net/images/cover/ad250e6b44b43490a294d90d6104e124/1000x1000-000000-80-0-0.jpg", "title": "Lose Yourself to Dance (feat. Pharrell Williams)", "albumId": 438167857, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/e/5/3/0/e53185570f71c51bf4903d1e78ed5348.mp3?hdnea=exp=1779796842~acl=/api/1/1/e/5/3/0/e53185570f71c51bf4903d1e78ed5348.mp3*~data=user_id=0,application_id=42~hmac=e6c9e3db6cd3ce3a10c487c504c3e51cb5daa048be93a83344f1ededd3f67a36", "trackId": 2271580987, "playCount": 376427, "durationMs": 353000, "isExplicit": false, "titleShort": "Lose Yourself to Dance" }, { "url": "https://www.deezer.com/track/67238730", "album": "Random Access Memories", "image": "https://cdn-images.dzcdn.net/images/cover/311bba0fc112d15f72c8b5a65f0456c1/1000x1000-000000-80-0-0.jpg", "title": "Giorgio by Moroder", "albumId": 6575789, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/2/2/6/0/226a352b5354e78a964d5dad5875ded9.mp3?hdnea=exp=1779796842~acl=/api/1/1/2/2/6/0/226a352b5354e78a964d5dad5875ded9.mp3*~data=user_id=0,application_id=42~hmac=2539b1d7e105f3272fe9d3c30344c8d7d74631e0804a4051ce1cd41a4b89a3a5", "trackId": 67238730, "playCount": 793082, "durationMs": 544000, "isExplicit": false, "titleShort": "Giorgio by Moroder" }, { "url": "https://www.deezer.com/track/3129772", "album": "Homework", "image": "https://cdn-images.dzcdn.net/images/cover/b870579c8650cd59b1cce656dde2ef17/1000x1000-000000-80-0-0.jpg", "title": "Da Funk", "albumId": 301775, "preview": "https://cdnt-preview.dzcdn.net/api/1/1/7/6/8/0/76889b34d1906099d7b365b8573e4ea7.mp3?hdnea=exp=1779796842~acl=/api/1/1/7/6/8/0/76889b34d1906099d7b365b8573e4ea7.mp3*~data=user_id=0,application_id=42~hmac=8a167aad9be6686803d7813d5256dd75e1b3ef58cfd94cfff29f7bf26fb8dd5a", "trackId": 3129772, "playCount": 776740, "durationMs": 328000, "isExplicit": false, "titleShort": "Da Funk" } ], "albumCount": 38 } ``` --- ## Genius **Category:** music · **Slug:** `genius` **Detail page:** https://zpi.web.id/api/music/genius Search songs and fetch full lyrics from Genius. Returns clean text with section markers preserved. **Tags:** music, lyrics, search ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:genius/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search query (song/artist/album) | | `perPage` | number | query | no | Results per page (1-20). Default 10 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:genius/search?q=blinding%20lights&perPage=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:genius/search?q=blinding%20lights&perPage=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:genius/search?q=blinding%20lights&perPage=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 10, "items": [ { "id": 817859, "url": "https://genius.com/albums/The-weeknd/Heartless-blinding-lights", "type": "album", "image": "https://images.genius.com/b0d113a7edc6cbed3a8bec9ef3140e4e.1000x1000x1.png", "title": "Heartless / Blinding Lights", "artist": "The Weeknd", "fullTitle": "Heartless / Blinding Lights by The Weeknd" }, { "id": 5049949, "url": "https://genius.com/The-weeknd-blinding-lights-lyrics", "path": "/The-weeknd-blinding-lights-lyrics", "type": "song", "image": "https://images.genius.com/34c1c35ca27a735e6e5f18611acb1c16.1000x1000x1.png", "title": "Blinding Lights", "artist": "The Weeknd", "fullTitle": "Blinding Lights by The Weeknd" }, { "id": 7809032, "url": "https://genius.com/Bladee-and-ecco2k-5-star-crest-4-vattenrum-lyrics", "path": "/Bladee-and-ecco2k-5-star-crest-4-vattenrum-lyrics", "type": "song", "image": "https://images.genius.com/256c3f06b722a602d21f7a2ea48bde67.1000x1000x1.png", "title": "5 Star Crest (4 Vattenrum)", "artist": "Bladee", "fullTitle": "5 Star Crest (4 Vattenrum) by Bladee & Ecco2k" }, { "id": 5049949, "url": "https://genius.com/The-weeknd-blinding-lights-lyrics", "path": "/The-weeknd-blinding-lights-lyrics", "type": "song", "image": "https://images.genius.com/34c1c35ca27a735e6e5f18611acb1c16.1000x1000x1.png", "title": "Blinding Lights", "artist": "The Weeknd", "fullTitle": "Blinding Lights by The Weeknd" }, { "id": 7809032, "url": "https://genius.com/Bladee-and-ecco2k-5-star-crest-4-vattenrum-lyrics", "path": "/Bladee-and-ecco2k-5-star-crest-4-vattenrum-lyrics", "type": "song", "image": "https://images.genius.com/256c3f06b722a602d21f7a2ea48bde67.1000x1000x1.png", "title": "5 Star Crest (4 Vattenrum)", "artist": "Bladee", "fullTitle": "5 Star Crest (4 Vattenrum) by Bladee & Ecco2k" }, { "id": 3043085, "url": "https://genius.com/artists/Blinding-lights", "type": "artist", "image": "https://assets.genius.com/images/default_banner.png?1779461979", "title": "Blinding Lights" }, { "id": 817859, "url": "https://genius.com/albums/The-weeknd/Heartless-blinding-lights", "type": "album", "image": "https://images.genius.com/b0d113a7edc6cbed3a8bec9ef3140e4e.1000x1000x1.png", "title": "Heartless / Blinding Lights", "artist": "The Weeknd", "fullTitle": "Heartless / Blinding Lights by The Weeknd" }, { "id": 18938, "url": "https://genius.com/videos/The-weeknds-heartless-explained", "type": "video", "title": "The Weeknd Goes On A Drug-Fueled Vegas Bender In His “Heartless” Video" }, { "id": 12581, "url": "https://genius.com/a/the-weeknd-s-blinding-lights-is-the-first-song-in-history-to-spend-a-full-year-in-the-top-10", "type": "article", "title": "The Weeknd’s “Blinding Lights” Is The First Song In History To Spend A Full Year In The Top 10" }, { "id": 19457664, "url": "https://genius.com/BlindingLights41524", "type": "user", "image": "https://assets.genius.com/images/default_banner.png?1779461979", "title": "BlindingLights41524" } ], "query": "blinding lights" } ``` --- ### Lyrics Fetch full song lyrics by URL or ID. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:genius/lyrics` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | no | Full song URL OR path (/The-weeknd-blinding-lights-lyrics). Provide this OR id. | | `id` | number | query | no | Song ID from search results. Provide this OR url. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:genius/lyrics?url=https%3A%2F%2Fgenius.com%2FThe-weeknd-blinding-lights-lyrics&id=5193845" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:genius/lyrics?url=https%3A%2F%2Fgenius.com%2FThe-weeknd-blinding-lights-lyrics&id=5193845", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:genius/lyrics?url=https%3A%2F%2Fgenius.com%2FThe-weeknd-blinding-lights-lyrics&id=5193845", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 5193845, "url": "https://genius.com/The-weeknd-blinding-lights-lyrics", "image": "https://images.genius.com/34c1c35ca27a735e6e5f18611acb1c16.1000x1000x1.png", "title": "Blinding Lights", "artist": "The Weeknd", "lyrics": "[Intro]\nYeah\n\n[Verse 1]\nI've been tryna call\nI've been on my own for long enough\nMaybe you can show me how to love, maybe\nI'm goin' through withdrawals\nYou don't even have to do too much\nYou can turn me on with just a touch, baby\n\n[Pre-Chorus]\nI look around and\nSin City's cold and empty (Oh)\nNo one's around to judge me (Oh)\nI can't see clearly when you're gone\n\n[Chorus]\nI said, ooh, I'm blinded by the lights\nNo, I can't sleep until I feel your touch (Touch)\nI said, ooh, I'm drowning in the night\nOh, when I'm like this, you're the one I trust\nHey, hey, hey\n\n[Verse 2]\nI'm running out of time\n'Cause I can see the sun light up the sky\nSo I hit the road in overdrive, baby, oh\n\n[Pre-Chorus]\nThe city's cold and empty (Oh)\nNo one's around to judge me (Oh)\nI can't see clearly when you're gone\n\n[Chorus]\nAnd I said, ooh, I'm blinded by the lights\nNo, I can't sleep until I feel your touch (Touch)\nI said, ooh, I'm drowning in the night\nOh, when I'm like this, you're the one I trust\n\n[Bridge]\nI'm just coming back to let you know (Back to let you know)\nI could never say it on the phone (Say it on the phone)\nWill never let you go this time (Ooh)\n\n[Chorus]\nI said, ooh, I'm blinded by the lights\nNo, I can't sleep until I feel your touch (Touch)\nHey, hey, hey\n\n[Post-Chorus]\nHey, hey, hey\n\n[Outro]\nI said, ooh, I'm blinded by the lights\nNo, I can't sleep until I feel your touch", "description": "“Blinding Lights” serves as the second single for The Weeknd’s fourth studio album, After Hours. It follows the record’s lead single, “Heartless,” which was released two days prior" } ``` --- ## iTunes **Category:** music · **Slug:** `itunes` **Detail page:** https://zpi.web.id/api/music/itunes Search music tracks and albums. **Tags:** music ### Search Search music tracks and albums. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:itunes/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search term (title, artist, album) | | `entity` | enum(song|album|musicArtist) | query | no | Entity type: song\|album\|musicArtist. Default song | | `limit` | number | query | no | Items count (1-200). Default 25 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:itunes/search?query=blinding%20lights&entity=song&limit=25" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:itunes/search?query=blinding%20lights&entity=song&limit=25", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:itunes/search?query=blinding%20lights&entity=song&limit=25", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 25, "results": [ { "kind": "song", "country": "USA", "trackId": 1488408568, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/17/b4/8f/17b48f9a-0b93-6bb8-fe1d-3a16623c2cfb/mzaf_9560252727299052414.plus.aac.p.m4a", "releaseDate": "2019-11-29T12:00:00Z", "collectionId": 1488408555, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1488408555?i=1488408568&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/a6/6e/bf/a66ebf79-5008-8948-b352-a790fc87446b/19UM1IM04638.rgb.jpg/100x100bb.jpg", "collectionName": "Blinding Lights - Single", "trackTimeMillis": 201570, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1488408555?i=1488408568&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1513133940, "artistId": 1462541757, "trackName": "Blinding Lights", "artistName": "Teddy Swims", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/4f/3a/c6/4f3ac6e5-50a3-2045-cd71-e51d103c1ad6/mzaf_1456231008946328070.plus.aac.p.m4a", "releaseDate": "2020-05-15T12:00:00Z", "collectionId": 1513133938, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1513133938?i=1513133940&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/teddy-swims/1462541757?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/8a/e6/47/8ae64750-3dcf-ac4d-b0f6-c70c92893494/054391934000.jpg/100x100bb.jpg", "collectionName": "Blinding Lights - Single", "trackTimeMillis": 214875, "primaryGenreName": "Pop", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1513133938?i=1513133940&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1542842761, "artistId": 479756766, "trackName": "Blinding Lights (Remix)", "artistName": "The Weeknd & ROSALÍA", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/08/fe/de/08fede6c-762e-b24f-f4ff-a9e51bbde1cc/mzaf_6048815850106316934.plus.aac.p.m4a", "releaseDate": "2020-12-04T12:00:00Z", "collectionId": 1542842760, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights-remix/1542842760?i=1542842761&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/61/e7/3f/61e73f94-018d-5f50-50ec-8521952bc72e/20UM1IM11629.rgb.jpg/100x100bb.jpg", "collectionName": "Blinding Lights (Remix) - Single", "trackTimeMillis": 216123, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights-remix/1542842760?i=1542842761&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1735024505, "artistId": 61788289, "trackName": "Blinding Lights (Country Version)", "artistName": "Tebey", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview122/v4/c4/2a/51/c42a5121-3511-fbb6-27a4-702e90951103/mzaf_12361057204103406257.plus.aac.p.m4a", "releaseDate": "2024-03-09T08:00:00Z", "collectionId": 1735024497, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights-country-version/1735024497?i=1735024505&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/tebey/61788289?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/0c/08/60/0c08603c-2eff-4dc7-4393-7cb1182bd666/198391497544.jpg/100x100bb.jpg", "collectionName": "Blinding Lights (Country Version) - Single", "trackTimeMillis": 186009, "primaryGenreName": "Country", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights-country-version/1735024497?i=1735024505&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1531252590, "artistId": 3628117, "trackName": "Blinding Lights", "artistName": "KIDZ BOP Kids", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/67/de/f5/67def519-34f4-f7e9-0cb8-7f2399dff070/mzaf_1941080008130704769.plus.aac.p.m4a", "releaseDate": "2020-04-17T12:00:00Z", "collectionId": 1531252579, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1531252579?i=1531252590&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/kidz-bop-kids/3628117?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/a3/5f/07/a35f074c-a9cd-a148-3d05-5ec1988f6c99/20CRGIM24141.rgb.jpg/100x100bb.jpg", "collectionName": "KIDZ BOP 2021", "trackTimeMillis": 179247, "primaryGenreName": "Children's Music", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1531252579?i=1531252590&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1584826307, "artistId": 326718294, "trackName": "Blinding Lights", "artistName": "Loi", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/f6/02/c6/f602c678-6294-6269-7f6a-0a16d2a54d5d/mzaf_10096976185372964975.plus.aac.p.m4a", "releaseDate": "2021-09-07T12:00:00Z", "collectionId": 1584826306, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1584826306?i=1584826307&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/loi/326718294?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/91/45/e6/9145e62e-ba62-d918-ad69-8a8f0742c122/190296456312.jpg/100x100bb.jpg", "collectionName": "Blinding Lights - Single", "trackTimeMillis": 147368, "primaryGenreName": "Pop", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1584826306?i=1584826307&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1627610546, "artistId": 167375968, "trackName": "Blinding Lights", "artistName": "All Time Low", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview112/v4/93/ae/72/93ae72e0-e138-7ad1-97d6-316e7e6c34b5/mzaf_11136082015635527037.plus.aac.p.m4a", "releaseDate": "2021-07-30T12:00:00Z", "collectionId": 1627610405, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1627610405?i=1627610546&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/all-time-low/167375968?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music112/v4/10/7a/52/107a52d6-0f4e-44c2-7f7c-1671ecd05345/075679740731.jpg/100x100bb.jpg", "collectionName": "Blinding Lights - Single", "trackTimeMillis": 193152, "primaryGenreName": "Alternative", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1627610405?i=1627610546&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1499378607, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/19/d6/60/19d660ff-e3a9-8377-15a3-ce4b28e89cac/mzaf_18422426156481158187.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1499378108, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1499378108?i=1499378607&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/6f/bc/e6/6fbce6c4-c38c-72d8-4fd0-66cfff32f679/20UMGIM12176.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1499378108?i=1499378607&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1760204542, "artistId": 549182483, "trackName": "Blinding Lights (Apple Music Sessions)", "artistName": "Tyler Hubbard", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/4e/d1/1a/4ed11a6c-9090-7ed7-bd2c-9932b9bc49f6/mzaf_15811523860966784581.plus.aac.p.m4a", "releaseDate": "2024-08-05T12:00:00Z", "collectionId": 1760204287, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights-apple-music-sessions/1760204287?i=1760204542&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/tyler-hubbard/549182483?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/61/48/ac/6148ac57-5f56-522c-283b-320561205409/24UMGIM79424.rgb.jpg/100x100bb.jpg", "collectionName": "Apple Music Nashville Sessions", "trackTimeMillis": 210292, "primaryGenreName": "Country", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights-apple-music-sessions/1760204287?i=1760204542&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1660394165, "artistId": 994032832, "trackName": "Blinding Lights", "artistName": "Saint Asonia", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview112/v4/5a/6e/97/5a6e9704-8c25-cc99-881d-a808c2907d26/mzaf_503743513618618142.plus.aac.p.m4a", "releaseDate": "2021-11-18T12:00:00Z", "collectionId": 1660393301, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1660393301?i=1660394165&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/saint-asonia/994032832?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music122/v4/5b/58/7e/5b587e76-26d6-d78f-3f9b-62fb3068cc7c/5400863105334_cover.jpg/100x100bb.jpg", "collectionName": "Introvert", "trackTimeMillis": 183357, "primaryGenreName": "Rock", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1660393301?i=1660394165&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1505683988, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/1d/44/0d/1d440dbc-9832-08e6-080d-aa1e1bacf40c/mzaf_3600642016947675074.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1505683705, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1505683705?i=1505683988&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/03/e1/67/03e167d6-ee05-eb32-55e9-c5040f55a8bf/20UMGIM21166.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours (Deluxe)", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1505683705?i=1505683988&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1580605680, "artistId": 216123617, "trackName": "Blinding Lights", "artistName": "Rockabye Baby!", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/bf/60/a7/bf60a718-0316-3dce-9669-d8bf4ee6f4c1/mzaf_1426593911456943821.plus.aac.p.m4a", "releaseDate": "2021-09-10T12:00:00Z", "collectionId": 1580605679, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1580605679?i=1580605680&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/rockabye-baby/216123617?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/09/4a/e6/094ae6ab-9d0d-421b-55a8-97909d73dcd6/1692.jpg/100x100bb.jpg", "collectionName": "Lullaby Renditions of the Weeknd", "trackTimeMillis": 186093, "primaryGenreName": "Children's Music", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1580605679?i=1580605680&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1615128020, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/54/de/f3/54def383-7077-0c14-1294-bad176abb18d/mzaf_14207747380256255193.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1615127777, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1615127777?i=1615128020&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/02/0b/1d/020b1dd1-223c-b881-ec56-cac82398980f/20UMGIM21166.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours (Deluxe Video Album)", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1615127777?i=1615128020&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1580838580, "artistId": 1309258310, "trackName": "Blinding Lights", "artistName": "Lullapop", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/07/98/d9/0798d949-02a7-672a-4a5a-a109cb0e37cf/mzaf_17517174706825796056.plus.aac.p.m4a", "releaseDate": "2021-05-07T12:00:00Z", "collectionId": 1580838094, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1580838094?i=1580838580&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/lullapop/1309258310?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music112/v4/d7/45/cb/d745cbd5-9f6c-4e06-6ac6-6b4257040f9a/21CRGIM27718.rgb.jpg/100x100bb.jpg", "collectionName": "Lullapop 4", "trackTimeMillis": 198944, "primaryGenreName": "Children's Music", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1580838094?i=1580838580&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1499386265, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/0c/c5/03/0cc503b5-9299-b207-a13c-ba5358733c56/mzaf_18217607061023109918.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1499385848, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1499385848?i=1499386265&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/2b/b9/fe/2bb9fef5-d7f3-8345-25a9-db0e79fde4e4/20UMGIM11048.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1499385848?i=1499386265&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1551901075, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/5f/19/16/5f1916e0-1c64-f3a0-feed-75d93a8ed9e6/mzaf_3276610676213956189.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1551901062, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1551901062?i=1551901075&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/e2/dd/01/e2dd01f0-35b6-5327-1f64-dc23c282ae60/20UMGIM21166.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours (Deluxe Video Album)", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1551901062?i=1551901075&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1505963224, "artistId": 1501327982, "trackName": "Blinding Lights (Piano Version)", "artistName": "Flying Fingers & Piano Tribute Players", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/ef/1b/3c/ef1b3c6a-7f64-f1ee-3157-0508ea75b6a9/mzaf_18272725610445997278.plus.aac.p.m4a", "releaseDate": "2020-04-17T12:00:00Z", "collectionId": 1505963213, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights-piano-version/1505963213?i=1505963224&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/flying-fingers/1501327982?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music123/v4/e2/b9/4e/e2b94e18-3ec0-cbf3-8b31-58d656fea2fa/886448385127.jpg/100x100bb.jpg", "collectionName": "Blinding Lights (Piano Version) - Single", "trackTimeMillis": 121000, "primaryGenreName": "Easy Listening", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights-piano-version/1505963213?i=1505963224&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1556108146, "artistId": 622429974, "trackName": "Blinding Lights", "artistName": "X Ambassadors", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/b9/8a/b3/b98ab32b-f373-b9da-ffce-8452e003e581/mzaf_12760411206034143431.plus.aac.p.m4a", "releaseDate": "2021-03-09T12:00:00Z", "collectionId": 1556108136, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1556108136?i=1556108146&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/x-ambassadors/622429974?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/25/86/75/2586751e-538c-9a96-9d84-02d27f57cba3/21UMGIM17253.rgb.jpg/100x100bb.jpg", "collectionName": "Blinding Lights - Single", "trackTimeMillis": 177839, "primaryGenreName": "Alternative", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1556108136?i=1556108146&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1505682603, "artistId": 479756766, "trackName": "Blinding Lights (feat. Chromatics) [Chromatics Remix]", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/c7/29/85/c72985a3-172c-76e4-e169-6528c351cfbd/mzaf_7558073425318523322.plus.aac.p.m4a", "releaseDate": "2020-03-23T07:00:00Z", "collectionId": 1505682596, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights-feat-chromatics-chromatics-remix/1505682596?i=1505682603&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/71/12/03/711203e0-f7b9-9f4e-caff-540736fda45c/20UMGIM25005.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours (Remixes) - EP", "trackTimeMillis": 261239, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights-feat-chromatics-chromatics-remix/1505682596?i=1505682603&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1506855031, "artistId": 3628117, "trackName": "Blinding Lights", "artistName": "KIDZ BOP Kids", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/41/ad/86/41ad8626-36db-3c7b-5713-dcbe3a761032/mzaf_273572636471707619.plus.aac.p.m4a", "releaseDate": "2020-04-17T12:00:00Z", "collectionId": 1506855029, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1506855029?i=1506855031&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/kidz-bop-kids/3628117?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/25/4d/20/254d2097-21b0-d43e-c2f9-74c713089492/20CRGIM20080.rgb.jpg/100x100bb.jpg", "collectionName": "Blinding Lights - Single", "trackTimeMillis": 179247, "primaryGenreName": "Children's Music", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1506855029?i=1506855031&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1550875220, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/52/46/e6/5246e63e-9a58-210c-77cd-841ac2ada67a/mzaf_10665874872221931677.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1550875218, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1550875218?i=1550875220&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/dc/e9/95/dce995ab-5287-cba4-4966-46d16bf1c072/21UMGIM06667.rgb.jpg/100x100bb.jpg", "collectionName": "The Highlights", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1550875218?i=1550875220&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1607516656, "artistId": 1394079958, "trackName": "Blinding Lights", "artistName": "Andy Angel", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/53/47/ec/5347ec30-1325-41ae-62c6-b28fde437014/mzaf_7413239439808008287.plus.aac.p.m4a", "releaseDate": "2022-02-11T12:00:00Z", "collectionId": 1607516284, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1607516284?i=1607516656&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/andy-angel/1394079958?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music116/v4/3b/53/34/3b533428-00eb-9bb5-753a-8c158d87d252/886449880980.jpg/100x100bb.jpg", "collectionName": "Guitar Covers, Vol. 1", "trackTimeMillis": 225027, "primaryGenreName": "Relaxation", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1607516284?i=1607516656&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1552373716, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/ab/15/80/ab158089-cfbb-3d9d-4b6d-2bd4a9482c10/mzaf_11771065373661408367.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1552373714, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1552373714?i=1552373716&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/b1/80/9b/b1809b1e-7aa4-d851-5992-3029947db3c2/21UMGIM06667.rgb.jpg/100x100bb.jpg", "collectionName": "The Highlights (Deluxe Video Album)", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1552373714?i=1552373716&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1599776106, "artistId": 3628117, "trackName": "Blinding Lights", "artistName": "KIDZ BOP Kids", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/05/e8/59/05e8595d-03cf-16fe-f040-d0629a693213/mzaf_5291371090453869042.plus.aac.p.m4a", "releaseDate": "2020-04-17T12:00:00Z", "collectionId": 1599775914, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1599775914?i=1599776106&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/kidz-bop-kids/3628117?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music126/v4/c3/0c/bd/c30cbd85-a303-ef38-a33c-61af01582976/21CRGIM30607.rgb.jpg/100x100bb.jpg", "collectionName": "KIDZ BOP Ultimate Playlist", "trackTimeMillis": 179200, "primaryGenreName": "Children's Music", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1599775914?i=1599776106&uo=4" }, { "kind": "song", "country": "USA", "trackId": 1505683967, "artistId": 479756766, "trackName": "Blinding Lights", "artistName": "The Weeknd", "previewUrl": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/99/f1/e4/99f1e421-952f-a70e-5ef2-ba78d2073dd0/mzaf_11852837108625724603.plus.aac.p.m4a", "releaseDate": "2019-11-29T08:00:00Z", "collectionId": 1505683624, "trackViewUrl": "https://music.apple.com/us/album/blinding-lights/1505683624?i=1505683967&uo=4", "artistViewUrl": "https://music.apple.com/us/artist/the-weeknd/479756766?uo=4", "artworkUrl100": "https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/83/3a/f7/833af71b-2e0c-3303-24f5-8f5c546c073b/20UMGIM21167.rgb.jpg/100x100bb.jpg", "collectionName": "After Hours (Deluxe)", "trackTimeMillis": 200046, "primaryGenreName": "R&B/Soul", "collectionViewUrl": "https://music.apple.com/us/album/blinding-lights/1505683624?i=1505683967&uo=4" } ] } ``` --- ## JioSaavn **Category:** music · **Slug:** `jiosaavn` **Detail page:** https://zpi.web.id/api/music/jiosaavn Search and fetch songs, albums, and playlists from JioSaavn with full audio download URLs at multiple bitrates. **Tags:** music, search, download, stream ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:jiosaavn/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search query (title, artist, etc) | | `limit` | number | query | no | Items per page (1-40). Default: 20 | | `page` | number | query | no | Page 1-based. Default: 1 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:jiosaavn/search?q=blinding%20lights&limit=20&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:jiosaavn/search?q=blinding%20lights&limit=20&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:jiosaavn/search?q=blinding%20lights&limit=20&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "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" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/QyQGSEwDBkM", "type": "track", "album": "Soothing Guitar Covers, Vol. 2", "image": "https://c.saavncdn.com/586/Soothing-Guitar-Covers-Vol-2-Instrumental-2024-20240209163229-500x500.jpg", "label": "SoundTrak", "title": "Blinding Lights", "artist": "Guitar Cafetéria", "albumId": "51761586", "artists": [ { "id": "18620370", "url": "https://www.jiosaavn.com/artist/guitar-cafeteria-songs/q14JpqDy8LM_", "name": "Guitar Cafetéria" } ], "trackId": "3Lmy831p", "albumUrl": "https://www.jiosaavn.com/album/soothing-guitar-covers-vol.-2/8zJsAkUBnS8_", "language": "instrumental", "copyright": "© 2024 Guitar Cafetéria Music", "hasLyrics": false, "playCount": 1, "durationMs": 271000, "isExplicit": false, "releaseYear": "2024" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/AwAtWDx0A0I", "type": "track", "album": "Blinding Lights", "image": "https://c.saavncdn.com/523/Blinding-Lights-Instrumental-2025-20251128141705-500x500.jpg", "label": "Sound Tower", "title": "Blinding Lights", "artist": "Sound Tower", "albumId": "70269145", "artists": [ { "id": "20034459", "url": "https://www.jiosaavn.com/artist/sound-tower-songs/-2ljXsf1gCI_", "name": "Sound Tower" } ], "trackId": "shFiHD4q", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/Gd0BZAwAWnU_", "language": "instrumental", "copyright": "© 2025 The Weeknd", "hasLyrics": false, "playCount": 0, "durationMs": 156000, "isExplicit": false, "releaseYear": "2025" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/QBonZi5mbVg", "type": "track", "album": "Blinding Lights", "image": "https://c.saavncdn.com/405/Blinding-Lights-Instrumental-2020-20240702091900-500x500.jpg", "label": "Magic Records", "title": "Blinding Lights", "artist": "Coopex, Eben, Tim Moyo", "albumId": "55766831", "artists": [ { "id": "3993374", "url": "https://www.jiosaavn.com/artist/coopex-songs/eXQXK8gaGeI_", "name": "Coopex", "image": "https://c.saavncdn.com/910/On-the-Line-English-2019-20200105104401-500x500.jpg" }, { "id": "856387", "url": "https://www.jiosaavn.com/artist/eben-songs/wvfTNjvRSG8_", "name": "Eben", "image": "https://c.saavncdn.com/185/Hades-English-2018-20180314174238-500x500.jpg" }, { "id": "2515906", "url": "https://www.jiosaavn.com/artist/tim-moyo-songs/matjNT7rH40_", "name": "Tim Moyo", "image": "https://c.saavncdn.com/391/Stay-Here-Undone-English-2018-20181005211913-500x500.jpg" } ], "trackId": "0rLWZVZk", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/b9liO5c,NYM_", "language": "instrumental", "copyright": "© 2020 The Weeknd", "hasLyrics": false, "playCount": 95, "durationMs": 197000, "isExplicit": false, "releaseYear": "2020" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/NR8SeSJYBlg", "type": "track", "album": "Here", "image": "https://c.saavncdn.com/598/Here-Instrumental-2025-20250116105138-500x500.jpg", "label": "vom deich gechillt", "title": "Blinding Lights", "artist": "vom deich gechillt", "albumId": "61278208", "artists": [ { "id": "17497585", "url": "https://www.jiosaavn.com/artist/vom-deich-gechillt-songs/213PIxJ-DDs_", "name": "vom deich gechillt" } ], "trackId": "EwyHVh1k", "albumUrl": "https://www.jiosaavn.com/album/here/ZpeSMpqWsBw_", "language": "instrumental", "copyright": "© 2025 vom deich gechillt", "hasLyrics": false, "playCount": 1, "durationMs": 347000, "isExplicit": false, "releaseYear": "2025" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/GlkpQj5BQHc", "type": "track", "album": "Night Fairy", "image": "https://c.saavncdn.com/966/Night-Fairy-Instrumental-2026-20260410210403-500x500.jpg", "label": "Jackey Music Company", "title": "Blinding Lights", "artist": "Jackey Mishra", "albumId": "74456323", "artists": [ { "id": "12204294", "url": "https://www.jiosaavn.com/artist/jackey-mishra-songs/UWFnR9sPLk8_", "name": "Jackey Mishra", "image": "https://c.saavncdn.com/artists/Jackey_Mishra_004_20251201102541_500x500.jpg" } ], "trackId": "j1BsJqwD", "albumUrl": "https://www.jiosaavn.com/album/night-fairy/pQQFTbH3EgM_", "language": "english", "copyright": "© 2026 Jackey Music Company", "hasLyrics": false, "playCount": 0, "durationMs": 216000, "isExplicit": false, "releaseYear": "2026" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/MjsTa0BmY1s", "type": "track", "album": "Blinding Lights Piano Chill", "image": "https://c.saavncdn.com/706/Blinding-Lights-Piano-Chill-Instrumental-2020-20250407200937-500x500.jpg", "label": "Richard Ottis Charles", "title": "Blinding Lights", "artist": "Richard Ottis Charles", "albumId": "19430181", "artists": [ { "id": "7711852", "url": "https://www.jiosaavn.com/artist/richard-ottis-charles-songs/awX0l0YwlS8_", "name": "Richard Ottis Charles" } ], "trackId": "BSxZ4VTh", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights-piano-chill/VYzxR69R3OA_", "language": "instrumental", "copyright": "℗ 2020 Richard Ottis Charles", "hasLyrics": false, "playCount": 4, "durationMs": 216000, "isExplicit": false, "releaseYear": "2020" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/PR8qeTwHYHo", "type": "track", "album": "The Lockdown Sessions", "image": "https://c.saavncdn.com/686/The-Lockdown-Sessions-Instrumental-2020-20200909001234-500x500.jpg", "label": "Glas Quartet", "title": "Blinding Lights", "artist": "Glas Quartet", "albumId": "22384773", "artists": [ { "id": "8629309", "url": "https://www.jiosaavn.com/artist/glas-quartet-songs/K,blzeQT7ig_", "name": "Glas Quartet" } ], "trackId": "MwAHH7WI", "albumUrl": "https://www.jiosaavn.com/album/the-lockdown-sessions/VTL7YF4s6tY_", "language": "instrumental", "copyright": "℗ 2020 Glas Quartet", "hasLyrics": false, "playCount": 1, "durationMs": 205000, "isExplicit": false, "releaseYear": "2020" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/PQ0uegJTeGM", "type": "track", "album": "Blinding Lights (Remixes)", "image": "https://c.saavncdn.com/707/Blinding-Lights-Remixes--Instrumental-2021-20211012060517-500x500.jpg", "label": "Garage 90", "title": "Blinding Lights", "artist": "Taradu", "albumId": "30263561", "artists": [ { "id": "4442776", "url": "https://www.jiosaavn.com/artist/taradu-songs/vwDPpe6Td6A_", "name": "Taradu" } ], "trackId": "MeEKvcOP", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights-remixes/L9T6owPW5D4_", "language": "instrumental", "copyright": "℗ 2021 Garage 90", "hasLyrics": false, "playCount": 0, "durationMs": 301000, "isExplicit": false, "releaseYear": "2021" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/KTENQDdnbls", "type": "track", "album": "Blinding Lights (Remixes)", "image": "https://c.saavncdn.com/707/Blinding-Lights-Remixes--Instrumental-2021-20211012060517-500x500.jpg", "label": "Garage 90", "title": "Blinding Lights", "artist": "Taradu", "albumId": "30263561", "artists": [ { "id": "4442776", "url": "https://www.jiosaavn.com/artist/taradu-songs/vwDPpe6Td6A_", "name": "Taradu" } ], "trackId": "YYfqCWYh", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights-remixes/L9T6owPW5D4_", "language": "instrumental", "copyright": "℗ 2021 Garage 90", "hasLyrics": false, "playCount": 0, "durationMs": 310000, "isExplicit": false, "releaseYear": "2021" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/OiNcXUR,GlY", "type": "track", "album": "Covers, Vol. 2", "image": "https://c.saavncdn.com/699/Covers-Vol-2-Instrumental-2026-20260106110208-500x500.jpg", "label": "Midnight Library Records UK", "title": "Blinding Lights", "artist": "The Midnight Library", "albumId": "71344539", "artists": [ { "id": "23569770", "url": "https://www.jiosaavn.com/artist/the-midnight-library-songs/DneGDkzIpgc_", "name": "The Midnight Library" } ], "trackId": "JK7l0N-e", "albumUrl": "https://www.jiosaavn.com/album/covers-vol.-2/kPKvfSwpSV0_", "language": "instrumental", "copyright": "© 2026 The Weeknd, Harry Styles, The Neighbourhood, Drake, Lady Gaga, Bruno Mars, Tom Odell, Coldplay, SOLOMON, Miley Cyrus, Pheelz", "hasLyrics": false, "playCount": 1, "durationMs": 174000, "isExplicit": false, "releaseYear": "2026" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/My08BxlhXmI", "type": "track", "album": "Mainstream Overtures", "image": "https://c.saavncdn.com/809/Mainstream-Overtures-Instrumental-2026-20260505080135-500x500.jpg", "label": "Giacomo Bucci Music", "title": "Blinding Lights", "artist": "Giacomo Bucci", "albumId": "72045482", "artists": [ { "id": "1963372", "url": "https://www.jiosaavn.com/artist/giacomo-bucci-songs/CPdLcKhaR3c_", "name": "Giacomo Bucci" } ], "trackId": "CEW6mQiQ", "albumUrl": "https://www.jiosaavn.com/album/mainstream-overtures/2UEB2zbPo6w_", "language": "instrumental", "copyright": "© 2026 Original authors. Arrangement: Giacomo Bucci. Original publishers", "hasLyrics": false, "playCount": 0, "durationMs": 183000, "isExplicit": false, "releaseYear": "2026" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/HVsJWyRheWM", "type": "track", "album": "Blinding Lights", "image": "https://c.saavncdn.com/591/Blinding-Lights-Instrumental-2024-20241108081222-500x500.jpg", "label": "7clouds", "title": "Blinding Lights", "artist": "Joowel", "albumId": "59464652", "artists": [ { "id": "19876224", "url": "https://www.jiosaavn.com/artist/joowel-songs/8zMuispiWPI_", "name": "Joowel" } ], "trackId": "m3bjPQNP", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/83SauLgLNbA_", "language": "instrumental", "copyright": "© 2024 the Weeknd", "hasLyrics": false, "playCount": 0, "durationMs": 175000, "isExplicit": false, "releaseYear": "2024" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/AFlYc0FpUGw", "type": "track", "album": "Blinding Lights", "image": "https://c.saavncdn.com/592/Blinding-Lights-Instrumental-2025-20250205121102-500x500.jpg", "label": "Mxsclx GTR Playa", "title": "Blinding Lights", "artist": "Muscle GT", "albumId": "61779218", "artists": [ { "id": "15641487", "url": "https://www.jiosaavn.com/artist/muscle-gt-songs/UvdnHIeyzbI_", "name": "Muscle GT" } ], "trackId": "p13B5Yg_", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/lTdFjRk42UM_", "language": "instrumental", "copyright": "© 2025 The weekend", "hasLyrics": false, "playCount": 0, "durationMs": 178000, "isExplicit": false, "releaseYear": "2025" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/BQYRcC1XU0M", "type": "track", "album": "Blinding Lights (Remixes)", "image": "https://c.saavncdn.com/707/Blinding-Lights-Remixes--Instrumental-2021-20211012060517-500x500.jpg", "label": "Garage 90", "title": "Blinding Lights", "artist": "Taradu", "albumId": "30263561", "artists": [ { "id": "4442776", "url": "https://www.jiosaavn.com/artist/taradu-songs/vwDPpe6Td6A_", "name": "Taradu" } ], "trackId": "unzAYgdp", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights-remixes/L9T6owPW5D4_", "language": "instrumental", "copyright": "℗ 2021 Garage 90", "hasLyrics": false, "playCount": 3, "durationMs": 125000, "isExplicit": false, "releaseYear": "2021" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/QhEcXB9YWGU", "type": "track", "album": "Blinding Lights (Remixes)", "image": "https://c.saavncdn.com/707/Blinding-Lights-Remixes--Instrumental-2021-20211012060517-500x500.jpg", "label": "Garage 90", "title": "Blinding Lights", "artist": "Taradu", "albumId": "30263561", "artists": [ { "id": "4442776", "url": "https://www.jiosaavn.com/artist/taradu-songs/vwDPpe6Td6A_", "name": "Taradu" } ], "trackId": "2ywmkhoV", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights-remixes/L9T6owPW5D4_", "language": "instrumental", "copyright": "℗ 2021 Garage 90", "hasLyrics": false, "playCount": 0, "durationMs": 342000, "isExplicit": false, "releaseYear": "2021" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/GFAzXCZJXwY", "type": "track", "album": "Blinding Lights", "image": "https://c.saavncdn.com/764/Blinding-Lights-Instrumental-2024-20260512120428-500x500.jpg", "label": "TommyMuzzic", "title": "Blinding Lights", "artist": "TommyMuzzic", "albumId": "52221856", "artists": [ { "id": "16612924", "url": "https://www.jiosaavn.com/artist/tommymuzzic-songs/rtNeWt4NpzE_", "name": "TommyMuzzic" } ], "trackId": "h8XmRyh5", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/wnqBe9P5YZA_", "language": "instrumental", "copyright": "© 2024 the Weeknd", "hasLyrics": false, "playCount": 39, "durationMs": 200000, "isExplicit": false, "releaseYear": "2024" }, { "url": "https://www.jiosaavn.com/song/blinding-lights/PisCAQUFcH0", "type": "track", "album": "blinding lights", "image": "https://c.saavncdn.com/005/blinding-lights-Instrumental-2024-20241212132635-500x500.jpg", "label": "vom deich gechillt", "title": "blinding lights", "artist": "vom deich gechillt", "albumId": "60458718", "artists": [ { "id": "17497585", "url": "https://www.jiosaavn.com/artist/vom-deich-gechillt-songs/213PIxJ-DDs_", "name": "vom deich gechillt" } ], "trackId": "NCi0q5GN", "albumUrl": "https://www.jiosaavn.com/album/blinding-lights/e7KhcOriUVI_", "language": "instrumental", "copyright": "© 2024 vom deich gechillt", "hasLyrics": false, "playCount": 1, "durationMs": 347000, "isExplicit": false, "releaseYear": "2024" } ], "hasMore": true, "nextPage": 2 } ``` --- ### Song Detail Fetch full metadata for a single song by ID or URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:jiosaavn/song/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Track ID (e.g. UkVRAJEJ) OR canonical web URL with /song// path | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:jiosaavn/song/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:jiosaavn/song/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:jiosaavn/song/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "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" } ``` --- ### Playlist Detail Fetch playlist info with tracklist. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:jiosaavn/playlist/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Playlist token (URL last segment), numeric listid (e.g. 47599074), or full canonical playlist URL | | `limit` | number | query | no | Tracks per page (1-50). Default: 30 | | `page` | number | query | no | Page 1-based. Default: 1 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:jiosaavn/playlist/:id?limit=30&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:jiosaavn/playlist/:id?limit=30&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:jiosaavn/playlist/:id?limit=30&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "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 }, { "url": "https://www.jiosaavn.com/song/sitaare-from-ikkis/HwINSA5UBWA", "album": "Ikkis", "image": "https://c.saavncdn.com/988/Ikkis-Hindi-2025-20251226143212-500x500.jpg", "title": "Sitaare (From \"Ikkis\")", "artist": "Amitabh Bhattacharya, Arijit Singh, Sachin-Jigar", "albumId": "71039387", "trackId": "ojfyzd2S", "language": "hindi", "playCount": 15266184, "durationMs": 242000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/zara-sa/JjkbABFoQlQ", "album": "Jannat", "image": "https://c.saavncdn.com/801/Jannat-Hindi-2008-20190629135803-500x500.jpg", "title": "Zara Sa", "artist": "Sayeed Quadri, Pritam, KK", "albumId": "1031998", "trackId": "VQp1eXug", "language": "hindi", "playCount": 176369875, "durationMs": 302000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/aitbaar-from-chand-mera-dil/XVoRYxMET2Y", "album": "Aitbaar (From \"Chand Mera Dil\")", "image": "https://c.saavncdn.com/419/Aitbaar-From-Chand-Mera-Dil-Hindi-2026-20260421110433-500x500.jpg", "title": "Aitbaar (From \"Chand Mera Dil\")", "artist": "Amitabh Bhattacharya, Sachin-Jigar, Faheem Abdullah", "albumId": "74839157", "trackId": "-2zRg4xU", "language": "hindi", "playCount": 488177, "durationMs": 228000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/samjhawan/NCUEfRBHfQQ", "album": "Humpty Sharma Ki Dulhania", "image": "https://c.saavncdn.com/540/Humpty-Sharma-Ki-Dulhania-Hindi-2014-20190618095042-500x500.jpg", "title": "Samjhawan", "artist": "Jawad Ahmad, Sharib Toshi, Arijit Singh, Shreya Ghoshal", "albumId": "1161976", "trackId": "DMoLdwJ7", "language": "hindi", "playCount": 168946971, "durationMs": 269000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/ae-dil-hai-mushkil-title-track/Cg0AdD0DeQU", "album": "Ae Dil Hai Mushkil", "image": "https://c.saavncdn.com/257/Ae-Dil-Hai-Mushkil-Hindi-2016-500x500.jpg", "title": "Ae Dil Hai Mushkil Title Track", "artist": "Pritam, Arijit Singh", "albumId": "2597301", "trackId": "zekEI3N6", "language": "hindi", "playCount": 293219893, "durationMs": 268000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/hamari-adhuri-kahani-title-track/EScueywdQkE", "album": "Hamari Adhuri Kahani", "image": "https://c.saavncdn.com/577/Hamari-Adhuri-Kahani-Hindi-2015-500x500.jpg", "title": "Hamari Adhuri Kahani (Title Track)", "artist": "Jeet Gannguli, Arijit Singh, Rashmi-Virag", "albumId": "1243478", "trackId": "aOEJX-ur", "language": "hindi", "playCount": 210093326, "durationMs": 398000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/shayad/LxohXBZ7ZGM", "album": "Love Aaj Kal", "image": "https://c.saavncdn.com/862/Love-Aaj-Kal-Hindi-2020-20200214140423-500x500.jpg", "title": "Shayad", "artist": "Pritam, Arijit Singh", "albumId": "19072107", "trackId": "_rJmbKSP", "language": "hindi", "playCount": 324715956, "durationMs": 247000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/bandeya-from-dil-juunglee/MlgAZyd9RXA", "album": "Bandeya (From \"Dil Juunglee\")", "image": "https://c.saavncdn.com/267/Bandeya-From-Dil-Juunglee--Hindi-2018-20180222044014-500x500.jpg", "title": "Bandeya (From \"Dil Juunglee\")", "artist": "Sharib Toshi, Arijit Singh", "albumId": "12293787", "trackId": "B0kVSMrC", "language": "hindi", "playCount": 99213444, "durationMs": 185000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/mere-bina/BCc0dk1aeEc", "album": "Crook", "image": "https://c.saavncdn.com/330/Crook-Hindi-2010-20190603132556-500x500.jpg", "title": "Mere Bina", "artist": "Pritam, Nikhil D'souza", "albumId": "1024308", "trackId": "tO_G9jOt", "language": "hindi", "playCount": 37076914, "durationMs": 291000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/dekhha-tenu-from-mr.-and-mrs.-mahi/FD0kBzIGW30", "album": "Mr. And Mrs. Mahi", "image": "https://c.saavncdn.com/619/Mr-And-Mrs-Mahi-Hindi-2024-20240524142048-500x500.jpg", "title": "Dekhha Tenu (From \"Mr. And Mrs. Mahi\")", "artist": "Jaani, Mohammad Faiz", "albumId": "54613181", "trackId": "dUO6F6lN", "language": "hindi", "playCount": 24110035, "durationMs": 281000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/kesariya-from-brahmastra/NQotZhVbc0A", "album": "Kesariya (From \"Brahmastra\")", "image": "https://c.saavncdn.com/191/Kesariya-From-Brahmastra-Hindi-2022-20220717092820-500x500.jpg", "title": "Kesariya (From \"Brahmastra\")", "artist": "Pritam, Arijit Singh, Amitabh Bhattacharya", "albumId": "36552397", "trackId": "EbFWakDs", "language": "hindi", "playCount": 210475259, "durationMs": 268000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/aashiq-tera/PhodUBlCRwU", "album": "Happy Bhag Jayegi", "image": "https://c.saavncdn.com/189/Happy-Bhag-Jayegi-Hindi-2025-20250930143727-500x500.jpg", "title": "Aashiq Tera", "artist": "Sohail Sen, Altamash Faridi", "albumId": "33179525", "trackId": "Nrvamrp6", "language": "hindi", "playCount": 10691572, "durationMs": 294000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/tu-hi-haqeeqat/JwEndwJYbkM", "album": "Tum Mile", "image": "https://c.saavncdn.com/316/Tum-Mile-Hindi-2009-20260120201221-500x500.jpg", "title": "Tu Hi Haqeeqat", "artist": "Pritam, Javed Ali, Irshan Ashraf, Shadab, Sayeed Quadri", "albumId": "1052521", "trackId": "WiLFvhYp", "language": "hindi", "playCount": 66931814, "durationMs": 302000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/jannat-jahan/BiEHfkxFf1A", "album": "Jannat", "image": "https://c.saavncdn.com/801/Jannat-Hindi-2008-20190629135803-500x500.jpg", "title": "Jannat Jahan", "artist": "Pritam, Rupam Islam", "albumId": "1031998", "trackId": "vIlO8uHc", "language": "hindi", "playCount": 6463429, "durationMs": 223000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/tum-mile/IS4nSDBmTlU", "album": "Tum Mile", "image": "https://c.saavncdn.com/316/Tum-Mile-Hindi-2009-20260120201221-500x500.jpg", "title": "Tum Mile", "artist": "Pritam, Neeraj Shridhar", "albumId": "1052521", "trackId": "QFLyDVyf", "language": "hindi", "playCount": 49959383, "durationMs": 343000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/sang-hoon-tere/RiAaSxpyUAM", "album": "Jannat 2", "image": "https://c.saavncdn.com/584/Jannat-2-Hindi-2012-20260120201301-500x500.jpg", "title": "Sang Hoon Tere", "artist": "Sayeed Quadri, Pritam, Nikhil D'souza", "albumId": "1032000", "trackId": "6HqznBg0", "language": "hindi", "playCount": 15011718, "durationMs": 265000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/maahi/Ri0hdRxeRgc", "album": "RAAZ - The Mystery Continues", "image": "https://c.saavncdn.com/542/RAAZ-The-Mystery-Continues-Hindi-2008-20190617160418-500x500.jpg", "title": "Maahi", "artist": "Sharib Toshi, Sayeed Quadri", "albumId": "1044114", "trackId": "6EJDhnq4", "language": "hindi", "playCount": 43721847, "durationMs": 329000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/tujhe-sochta-hoon/NiQ9SQVaZGc", "album": "Jannat 2", "image": "https://c.saavncdn.com/584/Jannat-2-Hindi-2012-20260120201301-500x500.jpg", "title": "Tujhe Sochta Hoon", "artist": "Sayeed Quadri, Pritam, KK", "albumId": "1032000", "trackId": "FLVxqjST", "language": "hindi", "playCount": 57532471, "durationMs": 314000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/o-meri-jaan/EyA7e0IBR2Y", "album": "Life In A Metro", "image": "https://c.saavncdn.com/457/Life-In-A-Metro-Hindi-2007-20220321185258-500x500.jpg", "title": "O Meri Jaan", "artist": "Pritam, KK", "albumId": "1036139", "trackId": "cHPJ61pU", "language": "hindi", "playCount": 6501220, "durationMs": 305000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/in-dino/Iz4naBdBQQU", "album": "Life In A Metro", "image": "https://c.saavncdn.com/457/Life-In-A-Metro-Hindi-2007-20220321185258-500x500.jpg", "title": "In Dino", "artist": "Pritam, Soham, Sayeed Quadri", "albumId": "1036139", "trackId": "SVLYcqv6", "language": "hindi", "playCount": 20730717, "durationMs": 397000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/dil-ibaadat/HgdfZERjZwM", "album": "Tum Mile", "image": "https://c.saavncdn.com/316/Tum-Mile-Hindi-2009-20260120201221-500x500.jpg", "title": "Dil Ibaadat", "artist": "Pritam, KK, Sayeed Quadri", "albumId": "1052521", "trackId": "no4U0SP0", "language": "hindi", "playCount": 113870515, "durationMs": 329000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/sanam-teri-kasam/GB4-dAV4WFs", "album": "Sanam Teri Kasam", "image": "https://c.saavncdn.com/150/Sanam-Teri-Kasam-Hindi-2025-20260404111304-500x500.jpg", "title": "Sanam Teri Kasam", "artist": "Himesh Reshammiya, Ankit Tiwari, Palak Muchhal", "albumId": "33008911", "trackId": "hvTEqHoh", "language": "hindi", "playCount": 76497068, "durationMs": 314000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/tere-bina%c2%a0/BQEfSw1bTQs", "album": "Guru", "image": "https://c.saavncdn.com/020/Guru-Hindi-2006-20190516131307-500x500.jpg", "title": "Tere Bina ", "artist": "A.R. Rahman, Chinmayi, Murtuza Khan, Qadir Khan", "albumId": "1028969", "trackId": "uitzykz8", "language": "hindi", "playCount": 42817764, "durationMs": 309000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/mann-mera-original-version/JF48Bwx1eFY", "album": "Mann Mera (Original Version)", "image": "https://c.saavncdn.com/451/Mann-Mera-Original-Version-Hindi-2025-20250508175517-500x500.jpg", "title": "Mann Mera (Original Version)", "artist": "Gajendra Verma", "albumId": "64424344", "trackId": "T6W6xEOe", "language": "hindi", "playCount": 9260345, "durationMs": 228000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/raataan-lambiyan/HTg-QzBjQl0", "album": "Shershaah", "image": "https://c.saavncdn.com/238/Shershaah-Original-Motion-Picture-Soundtrack--Hindi-2021-20210815181610-500x500.jpg", "title": "Raataan Lambiyan", "artist": "Tanishk Bagchi, Jubin Nautiyal, Asees Kaur", "albumId": "29060166", "trackId": "mPTrDSun", "language": "hindi", "playCount": 477588401, "durationMs": 230000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/koi-naa-from-bhool-chuk-maaf/QC0SayVxUWs", "album": "Koi Naa (From \"Bhool Chuk Maaf\")", "image": "https://c.saavncdn.com/620/Koi-Naa-From-Bhool-Chuk-Maaf-Hindi-2025-20250416112929-500x500.jpg", "title": "Koi Naa (From \"Bhool Chuk Maaf\")", "artist": "Tanishk Bagchi, Gifty, Harnoor, Shreya Ghoshal, Irshad Kamil", "albumId": "63815497", "trackId": "0EyZQAfX", "language": "hindi", "playCount": 4739054, "durationMs": 221000, "isExplicit": false }, { "url": "https://www.jiosaavn.com/song/ishq-di-baajiyaan/XRIMUC5Dc1Q", "album": "Soorma", "image": "https://c.saavncdn.com/193/Soorma-Hindi-2018-20180702111043-500x500.jpg", "title": "Ishq Di Baajiyaan", "artist": "Diljit Dosanjh, Shankar-Ehsaan-Loy", "albumId": "13301671", "trackId": "-zgaZsDg", "language": "hindi", "playCount": 22601697, "durationMs": 287000, "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 } ``` --- ### Album Detail Fetch album info with its tracklist. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:jiosaavn/album/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Album token (last URL segment) or full canonical album URL | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:jiosaavn/album/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:jiosaavn/album/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:jiosaavn/album/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "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" } ``` --- ## Mixcloud **Category:** music · **Slug:** `mixcloud` **Detail page:** https://zpi.web.id/api/music/mixcloud Search music mixes and shows. **Tags:** music ### Search Search music mixes and shows. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:mixcloud/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search term | | `type` | enum(cloudcast|user|tag) | query | no | Search type. Default cloudcast | | `limit` | number | query | no | Items count (1-100). Default 20 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:mixcloud/search?query=house%20mix&type=cloudcast&limit=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:mixcloud/search?query=house%20mix&type=cloudcast&limit=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:mixcloud/search?query=house%20mix&type=cloudcast&limit=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "data": [ { "key": "/globalsoulradio/dj-morella-soulful-house-mix-december-2022/", "url": "https://www.mixcloud.com/globalsoulradio/dj-morella-soulful-house-mix-december-2022/", "name": "DJ Morella Soulful House Mix December 2022", "slug": "dj-morella-soulful-house-mix-december-2022", "tags": [ { "key": "/genres/soulful-house/", "url": "https://www.mixcloud.com/genres/soulful-house/", "name": "Soulful house" }, { "key": "/genres/dj-mix/", "url": "https://www.mixcloud.com/genres/dj-mix/", "name": "DJ MIX" }, { "key": "/genres/house-music/", "url": "https://www.mixcloud.com/genres/house-music/", "name": "House music" }, { "key": "/genres/nigeria/", "url": "https://www.mixcloud.com/genres/nigeria/", "name": "Nigeria" }, { "key": "/genres/dance-music/", "url": "https://www.mixcloud.com/genres/dance-music/", "name": "Dance Music" } ], "user": { "key": "/globalsoulradio/", "url": "https://www.mixcloud.com/globalsoulradio/", "name": "Global Soul", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/9/1/0/a/7437-1d71-469f-9409-009f837b23ee" }, "username": "globalsoulradio" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/2/f/f/2/b33f-708b-4ea4-af41-b56835668d7a" }, "play_count": 986, "audio_length": 3551, "created_time": "2022-12-26T22:14:57Z", "repost_count": 4, "updated_time": "2026-05-26T14:31:27Z", "comment_count": 0, "favorite_count": 29, "listener_count": 321 }, { "key": "/houseproducer/mega-mix-2024-vol-iv-commercial-dance-edm-pop-house-mixed-by-djokthe-palace-of-storms/", "url": "https://www.mixcloud.com/houseproducer/mega-mix-2024-vol-iv-commercial-dance-edm-pop-house-mixed-by-djokthe-palace-of-storms/", "name": "Mega Mix 2024 Vol. IV - Commercial Dance, EDM, Pop, House mixed by DJOK!@The Palace Of Storms", "slug": "mega-mix-2024-vol-iv-commercial-dance-edm-pop-house-mixed-by-djokthe-palace-of-storms", "tags": [ { "key": "/genres/edm-dance-house-pop/", "url": "https://www.mixcloud.com/genres/edm-dance-house-pop/", "name": "EDM, Dance, House, POP" }, { "key": "/genres/oliver-djok-knoblich-houseproducer-dopeproducer/", "url": "https://www.mixcloud.com/genres/oliver-djok-knoblich-houseproducer-dopeproducer/", "name": "Oliver DJOK Knoblich Houseproducer Dopeproducer" }, { "key": "/genres/new-set-mix-non-stop-club/", "url": "https://www.mixcloud.com/genres/new-set-mix-non-stop-club/", "name": "New, Set, Mix, Non Stop, Club" } ], "user": { "key": "/houseproducer/", "url": "https://www.mixcloud.com/houseproducer/", "name": "Oliver DJOK! Knoblich", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/6/3/f/f/df2f-6a32-47b2-8ed0-b9bdb3bcce1e" }, "username": "houseproducer" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/b/5/6/a/221d-9d9c-4800-b103-f01b990d2d7d" }, "play_count": 1667, "audio_length": 10839, "created_time": "2024-11-23T13:47:39Z", "repost_count": 1, "updated_time": "2026-05-27T12:10:42Z", "comment_count": 2, "favorite_count": 58, "listener_count": 352 }, { "key": "/CrackMagazine/diva-house-mixed-by-la-neve/", "url": "https://www.mixcloud.com/CrackMagazine/diva-house-mixed-by-la-neve/", "name": "Diva house – Mixed by La Neve", "slug": "diva-house-mixed-by-la-neve", "tags": [ { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/diva/", "url": "https://www.mixcloud.com/genres/diva/", "name": "Diva" }, { "key": "/genres/disco/", "url": "https://www.mixcloud.com/genres/disco/", "name": "Disco" } ], "user": { "key": "/CrackMagazine/", "url": "https://www.mixcloud.com/CrackMagazine/", "name": "Crack Magazine", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74" }, "username": "CrackMagazine" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/6/d/a/0/e5cf-83b4-4fef-b424-3828a8ae873e" }, "play_count": 0, "audio_length": 2787, "created_time": "2019-12-13T22:12:00Z", "hidden_stats": true, "repost_count": 0, "updated_time": "2026-05-25T14:59:08Z", "comment_count": 0, "favorite_count": 0, "listener_count": 0 }, { "key": "/mellowvibeandjazzwithziggy/manila-suave-house/", "url": "https://www.mixcloud.com/mellowvibeandjazzwithziggy/manila-suave-house/", "name": "MANILA SUAVE HOUSE MIX", "slug": "manila-suave-house", "tags": [ { "key": "/genres/disco/", "url": "https://www.mixcloud.com/genres/disco/", "name": "Disco" }, { "key": "/genres/house-music/", "url": "https://www.mixcloud.com/genres/house-music/", "name": "House music" }, { "key": "/genres/retro-house/", "url": "https://www.mixcloud.com/genres/retro-house/", "name": "Retro house" }, { "key": "/genres/clubmanila/", "url": "https://www.mixcloud.com/genres/clubmanila/", "name": "Clubmanila" } ], "user": { "key": "/mellowvibeandjazzwithziggy/", "url": "https://www.mixcloud.com/mellowvibeandjazzwithziggy/", "name": "MELLOW VIBE & JAZZ W/ ZIGGY", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/a/a/e/2/ce61-f439-4228-82ed-57227768f864" }, "username": "mellowvibeandjazzwithziggy" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/6/0/a/6/4154-7973-491f-b204-a1741dd05e30" }, "play_count": 661, "audio_length": 4168, "created_time": "2020-02-18T07:11:03Z", "repost_count": 0, "updated_time": "2026-05-13T21:47:44Z", "comment_count": 0, "favorite_count": 23, "listener_count": 216 }, { "key": "/thefaceradiobk/midnight-riot-with-yam-who-special-mix-from-maison-de-house-191121/", "url": "https://www.mixcloud.com/thefaceradiobk/midnight-riot-with-yam-who-special-mix-from-maison-de-house-191121/", "name": "Midnight Riot with Yam Who? + Special Mix from Maison De House // 19/11/21", "slug": "midnight-riot-with-yam-who-special-mix-from-maison-de-house-191121", "tags": [ { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/disco/", "url": "https://www.mixcloud.com/genres/disco/", "name": "Disco" }, { "key": "/genres/guest-mix/", "url": "https://www.mixcloud.com/genres/guest-mix/", "name": "Guest Mix" } ], "user": { "key": "/thefaceradiobk/", "url": "https://www.mixcloud.com/thefaceradiobk/", "name": "The Face Radio", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/f/6/a/a/7622-fc89-4621-be94-08584b809b5e" }, "username": "thefaceradiobk" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/e/9/d/c/67cb-bcac-43e0-a38f-ac231f504514" }, "play_count": 0, "audio_length": 7184, "created_time": "2021-11-20T06:45:00Z", "hidden_stats": true, "repost_count": 0, "updated_time": "2026-05-27T06:21:41Z", "comment_count": 0, "favorite_count": 0, "listener_count": 0 }, { "key": "/DJDayDay-1/djdayday_-the-funky-house-mix/", "url": "https://www.mixcloud.com/DJDayDay-1/djdayday_-the-funky-house-mix/", "name": "@DJDAYDAY_ / The Funky House Mix", "slug": "djdayday_-the-funky-house-mix", "tags": [ { "key": "/genres/funky-house/", "url": "https://www.mixcloud.com/genres/funky-house/", "name": "Funky house" }, { "key": "/genres/uk-funky/", "url": "https://www.mixcloud.com/genres/uk-funky/", "name": "UK funky" } ], "user": { "key": "/DJDayDay-1/", "url": "https://www.mixcloud.com/DJDayDay-1/", "name": "DJDAYDAY_", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/d/5/f/6/59bb-e5c3-43a5-92dc-2a16bd4637d4" }, "username": "DJDayDay-1" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/0/e/c/7/6268-c511-4cfd-8c58-6d3bf8341427" }, "play_count": 135728, "audio_length": 4559, "created_time": "2020-06-24T10:57:26Z", "repost_count": 148, "updated_time": "2026-05-27T13:04:55Z", "comment_count": 19, "favorite_count": 2984, "listener_count": 63931 }, { "key": "/MalibuRum/play-3-marvin-humes-summertime-beach-house-mix/", "url": "https://www.mixcloud.com/MalibuRum/play-3-marvin-humes-summertime-beach-house-mix/", "name": "Play 3: Marvin Humes' Summertime Beach House Mix", "slug": "play-3-marvin-humes-summertime-beach-house-mix", "tags": [ { "key": "/genres/funk/", "url": "https://www.mixcloud.com/genres/funk/", "name": "Funk" }, { "key": "/genres/soul/", "url": "https://www.mixcloud.com/genres/soul/", "name": "Soul" }, { "key": "/genres/malibu/", "url": "https://www.mixcloud.com/genres/malibu/", "name": "Malibu" }, { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/garage/", "url": "https://www.mixcloud.com/genres/garage/", "name": "Garage" } ], "user": { "key": "/MalibuRum/", "url": "https://www.mixcloud.com/MalibuRum/", "name": "Malibu Play", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png" }, "username": "MalibuRum" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/9/5/b/7/5917-0adc-48c4-a176-6d0ce99a74f5.jpg" }, "play_count": 159590, "audio_length": 3516, "created_time": "2013-08-27T12:30:08Z", "repost_count": 267, "updated_time": "2026-05-26T16:46:51Z", "comment_count": 66, "favorite_count": 2933, "listener_count": 46017 }, { "key": "/BeatGeeksRadio/dj-legions-sunday-deep-chill-house-mix-070724/", "url": "https://www.mixcloud.com/BeatGeeksRadio/dj-legions-sunday-deep-chill-house-mix-070724/", "name": "DJ Legion’s Sunday Deep Chill House Mix 07.07.24", "slug": "dj-legions-sunday-deep-chill-house-mix-070724", "tags": [ { "key": "/genres/deep-house/", "url": "https://www.mixcloud.com/genres/deep-house/", "name": "Deep house" }, { "key": "/genres/chillout/", "url": "https://www.mixcloud.com/genres/chillout/", "name": "Chillout" }, { "key": "/genres/lounge-music/", "url": "https://www.mixcloud.com/genres/lounge-music/", "name": "Lounge music" }, { "key": "/genres/easy-listening/", "url": "https://www.mixcloud.com/genres/easy-listening/", "name": "Easy listening" }, { "key": "/genres/background-music/", "url": "https://www.mixcloud.com/genres/background-music/", "name": "Background music" } ], "user": { "key": "/BeatGeeksRadio/", "url": "https://www.mixcloud.com/BeatGeeksRadio/", "name": "Beat Geeks Radio", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5" }, "username": "BeatGeeksRadio" }, "hosts": [ { "key": "/djLegionno1/", "url": "https://www.mixcloud.com/djLegionno1/", "name": "dj Legion", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/e/6/b/b/9c48-7d04-41f2-b38d-75c7d3e31f23" }, "username": "djLegionno1" } ], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/7/3/b/8/35e8-d1cb-42a3-8119-e0ed6507f00e" }, "play_count": 329, "audio_length": 7395, "created_time": "2024-07-08T15:17:13Z", "repost_count": 23, "updated_time": "2026-05-26T17:13:22Z", "comment_count": 9, "favorite_count": 38, "listener_count": 131 }, { "key": "/MalibuRum/play-7-dj-kaypers-lets-go-deep-house-mix/", "url": "https://www.mixcloud.com/MalibuRum/play-7-dj-kaypers-lets-go-deep-house-mix/", "name": "Play 7: DJ Kayper's \"Let's Go Deep\" House Mix", "slug": "play-7-dj-kaypers-lets-go-deep-house-mix", "tags": [ { "key": "/genres/malibu-play/", "url": "https://www.mixcloud.com/genres/malibu-play/", "name": "Malibu Play" }, { "key": "/genres/dj-kayper/", "url": "https://www.mixcloud.com/genres/dj-kayper/", "name": "DJ Kayper" }, { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/deep-house/", "url": "https://www.mixcloud.com/genres/deep-house/", "name": "Deep house" } ], "user": { "key": "/MalibuRum/", "url": "https://www.mixcloud.com/MalibuRum/", "name": "Malibu Play", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/2/e/3/f/54d8-04a0-4103-a6fd-7c5811c8cc52.png" }, "username": "MalibuRum" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/d/7/3/2/7542-b026-49f6-85bc-d1009013f583.jpg" }, "play_count": 154049, "audio_length": 3685, "created_time": "2014-01-29T13:17:37Z", "repost_count": 316, "updated_time": "2026-05-27T09:48:49Z", "comment_count": 83, "favorite_count": 2846, "listener_count": 43554 }, { "key": "/djchillx/best-of-house-music-superman-house-mix-by-dj-chill-x/", "url": "https://www.mixcloud.com/djchillx/best-of-house-music-superman-house-mix-by-dj-chill-x/", "name": "Best of House Music - Superman House Mix by DJ Chill X", "slug": "best-of-house-music-superman-house-mix-by-dj-chill-x", "tags": [ { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/club-house/", "url": "https://www.mixcloud.com/genres/club-house/", "name": "Club House" }, { "key": "/genres/house-music/", "url": "https://www.mixcloud.com/genres/house-music/", "name": "House music" }, { "key": "/genres/club-classics/", "url": "https://www.mixcloud.com/genres/club-classics/", "name": "Club classics" }, { "key": "/genres/soulful-house/", "url": "https://www.mixcloud.com/genres/soulful-house/", "name": "Soulful house" } ], "user": { "key": "/djchillx/", "url": "https://www.mixcloud.com/djchillx/", "name": "DJ Chill X", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/6/3/3/7/e26b-16c3-4153-853c-d44dec6c6ca6" }, "username": "djchillx" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/8/a/1/1/d0ff-c148-405f-aedb-1e27a043046d.jpg" }, "play_count": 127346, "audio_length": 2842, "created_time": "2015-03-15T00:40:56Z", "repost_count": 306, "updated_time": "2026-05-27T11:47:43Z", "comment_count": 78, "favorite_count": 3654, "listener_count": 51563 }, { "key": "/KaneFM/naughtys-night-shift-88-90-house-mix/", "url": "https://www.mixcloud.com/KaneFM/naughtys-night-shift-88-90-house-mix/", "name": "NAUGHTYS NIGHT SHIFT - 88-90 HOUSE MIX", "slug": "naughtys-night-shift-88-90-house-mix", "tags": [ { "key": "/genres/dj-naughty/", "url": "https://www.mixcloud.com/genres/dj-naughty/", "name": "DJ Naughty" }, { "key": "/genres/old-skool/", "url": "https://www.mixcloud.com/genres/old-skool/", "name": "Old skool" }, { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/kanefm/", "url": "https://www.mixcloud.com/genres/kanefm/", "name": "KaneFM" }, { "key": "/genres/acid/", "url": "https://www.mixcloud.com/genres/acid/", "name": "Acid" } ], "user": { "key": "/KaneFM/", "url": "https://www.mixcloud.com/KaneFM/", "name": "Kane FM", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc" }, "username": "KaneFM" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/a/9/f/c/62bf-acc8-4925-81ed-b97cfe4a074e.jpg" }, "play_count": 607, "audio_length": 7200, "created_time": "2012-05-13T18:58:00Z", "repost_count": 1, "updated_time": "2026-05-26T16:38:24Z", "comment_count": 3, "favorite_count": 25, "listener_count": 110 }, { "key": "/KaneFM/richard-noise-kane-fm-old-school-house-mix-03062012/", "url": "https://www.mixcloud.com/KaneFM/richard-noise-kane-fm-old-school-house-mix-03062012/", "name": "Richard Noise - Kane Fm - Old School House Mix - 03.06.2012", "slug": "richard-noise-kane-fm-old-school-house-mix-03062012", "tags": [ { "key": "/genres/kane-fm/", "url": "https://www.mixcloud.com/genres/kane-fm/", "name": "Kane FM" }, { "key": "/genres/old-school-house/", "url": "https://www.mixcloud.com/genres/old-school-house/", "name": "Old School House" }, { "key": "/genres/richard-noise/", "url": "https://www.mixcloud.com/genres/richard-noise/", "name": "Richard Noise" }, { "key": "/genres/live-radio-show/", "url": "https://www.mixcloud.com/genres/live-radio-show/", "name": "Live radio show" } ], "user": { "key": "/KaneFM/", "url": "https://www.mixcloud.com/KaneFM/", "name": "Kane FM", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/d/0/9/6/67b9-4b0d-40b5-b69d-73ae62a5bdcc" }, "username": "KaneFM" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/6/8/4/3/b2bf-0097-4494-b810-c3a265025b3d.jpg" }, "play_count": 295, "audio_length": 7199, "created_time": "2012-06-05T20:17:12Z", "repost_count": 0, "updated_time": "2026-05-03T11:54:57Z", "comment_count": 0, "favorite_count": 10, "listener_count": 87 }, { "key": "/8ballradio/chef-jimmy-thomas-aka-abyss-120-somewhere-in-new-york-disco-house-mix/", "url": "https://www.mixcloud.com/8ballradio/chef-jimmy-thomas-aka-abyss-120-somewhere-in-new-york-disco-house-mix/", "name": "Chef Jimmy Thomas (AKA Abyss 120) - Somewhere In New York - Disco House Mix", "slug": "chef-jimmy-thomas-aka-abyss-120-somewhere-in-new-york-disco-house-mix", "tags": [ { "key": "/genres/deep-house/", "url": "https://www.mixcloud.com/genres/deep-house/", "name": "Deep house" }, { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/disco/", "url": "https://www.mixcloud.com/genres/disco/", "name": "Disco" } ], "user": { "key": "/8ballradio/", "url": "https://www.mixcloud.com/8ballradio/", "name": "8 Ball Radio", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/6/a/5/b/ef32-0a28-481b-928c-2be8447aeb0d" }, "username": "8ballradio" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/3/d/2/8/11ab-a338-4b66-a7bf-fb3c7914d848" }, "play_count": 92, "audio_length": 6821, "created_time": "2022-02-19T16:00:59Z", "repost_count": 0, "updated_time": "2026-05-21T21:11:02Z", "comment_count": 0, "favorite_count": 1, "listener_count": 24 }, { "key": "/Defectedrecords/defected-ibiza-2023/", "url": "https://www.mixcloud.com/Defectedrecords/defected-ibiza-2023/", "name": "Defected Ibiza 2023- Summer House Mix (Deep, Tech, Vocal, Chilled)", "slug": "defected-ibiza-2023", "tags": [ { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/tech-house/", "url": "https://www.mixcloud.com/genres/tech-house/", "name": "Tech house" }, { "key": "/genres/deep-house/", "url": "https://www.mixcloud.com/genres/deep-house/", "name": "Deep house" }, { "key": "/genres/tribal-house/", "url": "https://www.mixcloud.com/genres/tribal-house/", "name": "Tribal house" }, { "key": "/genres/techno/", "url": "https://www.mixcloud.com/genres/techno/", "name": "Techno" } ], "user": { "key": "/Defectedrecords/", "url": "https://www.mixcloud.com/Defectedrecords/", "name": "Defected Records", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/3/0/7/2/a171-b097-4d59-9668-464a03fe5a73" }, "username": "Defectedrecords" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/5/f/6/2/3d0e-b550-4400-8918-d518efe32e60" }, "play_count": 41452, "audio_length": 7312, "created_time": "2023-05-23T12:52:53Z", "repost_count": 133, "updated_time": "2026-05-27T12:44:17Z", "comment_count": 30, "favorite_count": 1829, "listener_count": 20653 }, { "key": "/PorterRobinson/the-deep-the-dark-the-progressive-dark-progressive-house-mix/", "url": "https://www.mixcloud.com/PorterRobinson/the-deep-the-dark-the-progressive-dark-progressive-house-mix/", "name": "The Deep, The Dark, The Progressive - Dark Progressive house mix", "slug": "the-deep-the-dark-the-progressive-dark-progressive-house-mix", "tags": [ { "key": "/genres/deep-dark-progressive/", "url": "https://www.mixcloud.com/genres/deep-dark-progressive/", "name": "Deep & Dark Progressive" }, { "key": "/genres/progressive-house/", "url": "https://www.mixcloud.com/genres/progressive-house/", "name": "Progressive house" }, { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" } ], "user": { "key": "/PorterRobinson/", "url": "https://www.mixcloud.com/PorterRobinson/", "name": "Porter Robinson", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/7/e/e/a/8594-abf7-4c28-bb46-e6a66c42d160.jpg" }, "username": "PorterRobinson" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/9/c/2/0/070b-67f0-4356-9665-2dcafed66c41.jpg" }, "play_count": 55051, "audio_length": 3605, "created_time": "2015-02-27T17:07:58Z", "repost_count": 389, "updated_time": "2026-05-27T13:06:56Z", "comment_count": 91, "favorite_count": 2466, "listener_count": 17453 }, { "key": "/BeatGeeksRadio/legions-afro-amapiano-house-mix-290325/", "url": "https://www.mixcloud.com/BeatGeeksRadio/legions-afro-amapiano-house-mix-290325/", "name": "Legion's Afro Amapiano House Mix (29.03.25)", "slug": "legions-afro-amapiano-house-mix-290325", "tags": [ { "key": "/genres/amapiano/", "url": "https://www.mixcloud.com/genres/amapiano/", "name": "Amapiano" }, { "key": "/genres/afro-house/", "url": "https://www.mixcloud.com/genres/afro-house/", "name": "Afro house" }, { "key": "/genres/tribal-house/", "url": "https://www.mixcloud.com/genres/tribal-house/", "name": "Tribal house" }, { "key": "/genres/deep-house/", "url": "https://www.mixcloud.com/genres/deep-house/", "name": "Deep house" }, { "key": "/genres/afrobeat/", "url": "https://www.mixcloud.com/genres/afrobeat/", "name": "Afrobeat" } ], "user": { "key": "/BeatGeeksRadio/", "url": "https://www.mixcloud.com/BeatGeeksRadio/", "name": "Beat Geeks Radio", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5" }, "username": "BeatGeeksRadio" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/c/d/b/8/df36-3dea-4f4f-b45e-bb2fbbdc9b9f" }, "play_count": 107, "audio_length": 7021, "created_time": "2025-04-07T07:55:06Z", "repost_count": 11, "updated_time": "2026-05-26T16:51:25Z", "comment_count": 0, "favorite_count": 16, "listener_count": 34 }, { "key": "/er23971/dj-ellie-pop-electro-house-mix-0119/", "url": "https://www.mixcloud.com/er23971/dj-ellie-pop-electro-house-mix-0119/", "name": "DJ Ellie pop / electro house mix 0119", "slug": "dj-ellie-pop-electro-house-mix-0119", "tags": [ { "key": "/genres/pop/", "url": "https://www.mixcloud.com/genres/pop/", "name": "Pop" }, { "key": "/genres/electro-house/", "url": "https://www.mixcloud.com/genres/electro-house/", "name": "Electro house" } ], "user": { "key": "/er23971/", "url": "https://www.mixcloud.com/er23971/", "name": "DJ Ellie", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/8/0/9/f/2e38-de8e-4fe1-96cb-3d1dbbef3fc4" }, "username": "er23971" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/2/d/1/6/27eb-f6e1-4aac-9746-13ccb91ba89f.jpg" }, "play_count": 63724, "audio_length": 1767, "created_time": "2013-01-20T15:56:27Z", "repost_count": 124, "updated_time": "2026-05-27T05:29:37Z", "comment_count": 103, "favorite_count": 1954, "listener_count": 14331 }, { "key": "/BeatGeeksRadio/the-funky-dutch-classic-house-mix-050526/", "url": "https://www.mixcloud.com/BeatGeeksRadio/the-funky-dutch-classic-house-mix-050526/", "name": "The Funky Dutch - Classic House Mix (05.05.26)", "slug": "the-funky-dutch-classic-house-mix-050526", "tags": [ { "key": "/genres/live-dj-blends/", "url": "https://www.mixcloud.com/genres/live-dj-blends/", "name": "Live DJ blends" }, { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/classics/", "url": "https://www.mixcloud.com/genres/classics/", "name": "Classics" }, { "key": "/genres/funky-house/", "url": "https://www.mixcloud.com/genres/funky-house/", "name": "Funky house" }, { "key": "/genres/soulful-house/", "url": "https://www.mixcloud.com/genres/soulful-house/", "name": "Soulful house" } ], "user": { "key": "/BeatGeeksRadio/", "url": "https://www.mixcloud.com/BeatGeeksRadio/", "name": "Beat Geeks Radio", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/6/d/c/5/fd7e-3a66-4119-bc9e-17e4848f89c5" }, "username": "BeatGeeksRadio" }, "hosts": [ { "key": "/DJPatTheFunkyDutch/", "url": "https://www.mixcloud.com/DJPatTheFunkyDutch/", "name": "The Funky Dutch", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/2/f/9/f/04e8-d727-4de7-bb56-8a99920a1095" }, "username": "DJPatTheFunkyDutch" } ], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/0/b/0/7/d590-c6e9-4b59-bedf-ba2b1e82e1ee" }, "play_count": 67, "audio_length": 6164, "created_time": "2026-05-06T10:41:54Z", "repost_count": 5, "updated_time": "2026-05-23T20:50:06Z", "comment_count": 1, "favorite_count": 18, "listener_count": 34 }, { "key": "/CrackMagazine/early-chicago-house-mixed-by-jamie-326/", "url": "https://www.mixcloud.com/CrackMagazine/early-chicago-house-mixed-by-jamie-326/", "name": "Raw Chicago house tapes – Mixed by Jamie 3:26", "slug": "early-chicago-house-mixed-by-jamie-326", "tags": [ { "key": "/genres/house/", "url": "https://www.mixcloud.com/genres/house/", "name": "House" }, { "key": "/genres/chicago-house/", "url": "https://www.mixcloud.com/genres/chicago-house/", "name": "Chicago house" }, { "key": "/genres/lo-fi/", "url": "https://www.mixcloud.com/genres/lo-fi/", "name": "Lo-fi" } ], "user": { "key": "/CrackMagazine/", "url": "https://www.mixcloud.com/CrackMagazine/", "name": "Crack Magazine", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/2/d/c/1/0ffc-ce00-4b66-b1d5-8fb14f3a2d74" }, "username": "CrackMagazine" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/extaudio/8/0/9/8/d60c-973f-49f8-84ea-175c17bfb04a" }, "play_count": 0, "audio_length": 3750, "created_time": "2020-04-01T14:10:42Z", "hidden_stats": true, "repost_count": 0, "updated_time": "2026-05-27T10:48:46Z", "comment_count": 2, "favorite_count": 0, "listener_count": 0 }, { "key": "/tommie-allen/2020-house-ix-vol-1/", "url": "https://www.mixcloud.com/tommie-allen/2020-house-ix-vol-1/", "name": "2020 HOUSE MIX VOL 1", "slug": "2020-house-ix-vol-1", "tags": [], "user": { "key": "/tommie-allen/", "url": "https://www.mixcloud.com/tommie-allen/", "name": "Tommie Allen", "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83" }, "username": "tommie-allen" }, "hosts": [], "pictures": { "large": "https://thumbnailer.mixcloud.com/unsafe/300x300/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "small": "https://thumbnailer.mixcloud.com/unsafe/25x25/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "medium": "https://thumbnailer.mixcloud.com/unsafe/100x100/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "320wx320h": "https://thumbnailer.mixcloud.com/unsafe/320x320/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "640wx640h": "https://thumbnailer.mixcloud.com/unsafe/640x640/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "768wx768h": "https://thumbnailer.mixcloud.com/unsafe/768x768/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "thumbnail": "https://thumbnailer.mixcloud.com/unsafe/50x50/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "1024wx1024h": "https://thumbnailer.mixcloud.com/unsafe/1024x1024/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "extra_large": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83", "medium_mobile": "https://thumbnailer.mixcloud.com/unsafe/80x80/profile/d/e/e/1/1998-84c0-40c6-9084-80b8ad245e83" }, "play_count": 30812, "audio_length": 3684, "created_time": "2020-01-23T01:11:07Z", "repost_count": 55, "updated_time": "2026-05-27T13:16:46Z", "comment_count": 43, "favorite_count": 656, "listener_count": 13134 } ], "type": "cloudcast", "paging": { "next": "https://api.mixcloud.com/search/?limit=20&offset=20&q=house+mix&type=cloudcast" } } ``` --- ## MusicBrainz **Category:** music · **Slug:** `musicbrainz` **Detail page:** https://zpi.web.id/api/music/musicbrainz Search music metadata. **Tags:** music, metadata ### Search Search music metadata. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:musicbrainz/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Lucene query (title, artist, etc.) | | `entity` | enum(recording|artist|release) | query | no | Entity: recording\|artist\|release. Default recording | | `limit` | number | query | no | Items count (1-100). Default 25 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:musicbrainz/search?query=blinding%20lights&entity=recording&limit=25" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:musicbrainz/search?query=blinding%20lights&entity=recording&limit=25", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:musicbrainz/search?query=blinding%20lights&entity=recording&limit=25", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 72529, "entity": "recording", "offset": 0, "created": "2026-05-27T13:19:06.668Z", "recordings": [ { "id": "9a73ed57-8a52-438e-94da-1e019a8c2211", "score": 100, "title": "Blinding Lights", "video": null, "length": 240000, "releases": [ { "id": "90211794-84af-4673-9b9e-7c0f577b00b2", "count": 1, "media": [ { "id": "431f93b4-fa84-325e-9e89-f5db901483c3", "track": [ { "id": "e3be20b8-47d9-397e-8163-94a3ed883e71", "title": "Blinding Lights", "length": 240000, "number": "5" } ], "format": "CD", "position": 1, "track-count": 9, "track-offset": 4 } ], "title": "Mathematica", "status": "Official", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 9, "release-group": { "id": "d676856c-dd2b-4df8-90d4-59635ee0419c", "title": "Mathematica", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" } } ], "artist-credit": [ { "name": "Makeshift Prodigy", "artist": { "id": "3859c8ab-ea0f-4182-b447-041dacb4155e", "name": "Makeshift Prodigy", "sort-name": "Makeshift Prodigy" } } ], "artist-credit-id": "5976c408-90df-371d-b5b3-ac3804d35af5", "first-release-date": "2010-04-06" }, { "id": "f8c7eed9-68c7-440e-a067-d1e8c35242d8", "isrcs": [ "NLK072000301" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 152452, "releases": [ { "id": "723509b6-f787-4a78-bdd1-5c1069cc428a", "date": "2021-05-14", "count": 1, "media": [ { "id": "1bd8985d-0981-3206-98a5-261622958428", "track": [ { "id": "06db80d0-a0a5-4b92-8741-63d47672cdc3", "title": "Blinding Lights", "length": 152452, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "artist-credit": [ { "name": "Yori", "artist": { "id": "1d8a7caf-bcab-4f73-abc1-2448f0d0d547", "name": "Yori Swart", "sort-name": "Swart, Yori", "disambiguation": "Blues/Americana singer and guitar player" } } ], "release-group": { "id": "2edfa703-f2ad-4be2-81a4-d4fe2a313dd2", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2021-05-14" } ], "artist-credit-id": "dd085fd9-a024-30e3-b189-5513ebf52693" } ], "artist-credit": [ { "name": "Yori", "artist": { "id": "1d8a7caf-bcab-4f73-abc1-2448f0d0d547", "name": "Yori Swart", "aliases": [ { "name": "Yori Devi Swart", "type": "Legal name", "locale": null, "primary": null, "type-id": "d4dcd0c0-b341-3612-a332-c0ce797b25cf", "end-date": null, "sort-name": "Swart, Yori Devi", "begin-date": null }, { "name": "YORI", "type": "Artist name", "locale": null, "primary": null, "type-id": "894afba6-2816-3c24-8072-eadb66bd04bc", "end-date": null, "sort-name": "YORI", "begin-date": "2017" } ], "sort-name": "Swart, Yori", "disambiguation": "Blues/Americana singer and guitar player" } } ], "artist-credit-id": "dd085fd9-a024-30e3-b189-5513ebf52693", "first-release-date": "2021-05-14" }, { "id": "116fdd78-b1c4-45a9-a6ea-950748a2f0f3", "score": 100, "title": "Blinding Lights", "video": null, "length": 61000, "releases": [ { "id": "06cc23b4-e6fe-485a-83ab-c1908f17c991", "date": "2016-10-28", "count": 1, "media": [ { "id": "1205a7b7-340d-3775-bd39-570df1c319e0", "track": [ { "id": "c0b63be1-6756-430c-9ede-084ade7b1b62", "title": "Blinding Lights", "length": 61000, "number": "5" } ], "format": "Digital Media", "position": 1, "track-count": 13, "track-offset": 4 } ], "title": "Heartbeats", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 13, "release-group": { "id": "43a468fc-cef9-4e4a-b3f6-bc7172176dbe", "title": "Heartbeats", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2016-10-28" } ] } ], "artist-credit": [ { "name": "Vigo Thieves", "artist": { "id": "dec7ba06-15d1-4a78-a993-638ff0f8b954", "name": "Vigo Thieves", "sort-name": "Vigo Thieves" } } ], "artist-credit-id": "2e852c66-c3a1-33b8-949d-9817a0cce14d", "first-release-date": "2016-10-28" }, { "id": "7f3eb692-c64b-4b96-850d-cae93e757cab", "isrcs": [ "QM6N22249746" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 138428, "releases": [ { "id": "6e09599a-f7ef-42e2-aa13-1bf8b52dfc1e", "date": "2022-07-08", "count": 1, "media": [ { "id": "3802e6c8-85d7-3305-bea1-7a1271ad740b", "track": [ { "id": "a4054406-578e-4703-8584-93ec99a78f9e", "title": "Blinding Lights", "length": 138428, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "fa5e101d-a8f8-4340-af37-eeb21f4e376c", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2022-07-08" } ] } ], "artist-credit": [ { "name": "Slowzy", "artist": { "id": "d3ef0d48-9948-4c33-9d49-96cb4d64cadf", "name": "Slowzy", "sort-name": "Slowzy" } } ], "artist-credit-id": "6e1ff1e4-fb8d-41fd-8e21-0c2ce017a7e8", "first-release-date": "2022-07-08" }, { "id": "20561a21-4868-4cf5-ac39-34acc36ef659", "isrcs": [ "GBDMT2000391" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 185263, "releases": [ { "id": "0f36488e-1cbd-40e2-8b62-1c3acb343013", "date": "2020-05-13", "count": 1, "media": [ { "id": "b19e441a-9473-3fee-b358-22c1a8ef04d2", "track": [ { "id": "db7d2b69-bb8f-44e7-9645-ec02935610e0", "title": "Blinding Lights", "length": 185263, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "artist-credit": [ { "name": "Kurt Hugo Schneider", "artist": { "id": "93ba42f8-10c5-4865-9ca1-e7e7a5c9f389", "name": "Kurt Hugo Schneider", "sort-name": "Schneider, Kurt Hugo" }, "joinphrase": " & " }, { "name": "Sam Tsui", "artist": { "id": "74f2b04f-1c68-4811-816e-45f106f47a09", "name": "Sam Tsui", "sort-name": "Tsui, Sam" } } ], "release-group": { "id": "621a4d64-1f36-483e-b6a9-5ce471f468ac", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2020-05-13" } ], "artist-credit-id": "50084cc3-c457-3591-be0b-ff6687f64758" } ], "artist-credit": [ { "name": "Kurt Hugo Schneider", "artist": { "id": "93ba42f8-10c5-4865-9ca1-e7e7a5c9f389", "name": "Kurt Hugo Schneider", "aliases": [ { "name": "Kurt Hugo Schneider", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Kurt Hugo Schneider", "begin-date": null }, { "name": "KHS", "type": "Artist name", "locale": null, "primary": null, "type-id": "894afba6-2816-3c24-8072-eadb66bd04bc", "end-date": null, "sort-name": "KHS", "begin-date": null } ], "sort-name": "Schneider, Kurt Hugo" }, "joinphrase": " & " }, { "name": "Sam Tsui", "artist": { "id": "74f2b04f-1c68-4811-816e-45f106f47a09", "name": "Sam Tsui", "aliases": [ { "name": "Samuel Tsui", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Samuel Tsui", "begin-date": null } ], "sort-name": "Tsui, Sam" } } ], "artist-credit-id": "50084cc3-c457-3591-be0b-ff6687f64758", "first-release-date": "2020-05-13" }, { "id": "2cd7dd3c-6825-4a3c-9743-9edba8767831", "score": 100, "title": "Blinding Lights", "video": null, "length": 203859, "releases": [ { "id": "fe785df3-efaa-4502-963f-d2da416a53c8", "date": "2020-04-17", "count": 1, "media": [ { "id": "08e0a9dc-10f5-3bc4-ab8a-ec607d4adcde", "track": [ { "id": "aed4f5a3-ebd4-4b9b-b44a-13e2d0dc9f21", "title": "Blinding Lights", "length": 203859, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "ab276fbd-ea11-4366-b2ed-d6a921a30bb8", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2020-04-17" } ] } ], "artist-credit": [ { "name": "Relic Hearts", "artist": { "id": "68b9d34e-7134-4a86-a2ae-bc9496f8198e", "name": "Relic Hearts", "sort-name": "Relic Hearts", "disambiguation": "Modern Rock/Alternative Rock Band from Pennsylvania, USA." } } ], "artist-credit-id": "000be8fd-646f-3092-8937-bfd452cf640b", "first-release-date": "2020-04-17" }, { "id": "621247f6-9f29-4dfd-b7e3-8be347e6ae8d", "score": 100, "title": "Blinding Lights", "video": null, "length": 229000, "releases": [ { "id": "d288983e-d83c-435a-999f-c48172ad8d0b", "date": "2013-02-21", "count": 1, "media": [ { "id": "5019cdd4-1e64-319a-9e5a-43bf4e2fdaeb", "track": [ { "id": "6371f37f-b1e8-4679-973e-f68c734533c4", "title": "Blinding Lights", "length": 229000, "number": "262" } ], "format": "Digital Media", "position": 1, "track-count": 1209, "track-offset": 261 } ], "title": "SXSW 2013 Showcasing Artists", "status": "Promotion", "country": "XW", "status-id": "518ffc83-5cde-34df-8627-81bff5093d92", "track-count": 1209, "artist-credit": [ { "name": "Various Artists", "artist": { "id": "89ad4ac3-39f7-470e-963a-56509c546377", "name": "Various Artists", "sort-name": "Various Artists", "disambiguation": "add compilations to this artist" } } ], "release-group": { "id": "f20cbf48-bdd4-4b25-91db-4234dc48e881", "title": "SXSW 2013 Showcasing Artists", "type-id": "dd2a21e1-0c00-3729-a7a0-de60b84eb5d1", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "secondary-types": [ "Compilation" ], "secondary-type-ids": [ "dd2a21e1-0c00-3729-a7a0-de60b84eb5d1" ] }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2013-02-21" } ], "artist-credit-id": "949a7fd5-fe73-3e8f-922e-01ff4ca958f7" } ], "artist-credit": [ { "name": "Daltonians", "artist": { "id": "ecedb24b-4d41-45a1-a823-362f8324155a", "name": "Daltonians", "sort-name": "Daltonians", "disambiguation": "performed SXSW 2013" } } ], "artist-credit-id": "9399672a-b9d3-3966-a333-e81dba6a5ada", "first-release-date": "2013-02-21" }, { "id": "fb0442d9-87c3-4b23-adde-0d2c15c915c5", "score": 100, "title": "Blinding Lights", "video": null, "length": 179000, "releases": [ { "id": "befeab20-0755-4673-a7bc-2fe5a35d6961", "date": "2020", "count": 1, "media": [ { "id": "01bf123f-46fb-317f-a0b7-4bf3c6a4a776", "track": [ { "id": "854ea45d-4260-4dfd-9679-9e1155168b92", "title": "Blinding Lights", "length": 179000, "number": "1" } ], "format": "CD", "position": 1, "track-count": 22, "track-offset": 0 } ], "title": "Kidz Bop 2021", "status": "Official", "country": "GB", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 22, "release-group": { "id": "56a464f3-3a5b-4c34-8027-dec4eeb55450", "title": "Kidz Bop 2021", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "8a754a16-0027-3a29-b6d7-2b40ea0481ed", "name": "United Kingdom", "sort-name": "United Kingdom", "iso-3166-1-codes": [ "GB" ] }, "date": "2020" } ] } ], "artist-credit": [ { "name": "Kidz Bop", "artist": { "id": "d07638ce-a872-43fa-a9e7-bfff2b06496c", "name": "Kidz Bop", "sort-name": "Kidz Bop", "disambiguation": "UK version of US brand" } } ], "artist-credit-id": "23c6ea29-e575-319a-9b1c-6458d8f295c5", "first-release-date": "2020" }, { "id": "5c831f84-4fe5-486f-b435-3899d9adc182", "isrcs": [ "QZHXT2038388" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 127509, "releases": [ { "id": "043949f8-0567-43ac-826a-5cb56d6b1790", "date": "2020-03-09", "count": 1, "media": [ { "id": "96235830-0c79-3630-a673-dd0b825945bf", "track": [ { "id": "f72c1ba1-f64a-4f9f-9651-6d59ac5362a0", "title": "Blinding Lights", "length": 127509, "number": "3" } ], "format": "Digital Media", "position": 1, "track-count": 10, "track-offset": 2 } ], "title": "Retro Electronic Arpeggios", "status": "Official", "country": "AF", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 10, "artist-credit": [ { "name": "Alibi Music", "artist": { "id": "9d96fc11-c440-410b-90b4-6646bc14edb6", "name": "Alibi Music", "sort-name": "Alibi Music", "disambiguation": "production music library [ALIBI#]" } } ], "release-group": { "id": "ff2d63fe-20bb-407b-a0cb-95edba6ee85e", "title": "Retro Electronic Arpeggios", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "aa95182f-df0a-3ad6-8bfb-4b63482cd276", "name": "Afghanistan", "sort-name": "Afghanistan", "iso-3166-1-codes": [ "AF" ] }, "date": "2020-03-09" }, { "area": { "id": "1c69b790-b46b-3e92-b6b4-93b4364badbc", "name": "Albania", "sort-name": "Albania", "iso-3166-1-codes": [ "AL" ] }, "date": "2020-03-09" }, { "area": { "id": "28242750-534a-326b-8ed6-1b03dfb88cd0", "name": "Algeria", "sort-name": "Algeria", "iso-3166-1-codes": [ "DZ" ] }, "date": "2020-03-09" }, { "area": { "id": "e01da61e-99a8-3c76-a27d-774c3f4982f0", "name": "Andorra", "sort-name": "Andorra", "iso-3166-1-codes": [ "AD" ] }, "date": "2020-03-09" }, { "area": { "id": "2afd5d6a-5fee-3836-8783-44d0ec9ac115", "name": "Angola", "sort-name": "Angola", "iso-3166-1-codes": [ "AO" ] }, "date": "2020-03-09" }, { "area": { "id": "eed9e8bb-b48f-30af-95f5-f178762ee515", "name": "Anguilla", "sort-name": "Anguilla", "iso-3166-1-codes": [ "AI" ] }, "date": "2020-03-09" }, { "area": { "id": "2a8cc14f-8d47-389b-b54d-e94312b23d27", "name": "Antigua and Barbuda", "sort-name": "Antigua and Barbuda", "iso-3166-1-codes": [ "AG" ] }, "date": "2020-03-09" }, { "area": { "id": "0df04709-c7d8-3b55-a6ea-f3e5069a947b", "name": "Argentina", "sort-name": "Argentina", "iso-3166-1-codes": [ "AR" ] }, "date": "2020-03-09" }, { "area": { "id": "6474fa20-e0d6-3ef2-95ce-a6f73408cd5e", "name": "Armenia", "sort-name": "Armenia", "iso-3166-1-codes": [ "AM" ] }, "date": "2020-03-09" }, { "area": { "id": "106e0bec-b638-3b37-b731-f53d507dc00e", "name": "Australia", "sort-name": "Australia", "iso-3166-1-codes": [ "AU" ] }, "date": "2020-03-09" }, { "area": { "id": "caac77d1-a5c8-3e6e-8e27-90b44dcc1446", "name": "Austria", "sort-name": "Austria", "iso-3166-1-codes": [ "AT" ] }, "date": "2020-03-09" }, { "area": { "id": "b211ad01-2f7d-32e9-80ed-cfd6c9eb6845", "name": "Azerbaijan", "sort-name": "Azerbaijan", "iso-3166-1-codes": [ "AZ" ] }, "date": "2020-03-09" }, { "area": { "id": "f8b33963-7364-33be-8c6c-5ab2e1075ae1", "name": "Bahamas", "sort-name": "Bahamas", "iso-3166-1-codes": [ "BS" ] }, "date": "2020-03-09" }, { "area": { "id": "65f4f7a6-d3c1-3a6b-a726-85e147d555b7", "name": "Bahrain", "sort-name": "Bahrain", "iso-3166-1-codes": [ "BH" ] }, "date": "2020-03-09" }, { "area": { "id": "20395c3e-610c-34fd-9995-6b6f299121f2", "name": "Bangladesh", "sort-name": "Bangladesh", "iso-3166-1-codes": [ "BD" ] }, "date": "2020-03-09" }, { "area": { "id": "e5d8d205-81d3-3cd3-8956-d5aaa0c0173f", "name": "Barbados", "sort-name": "Barbados", "iso-3166-1-codes": [ "BB" ] }, "date": "2020-03-09" }, { "area": { "id": "660e3c48-b301-3c8c-9708-0f71d5d094d6", "name": "Belarus", "sort-name": "Belarus", "iso-3166-1-codes": [ "BY" ] }, "date": "2020-03-09" }, { "area": { "id": "5b8a5ee5-0bb3-34cf-9a75-c27c44e341fc", "name": "Belgium", "sort-name": "Belgium", "iso-3166-1-codes": [ "BE" ] }, "date": "2020-03-09" }, { "area": { "id": "6bf45af6-f1bf-357c-91b5-9593a9c32cb0", "name": "Belize", "sort-name": "Belize", "iso-3166-1-codes": [ "BZ" ] }, "date": "2020-03-09" }, { "area": { "id": "1f72ee74-2d3f-3a40-846b-e3d780b73dd2", "name": "Benin", "sort-name": "Benin", "iso-3166-1-codes": [ "BJ" ] }, "date": "2020-03-09" }, { "area": { "id": "2cbd5484-647d-3752-8acd-933ced4f9a24", "name": "Bhutan", "sort-name": "Bhutan", "iso-3166-1-codes": [ "BT" ] }, "date": "2020-03-09" }, { "area": { "id": "a5aed4a3-8ce1-3ab3-bfee-b008cff6b857", "name": "Bolivia", "sort-name": "Bolivia", "iso-3166-1-codes": [ "BO" ] }, "date": "2020-03-09" }, { "area": { "id": "f2b64f81-6d36-35b3-94b9-5ba53d693914", "name": "Bosnia and Herzegovina", "sort-name": "Bosnia and Herzegovina", "iso-3166-1-codes": [ "BA" ] }, "date": "2020-03-09" }, { "area": { "id": "e5e11b08-d26d-341c-af28-69d3c26607f7", "name": "Botswana", "sort-name": "Botswana", "iso-3166-1-codes": [ "BW" ] }, "date": "2020-03-09" }, { "area": { "id": "f45b47f8-5796-386e-b172-6c31b009a5d8", "name": "Brazil", "sort-name": "Brazil", "iso-3166-1-codes": [ "BR" ] }, "date": "2020-03-09" }, { "area": { "id": "41c97db3-0719-363f-ad0b-79451e0f381b", "name": "British Indian Ocean Territory", "sort-name": "British Indian Ocean Territory", "iso-3166-1-codes": [ "IO" ] }, "date": "2020-03-09" }, { "area": { "id": "5d1fe672-9c9a-3d58-a221-4b23e9274709", "name": "Brunei", "sort-name": "Brunei", "iso-3166-1-codes": [ "BN" ] }, "date": "2020-03-09" }, { "area": { "id": "114c14ad-9776-34e9-81b0-6299507f3771", "name": "Bulgaria", "sort-name": "Bulgaria", "iso-3166-1-codes": [ "BG" ] }, "date": "2020-03-09" }, { "area": { "id": "5f886d01-5c12-3abb-b8be-d758b282ab05", "name": "Burkina Faso", "sort-name": "Burkina Faso", "iso-3166-1-codes": [ "BF" ] }, "date": "2020-03-09" }, { "area": { "id": "bd96f09c-c2a8-3996-b52f-291521b688c0", "name": "Burundi", "sort-name": "Burundi", "iso-3166-1-codes": [ "BI" ] }, "date": "2020-03-09" }, { "area": { "id": "ee26e886-87f5-33a2-8e8e-f9591490426d", "name": "Cambodia", "sort-name": "Cambodia", "iso-3166-1-codes": [ "KH" ] }, "date": "2020-03-09" }, { "area": { "id": "bf132644-e3ee-3bfc-9323-7f82824e4945", "name": "Cameroon", "sort-name": "Cameroon", "iso-3166-1-codes": [ "CM" ] }, "date": "2020-03-09" }, { "area": { "id": "71bbafaa-e825-3e15-8ca9-017dcad1748b", "name": "Canada", "sort-name": "Canada", "iso-3166-1-codes": [ "CA" ] }, "date": "2020-03-09" }, { "area": { "id": "41d328a3-01da-35c2-b26e-69c56d7121d1", "name": "Cape Verde", "sort-name": "Cape Verde", "iso-3166-1-codes": [ "CV" ] }, "date": "2020-03-09" }, { "area": { "id": "5dd25184-711c-3e6a-b089-572cd095f287", "name": "Cayman Islands", "sort-name": "Cayman Islands", "iso-3166-1-codes": [ "KY" ] }, "date": "2020-03-09" }, { "area": { "id": "863f49fc-16d0-3fa8-beae-242fc8ab114b", "name": "Central African Republic", "sort-name": "Central African Republic", "iso-3166-1-codes": [ "CF" ] }, "date": "2020-03-09" }, { "area": { "id": "6ce82d72-8123-3365-ab34-7b20581a34cf", "name": "Chad", "sort-name": "Chad", "iso-3166-1-codes": [ "TD" ] }, "date": "2020-03-09" }, { "area": { "id": "82d5f4d6-aed4-3ff5-81d1-5363ac6e97a7", "name": "Chile", "sort-name": "Chile", "iso-3166-1-codes": [ "CL" ] }, "date": "2020-03-09" }, { "area": { "id": "5bc803ff-c3f9-3c36-a7d6-80bc1ab4a34e", "name": "Christmas Island", "sort-name": "Christmas Island", "iso-3166-1-codes": [ "CX" ] }, "date": "2020-03-09" }, { "area": { "id": "3df32a28-e4b2-3c27-a85e-328e3f978bc5", "name": "Cocos (Keeling) Islands", "sort-name": "Cocos (Keeling) Islands", "iso-3166-1-codes": [ "CC" ] }, "date": "2020-03-09" }, { "area": { "id": "02b60d8d-7164-339d-868d-22d147d9f74a", "name": "Colombia", "sort-name": "Colombia", "iso-3166-1-codes": [ "CO" ] }, "date": "2020-03-09" }, { "area": { "id": "f8002d93-3b43-3bb7-84dd-4766ff7e5b3b", "name": "Comoros", "sort-name": "Comoros", "iso-3166-1-codes": [ "KM" ] }, "date": "2020-03-09" }, { "area": { "id": "185bc3c4-4c5a-3f69-9384-7c280dfdf072", "name": "Congo", "sort-name": "Congo", "iso-3166-1-codes": [ "CG" ] }, "date": "2020-03-09" }, { "area": { "id": "ef1ab25c-717b-30a8-8943-f9937aad8d1f", "name": "Cook Islands", "sort-name": "Cook Islands", "iso-3166-1-codes": [ "CK" ] }, "date": "2020-03-09" }, { "area": { "id": "ba544658-8266-36cb-ac0e-3bdfbf52cb00", "name": "Costa Rica", "sort-name": "Costa Rica", "iso-3166-1-codes": [ "CR" ] }, "date": "2020-03-09" }, { "area": { "id": "e56e3d7a-4b90-3546-8450-49548050924a", "name": "Côte d'Ivoire", "sort-name": "Côte d'Ivoire", "iso-3166-1-codes": [ "CI" ] }, "date": "2020-03-09" }, { "area": { "id": "7d30afff-e425-356a-873e-17ae9745b31d", "name": "Croatia", "sort-name": "Croatia", "iso-3166-1-codes": [ "HR" ] }, "date": "2020-03-09" }, { "area": { "id": "a75b525f-8c01-31f6-975e-4a32a2b001d5", "name": "Cyprus", "sort-name": "Cyprus", "iso-3166-1-codes": [ "CY" ] }, "date": "2020-03-09" }, { "area": { "id": "51d34c28-61bf-3d21-849f-7492672a9d44", "name": "Czechia", "sort-name": "Czechia", "iso-3166-1-codes": [ "CZ" ] }, "date": "2020-03-09" }, { "area": { "id": "4757b525-2a60-324a-b060-578765d2c993", "name": "Denmark", "sort-name": "Denmark", "iso-3166-1-codes": [ "DK" ] }, "date": "2020-03-09" }, { "area": { "id": "aa560de1-9e56-38ab-8d20-6133be7f3f2a", "name": "Djibouti", "sort-name": "Djibouti", "iso-3166-1-codes": [ "DJ" ] }, "date": "2020-03-09" }, { "area": { "id": "9898ec17-2174-3a61-9e3b-3f51b3ee4de1", "name": "Dominica", "sort-name": "Dominica", "iso-3166-1-codes": [ "DM" ] }, "date": "2020-03-09" }, { "area": { "id": "696cb3e0-5084-30ab-9916-65ece70adbf6", "name": "Dominican Republic", "sort-name": "Dominican Republic", "iso-3166-1-codes": [ "DO" ] }, "date": "2020-03-09" }, { "area": { "id": "738aed7d-cc30-3a90-af20-21477ba1e8cc", "name": "Timor-Leste", "sort-name": "Timor-Leste", "iso-3166-1-codes": [ "TL" ] }, "date": "2020-03-09" }, { "area": { "id": "967abc0e-f680-3cde-95d0-0b79b977d410", "name": "Ecuador", "sort-name": "Ecuador", "iso-3166-1-codes": [ "EC" ] }, "date": "2020-03-09" }, { "area": { "id": "8e0551f2-95c2-3cc0-a0a9-f2d344f10667", "name": "Egypt", "sort-name": "Egypt", "iso-3166-1-codes": [ "EG" ] }, "date": "2020-03-09" }, { "area": { "id": "f2fa4bfb-97aa-3db4-8d49-cc64969ce1a7", "name": "El Salvador", "sort-name": "El Salvador", "iso-3166-1-codes": [ "SV" ] }, "date": "2020-03-09" }, { "area": { "id": "218e28fc-7e19-3700-b4d5-5d9199a59418", "name": "Equatorial Guinea", "sort-name": "Equatorial Guinea", "iso-3166-1-codes": [ "GQ" ] }, "date": "2020-03-09" }, { "area": { "id": "2005d841-29df-3445-8b5c-c981de756bd3", "name": "Eritrea", "sort-name": "Eritrea", "iso-3166-1-codes": [ "ER" ] }, "date": "2020-03-09" }, { "area": { "id": "e1c1215f-dcc0-35b4-b840-d2ca2151593b", "name": "Estonia", "sort-name": "Estonia", "iso-3166-1-codes": [ "EE" ] }, "date": "2020-03-09" }, { "area": { "id": "96699ab4-4bbf-332e-b037-b0119821f792", "name": "Ethiopia", "sort-name": "Ethiopia", "iso-3166-1-codes": [ "ET" ] }, "date": "2020-03-09" }, { "area": { "id": "baa270d6-bb10-38d1-87bd-42a82b4efa9c", "name": "Falkland Islands", "sort-name": "Falkland Islands", "iso-3166-1-codes": [ "FK" ] }, "date": "2020-03-09" }, { "area": { "id": "031eba2b-79b5-3314-a14b-288407ad42ab", "name": "Fiji", "sort-name": "Fiji", "iso-3166-1-codes": [ "FJ" ] }, "date": "2020-03-09" }, { "area": { "id": "6a264f94-6ff1-30b1-9a81-41f7bfabd616", "name": "Finland", "sort-name": "Finland", "iso-3166-1-codes": [ "FI" ] }, "date": "2020-03-09" }, { "area": { "id": "08310658-51eb-3801-80de-5a0739207115", "name": "France", "sort-name": "France", "iso-3166-1-codes": [ "FR" ] }, "date": "2020-03-09" }, { "area": { "id": "d14441fe-3bce-34b5-aed5-dfbe987329c9", "name": "Gabon", "sort-name": "Gabon", "iso-3166-1-codes": [ "GA" ] }, "date": "2020-03-09" }, { "area": { "id": "52641fae-20e3-3698-9fa9-1849f2c79ab8", "name": "Gambia", "sort-name": "Gambia", "iso-3166-1-codes": [ "GM" ] }, "date": "2020-03-09" }, { "area": { "id": "7e081aa0-817b-3ae0-9fe2-4bb4e3b3cc95", "name": "Georgia", "sort-name": "Georgia", "iso-3166-1-codes": [ "GE" ] }, "date": "2020-03-09" }, { "area": { "id": "85752fda-13c4-31a3-bee5-0e5cb1f51dad", "name": "Germany", "sort-name": "Germany", "iso-3166-1-codes": [ "DE" ] }, "date": "2020-03-09" }, { "area": { "id": "cf48f4b4-28f0-39ab-9104-650324a1d1c8", "name": "Ghana", "sort-name": "Ghana", "iso-3166-1-codes": [ "GH" ] }, "date": "2020-03-09" }, { "area": { "id": "803db0ca-b6ed-3bbc-aeb8-f89efd0a2168", "name": "Greece", "sort-name": "Greece", "iso-3166-1-codes": [ "GR" ] }, "date": "2020-03-09" }, { "area": { "id": "217e2eb3-0a3a-3b59-9eaa-a7465c1417ff", "name": "Grenada", "sort-name": "Grenada", "iso-3166-1-codes": [ "GD" ] }, "date": "2020-03-09" }, { "area": { "id": "01448ddc-6ee3-3fa4-b136-507d984e31ee", "name": "Guatemala", "sort-name": "Guatemala", "iso-3166-1-codes": [ "GT" ] }, "date": "2020-03-09" }, { "area": { "id": "a58af0f8-b238-3da2-a57b-4aa0ff4ab574", "name": "Guinea", "sort-name": "Guinea", "iso-3166-1-codes": [ "GN" ] }, "date": "2020-03-09" }, { "area": { "id": "4f01a1af-02ca-3b28-a64f-f38c36c08879", "name": "Guinea-Bissau", "sort-name": "Guinea-Bissau", "iso-3166-1-codes": [ "GW" ] }, "date": "2020-03-09" }, { "area": { "id": "c4a33ce9-580e-3d57-9c32-f75daf2f75ef", "name": "Guyana", "sort-name": "Guyana", "iso-3166-1-codes": [ "GY" ] }, "date": "2020-03-09" }, { "area": { "id": "cf25d306-7da5-3878-a2b1-a0370f847308", "name": "Haiti", "sort-name": "Haiti", "iso-3166-1-codes": [ "HT" ] }, "date": "2020-03-09" }, { "area": { "id": "0c3ea915-4e49-34fc-b702-debb216fd7fa", "name": "Honduras", "sort-name": "Honduras", "iso-3166-1-codes": [ "HN" ] }, "date": "2020-03-09" }, { "area": { "id": "0373cdff-eac8-3fbc-92dc-36a607da06d1", "name": "Hong Kong", "sort-name": "Hong Kong", "iso-3166-1-codes": [ "HK" ] }, "date": "2020-03-09" }, { "area": { "id": "312bc5bb-7e43-3e63-81c6-b4d712b37b2c", "name": "Hungary", "sort-name": "Hungary", "iso-3166-1-codes": [ "HU" ] }, "date": "2020-03-09" }, { "area": { "id": "48802a32-075a-3805-a183-277c66047693", "name": "Iceland", "sort-name": "Iceland", "iso-3166-1-codes": [ "IS" ] }, "date": "2020-03-09" }, { "area": { "id": "d31a9a15-537f-3669-ad53-25753ddd2772", "name": "India", "sort-name": "India", "iso-3166-1-codes": [ "IN" ] }, "date": "2020-03-09" }, { "area": { "id": "d3a68bd0-7419-3f99-a5bd-204d6e057089", "name": "Indonesia", "sort-name": "Indonesia", "iso-3166-1-codes": [ "ID" ] }, "date": "2020-03-09" }, { "area": { "id": "b0525ccb-15e9-3c56-81fa-471db3b31cfa", "name": "Iraq", "sort-name": "Iraq", "iso-3166-1-codes": [ "IQ" ] }, "date": "2020-03-09" }, { "area": { "id": "390b05d4-11ec-3bce-a343-703a366b34a5", "name": "Ireland", "sort-name": "Ireland", "iso-3166-1-codes": [ "IE" ] }, "date": "2020-03-09" }, { "area": { "id": "03691455-bb46-37e3-91d2-cb064a35ffcc", "name": "Israel", "sort-name": "Israel", "iso-3166-1-codes": [ "IL" ] }, "date": "2020-03-09" }, { "area": { "id": "c6500277-9a3d-349b-bf30-41afdbf42add", "name": "Italy", "sort-name": "Italy", "iso-3166-1-codes": [ "IT" ] }, "date": "2020-03-09" }, { "area": { "id": "2dd47a64-91d5-3b13-bc94-80043ed063d7", "name": "Jamaica", "sort-name": "Jamaica", "iso-3166-1-codes": [ "JM" ] }, "date": "2020-03-09" }, { "area": { "id": "2db42837-c832-3c27-b4a3-08198f75693c", "name": "Japan", "sort-name": "Japan", "iso-3166-1-codes": [ "JP" ] }, "date": "2020-03-09" }, { "area": { "id": "2e40127e-0b8a-3a01-bfbc-58c7fcdba532", "name": "Jordan", "sort-name": "Jordan", "iso-3166-1-codes": [ "JO" ] }, "date": "2020-03-09" }, { "area": { "id": "92d52542-3363-351c-a8b6-d991e0bccb8f", "name": "Kazakhstan", "sort-name": "Kazakhstan", "iso-3166-1-codes": [ "KZ" ] }, "date": "2020-03-09" }, { "area": { "id": "023da4a0-acee-3fb1-b91e-5de74ccf787b", "name": "Kenya", "sort-name": "Kenya", "iso-3166-1-codes": [ "KE" ] }, "date": "2020-03-09" }, { "area": { "id": "2b425457-0a4f-3282-9d2f-0a0e0f7db2e5", "name": "Kiribati", "sort-name": "Kiribati", "iso-3166-1-codes": [ "KI" ] }, "date": "2020-03-09" }, { "area": { "id": "b9f7d640-46e8-313e-b158-ded6d18593b3", "name": "South Korea", "sort-name": "South Korea", "iso-3166-1-codes": [ "KR" ] }, "date": "2020-03-09" }, { "area": { "id": "f03f2625-dc7d-38b2-a058-4e9ca0e10424", "name": "Kuwait", "sort-name": "Kuwait", "iso-3166-1-codes": [ "KW" ] }, "date": "2020-03-09" }, { "area": { "id": "188b4a6b-a4d8-3864-ba46-8446c7b658b4", "name": "Kyrgyzstan", "sort-name": "Kyrgyzstan", "iso-3166-1-codes": [ "KG" ] }, "date": "2020-03-09" }, { "area": { "id": "c81cb1f4-0858-3f28-9082-c06e2ce24bea", "name": "Laos", "sort-name": "Laos", "iso-3166-1-codes": [ "LA" ] }, "date": "2020-03-09" }, { "area": { "id": "66eb3e73-d69e-3581-9a23-a73b4c64c8dd", "name": "Latvia", "sort-name": "Latvia", "iso-3166-1-codes": [ "LV" ] }, "date": "2020-03-09" }, { "area": { "id": "8138206e-5786-3f86-a53b-19a7303e7419", "name": "Lebanon", "sort-name": "Lebanon", "iso-3166-1-codes": [ "LB" ] }, "date": "2020-03-09" }, { "area": { "id": "c5011696-e744-3946-a2c1-e3fe7e6dde37", "name": "Lesotho", "sort-name": "Lesotho", "iso-3166-1-codes": [ "LS" ] }, "date": "2020-03-09" }, { "area": { "id": "d66e68e6-6410-3d34-a8aa-9242045ed593", "name": "Liberia", "sort-name": "Liberia", "iso-3166-1-codes": [ "LR" ] }, "date": "2020-03-09" }, { "area": { "id": "1509aaae-8271-30cb-89c1-d8660cf73975", "name": "Libya", "sort-name": "Libya", "iso-3166-1-codes": [ "LY" ] }, "date": "2020-03-09" }, { "area": { "id": "d2007481-eefe-37c0-be71-2256dfe148cb", "name": "Liechtenstein", "sort-name": "Liechtenstein", "iso-3166-1-codes": [ "LI" ] }, "date": "2020-03-09" }, { "area": { "id": "0785dc14-96af-3dc4-bde4-dcdfc2e2d0d6", "name": "Lithuania", "sort-name": "Lithuania", "iso-3166-1-codes": [ "LT" ] }, "date": "2020-03-09" }, { "area": { "id": "563d21b7-4a8e-35e2-83a7-7804baefbfa7", "name": "Luxembourg", "sort-name": "Luxembourg", "iso-3166-1-codes": [ "LU" ] }, "date": "2020-03-09" }, { "area": { "id": "ed4e8ad9-2b33-3133-b105-28bb719d6ce8", "name": "Macao", "sort-name": "Macao", "iso-3166-1-codes": [ "MO" ] }, "date": "2020-03-09" }, { "area": { "id": "fa75cdb9-cbc4-35de-8bf4-a21e7b811484", "name": "North Macedonia", "sort-name": "North Macedonia", "iso-3166-1-codes": [ "MK" ] }, "date": "2020-03-09" }, { "area": { "id": "f3a30678-3d23-3f42-8056-d32ebe58c66d", "name": "Madagascar", "sort-name": "Madagascar", "iso-3166-1-codes": [ "MG" ] }, "date": "2020-03-09" }, { "area": { "id": "b4d3ff41-ead2-300f-9c11-f73f8ad39678", "name": "Malawi", "sort-name": "Malawi", "iso-3166-1-codes": [ "MW" ] }, "date": "2020-03-09" }, { "area": { "id": "305d19c7-c040-349c-8d5f-6ac75d2d2a09", "name": "Malaysia", "sort-name": "Malaysia", "iso-3166-1-codes": [ "MY" ] }, "date": "2020-03-09" }, { "area": { "id": "a195ee41-7f39-3a60-83ca-4a6f91cd4d2e", "name": "Maldives", "sort-name": "Maldives", "iso-3166-1-codes": [ "MV" ] }, "date": "2020-03-09" }, { "area": { "id": "c35e6d5e-9011-32e5-a23f-9e7639b7350c", "name": "Mali", "sort-name": "Mali", "iso-3166-1-codes": [ "ML" ] }, "date": "2020-03-09" }, { "area": { "id": "050c94f7-1413-3a34-bb90-4a94f3bb2084", "name": "Malta", "sort-name": "Malta", "iso-3166-1-codes": [ "MT" ] }, "date": "2020-03-09" }, { "area": { "id": "bf8c2e6f-2401-3a52-aad2-7e8baa8b447e", "name": "Marshall Islands", "sort-name": "Marshall Islands", "iso-3166-1-codes": [ "MH" ] }, "date": "2020-03-09" }, { "area": { "id": "657e69c5-cda0-3592-9d39-85b55610bc40", "name": "Mauritania", "sort-name": "Mauritania", "iso-3166-1-codes": [ "MR" ] }, "date": "2020-03-09" }, { "area": { "id": "bb019165-42ef-3470-bcb8-36d1b45e4bc1", "name": "Mauritius", "sort-name": "Mauritius", "iso-3166-1-codes": [ "MU" ] }, "date": "2020-03-09" }, { "area": { "id": "3e08b2cd-69f3-317c-b1e4-e71be581839e", "name": "Mexico", "sort-name": "Mexico", "iso-3166-1-codes": [ "MX" ] }, "date": "2020-03-09" }, { "area": { "id": "aabae773-4997-37ba-950a-394c06847631", "name": "Federated States of Micronesia", "sort-name": "Federated States of Micronesia", "iso-3166-1-codes": [ "FM" ] }, "date": "2020-03-09" }, { "area": { "id": "560ddb6d-4304-3938-8407-c96605226fad", "name": "Moldova", "sort-name": "Moldova", "iso-3166-1-codes": [ "MD" ] }, "date": "2020-03-09" }, { "area": { "id": "6f26d528-4467-3ecb-b105-10daf3466b40", "name": "Monaco", "sort-name": "Monaco", "iso-3166-1-codes": [ "MC" ] }, "date": "2020-03-09" }, { "area": { "id": "84360c54-1763-3146-ae38-a439c72fd4ea", "name": "Mongolia", "sort-name": "Mongolia", "iso-3166-1-codes": [ "MN" ] }, "date": "2020-03-09" }, { "area": { "id": "290ea438-1cb6-35e1-9755-6ab123214293", "name": "Montserrat", "sort-name": "Montserrat", "iso-3166-1-codes": [ "MS" ] }, "date": "2020-03-09" }, { "area": { "id": "b84d8617-249a-3a06-849d-fc5c25e2249b", "name": "Morocco", "sort-name": "Morocco", "iso-3166-1-codes": [ "MA" ] }, "date": "2020-03-09" }, { "area": { "id": "325ce9a0-d58f-3564-b24e-647b33098767", "name": "Mozambique", "sort-name": "Mozambique", "iso-3166-1-codes": [ "MZ" ] }, "date": "2020-03-09" }, { "area": { "id": "cd4fadac-d701-3401-8516-420de2cb4e5c", "name": "Namibia", "sort-name": "Namibia", "iso-3166-1-codes": [ "NA" ] }, "date": "2020-03-09" }, { "area": { "id": "7784f515-5886-3831-9b33-a7f665795d7f", "name": "Nauru", "sort-name": "Nauru", "iso-3166-1-codes": [ "NR" ] }, "date": "2020-03-09" }, { "area": { "id": "8815c87e-cf3f-362c-a5c6-05ce853a4c79", "name": "Nepal", "sort-name": "Nepal", "iso-3166-1-codes": [ "NP" ] }, "date": "2020-03-09" }, { "area": { "id": "ef1b7cc0-cd26-36f4-8ea0-04d9623786c7", "name": "Netherlands", "sort-name": "Netherlands", "iso-3166-1-codes": [ "NL" ] }, "date": "2020-03-09" }, { "area": { "id": "8524c7d9-f472-3890-a458-f28d5081d9c4", "name": "New Zealand", "sort-name": "New Zealand", "iso-3166-1-codes": [ "NZ" ] }, "date": "2020-03-09" }, { "area": { "id": "d2b87acd-06ce-3c71-b3ff-a35d914bbabe", "name": "Nicaragua", "sort-name": "Nicaragua", "iso-3166-1-codes": [ "NI" ] }, "date": "2020-03-09" }, { "area": { "id": "f27e792b-ddd2-3a70-bdd4-41fb11534b57", "name": "Niger", "sort-name": "Niger", "iso-3166-1-codes": [ "NE" ] }, "date": "2020-03-09" }, { "area": { "id": "1e23d84b-202e-3fc8-8c49-debc71e9eb16", "name": "Nigeria", "sort-name": "Nigeria", "iso-3166-1-codes": [ "NG" ] }, "date": "2020-03-09" }, { "area": { "id": "7fc2feb2-0d33-31ef-b496-b812a4dd2965", "name": "Niue", "sort-name": "Niue", "iso-3166-1-codes": [ "NU" ] }, "date": "2020-03-09" }, { "area": { "id": "a2b3b8cb-79e8-3c26-8a2a-3ccc7dd80cda", "name": "Norfolk Island", "sort-name": "Norfolk Island", "iso-3166-1-codes": [ "NF" ] }, "date": "2020-03-09" }, { "area": { "id": "6743d351-6f37-3049-9724-5041161fff4d", "name": "Norway", "sort-name": "Norway", "iso-3166-1-codes": [ "NO" ] }, "date": "2020-03-09" }, { "area": { "id": "7ccdff29-2e00-3e50-9520-b9ea1e918bc2", "name": "Oman", "sort-name": "Oman", "iso-3166-1-codes": [ "OM" ] }, "date": "2020-03-09" }, { "area": { "id": "7c87112d-504d-31f1-8147-11ff45fc3bfd", "name": "Pakistan", "sort-name": "Pakistan", "iso-3166-1-codes": [ "PK" ] }, "date": "2020-03-09" }, { "area": { "id": "9d800529-1ef8-39bb-9e42-1fa74f2eac97", "name": "Palau", "sort-name": "Palau", "iso-3166-1-codes": [ "PW" ] }, "date": "2020-03-09" }, { "area": { "id": "6f85633b-dff4-3fb4-babd-fb89b3628041", "name": "Panama", "sort-name": "Panama", "iso-3166-1-codes": [ "PA" ] }, "date": "2020-03-09" }, { "area": { "id": "2366f623-b236-3073-bbfe-c26d6d6f195f", "name": "Papua New Guinea", "sort-name": "Papua New Guinea", "iso-3166-1-codes": [ "PG" ] }, "date": "2020-03-09" }, { "area": { "id": "0a750c98-a7a5-3d55-bd52-f6e9011b1537", "name": "Paraguay", "sort-name": "Paraguay", "iso-3166-1-codes": [ "PY" ] }, "date": "2020-03-09" }, { "area": { "id": "719f6082-95c7-3dd5-9503-e143010a6cc1", "name": "Peru", "sort-name": "Peru", "iso-3166-1-codes": [ "PE" ] }, "date": "2020-03-09" }, { "area": { "id": "786532a5-2e36-315a-bdf2-221dc1b64b72", "name": "Philippines", "sort-name": "Philippines", "iso-3166-1-codes": [ "PH" ] }, "date": "2020-03-09" }, { "area": { "id": "27b5df20-d817-3126-b3a0-1be6a75f7496", "name": "Pitcairn", "sort-name": "Pitcairn", "iso-3166-1-codes": [ "PN" ] }, "date": "2020-03-09" }, { "area": { "id": "dd7f80c8-f017-3d01-8608-2a8c9c32b954", "name": "Poland", "sort-name": "Poland", "iso-3166-1-codes": [ "PL" ] }, "date": "2020-03-09" }, { "area": { "id": "781b0c54-3d54-362d-a941-8a617def4992", "name": "Portugal", "sort-name": "Portugal", "iso-3166-1-codes": [ "PT" ] }, "date": "2020-03-09" }, { "area": { "id": "348dcc25-7bb6-3f75-8739-97eabc84a330", "name": "Qatar", "sort-name": "Qatar", "iso-3166-1-codes": [ "QA" ] }, "date": "2020-03-09" }, { "area": { "id": "61ed84b8-5a10-30a7-8376-ccd51801d6d1", "name": "Romania", "sort-name": "Romania", "iso-3166-1-codes": [ "RO" ] }, "date": "2020-03-09" }, { "area": { "id": "1f1fc3a4-9500-39b8-9f10-f0a465557eef", "name": "Russia", "sort-name": "Russia", "iso-3166-1-codes": [ "RU" ] }, "date": "2020-03-09" }, { "area": { "id": "5921efcf-344c-3e55-829d-34fca714fcde", "name": "Rwanda", "sort-name": "Rwanda", "iso-3166-1-codes": [ "RW" ] }, "date": "2020-03-09" }, { "area": { "id": "b1439904-121a-38fb-8708-0573cb42e2ef", "name": "Saint Kitts and Nevis", "sort-name": "Saint Kitts and Nevis", "iso-3166-1-codes": [ "KN" ] }, "date": "2020-03-09" }, { "area": { "id": "178709ab-9e22-39ae-a93c-55e66a8183c2", "name": "Saint Lucia", "sort-name": "Saint Lucia", "iso-3166-1-codes": [ "LC" ] }, "date": "2020-03-09" }, { "area": { "id": "7f9f87ec-3c1e-300d-9bb8-fa93f0754e6b", "name": "Saint Vincent and The Grenadines", "sort-name": "Saint Vincent and The Grenadines", "iso-3166-1-codes": [ "VC" ] }, "date": "2020-03-09" }, { "area": { "id": "2cc3ea35-b05a-3ec0-a5a2-88e8a482854a", "name": "Samoa", "sort-name": "Samoa", "iso-3166-1-codes": [ "WS" ] }, "date": "2020-03-09" }, { "area": { "id": "d4dd44b6-fa46-30f5-b331-ce9e88d06242", "name": "San Marino", "sort-name": "San Marino", "iso-3166-1-codes": [ "SM" ] }, "date": "2020-03-09" }, { "area": { "id": "dcb0e217-84cb-3772-b98f-a7a7a1dbe185", "name": "Sao Tome and Principe", "sort-name": "Sao Tome and Principe", "iso-3166-1-codes": [ "ST" ] }, "date": "2020-03-09" }, { "area": { "id": "9705be0d-51fb-3990-8726-ec9f56c66ba0", "name": "Saudi Arabia", "sort-name": "Saudi Arabia", "iso-3166-1-codes": [ "SA" ] }, "date": "2020-03-09" }, { "area": { "id": "122bb81f-191e-3798-8be2-4b54ffd7ffa4", "name": "Senegal", "sort-name": "Senegal", "iso-3166-1-codes": [ "SN" ] }, "date": "2020-03-09" }, { "area": { "id": "be43ea01-053a-3b23-b03d-2df8317a57ff", "name": "Seychelles", "sort-name": "Seychelles", "iso-3166-1-codes": [ "SC" ] }, "date": "2020-03-09" }, { "area": { "id": "2b547f54-a97c-3481-9625-7ad9a670b1e6", "name": "Sierra Leone", "sort-name": "Sierra Leone", "iso-3166-1-codes": [ "SL" ] }, "date": "2020-03-09" }, { "area": { "id": "aa344640-fd57-3960-afb4-84d0d3b69d3d", "name": "Singapore", "sort-name": "Singapore", "iso-3166-1-codes": [ "SG" ] }, "date": "2020-03-09" }, { "area": { "id": "eb52ca74-dd11-37a1-a3fa-154430bf2df2", "name": "Slovakia", "sort-name": "Slovakia", "iso-3166-1-codes": [ "SK" ] }, "date": "2020-03-09" }, { "area": { "id": "5b0b6225-584c-3942-b69d-5efceb9989af", "name": "Slovenia", "sort-name": "Slovenia", "iso-3166-1-codes": [ "SI" ] }, "date": "2020-03-09" }, { "area": { "id": "7fe4001e-eda5-3b5b-bbd8-0f773e76d09c", "name": "Solomon Islands", "sort-name": "Solomon Islands", "iso-3166-1-codes": [ "SB" ] }, "date": "2020-03-09" }, { "area": { "id": "d58b9eb1-c88d-3529-bb4c-b66c96b18c45", "name": "Somalia", "sort-name": "Somalia", "iso-3166-1-codes": [ "SO" ] }, "date": "2020-03-09" }, { "area": { "id": "50cc7852-862e-30ae-aa82-385fe7135b7f", "name": "South Africa", "sort-name": "South Africa", "iso-3166-1-codes": [ "ZA" ] }, "date": "2020-03-09" }, { "area": { "id": "471c46a7-afc5-31c4-923c-d0444f5053a4", "name": "Spain", "sort-name": "Spain", "iso-3166-1-codes": [ "ES" ] }, "date": "2020-03-09" }, { "area": { "id": "6e2d562d-a754-3036-8484-7ac576606e27", "name": "Sri Lanka", "sort-name": "Sri Lanka", "iso-3166-1-codes": [ "LK" ] }, "date": "2020-03-09" }, { "area": { "id": "9d1049fb-7b2d-3862-a26d-3cc58c8c7b5b", "name": "Suriname", "sort-name": "Suriname", "iso-3166-1-codes": [ "SR" ] }, "date": "2020-03-09" }, { "area": { "id": "32f9a3f3-046f-355f-b4dc-5158d71957c8", "name": "Svalbard and Jan Mayen", "sort-name": "Svalbard and Jan Mayen", "iso-3166-1-codes": [ "SJ" ] }, "date": "2020-03-09" }, { "area": { "id": "564741c6-943e-313b-86fa-9819d595281b", "name": "Eswatini", "sort-name": "Eswatini", "iso-3166-1-codes": [ "SZ" ] }, "date": "2020-03-09" }, { "area": { "id": "23d10872-f5ae-3f0c-bf55-332788a16ecb", "name": "Sweden", "sort-name": "Sweden", "iso-3166-1-codes": [ "SE" ] }, "date": "2020-03-09" }, { "area": { "id": "1333ff06-8e3d-3c8e-9f3a-13a2a38b41df", "name": "Switzerland", "sort-name": "Switzerland", "iso-3166-1-codes": [ "CH" ] }, "date": "2020-03-09" }, { "area": { "id": "41637cec-9a4f-389c-86d2-fc6abf3357b5", "name": "Taiwan", "sort-name": "Taiwan", "iso-3166-1-codes": [ "TW" ] }, "date": "2020-03-09" }, { "area": { "id": "8259e91f-10fa-3c38-92fb-8e6822c279d5", "name": "Tajikistan", "sort-name": "Tajikistan", "iso-3166-1-codes": [ "TJ" ] }, "date": "2020-03-09" }, { "area": { "id": "c2676abd-2ac7-351a-94a9-a802b3434737", "name": "Tanzania", "sort-name": "Tanzania", "iso-3166-1-codes": [ "TZ" ] }, "date": "2020-03-09" }, { "area": { "id": "ce209e56-cda5-358e-96db-830e3405b675", "name": "Thailand", "sort-name": "Thailand", "iso-3166-1-codes": [ "TH" ] }, "date": "2020-03-09" }, { "area": { "id": "9a4a20b1-eff0-364a-a157-dc709b07eadc", "name": "Togo", "sort-name": "Togo", "iso-3166-1-codes": [ "TG" ] }, "date": "2020-03-09" }, { "area": { "id": "756f26ff-2bc5-3d25-b429-6873ccbe160d", "name": "Tokelau", "sort-name": "Tokelau", "iso-3166-1-codes": [ "TK" ] }, "date": "2020-03-09" }, { "area": { "id": "a2b8e506-3570-3a56-826e-939049c59428", "name": "Tonga", "sort-name": "Tonga", "iso-3166-1-codes": [ "TO" ] }, "date": "2020-03-09" }, { "area": { "id": "6c290168-f3b9-3adb-9889-b856feb2c26c", "name": "Trinidad and Tobago", "sort-name": "Trinidad and Tobago", "iso-3166-1-codes": [ "TT" ] }, "date": "2020-03-09" }, { "area": { "id": "58955071-67c1-3491-8dec-48d28f824bda", "name": "Tunisia", "sort-name": "Tunisia", "iso-3166-1-codes": [ "TN" ] }, "date": "2020-03-09" }, { "area": { "id": "d3be28b4-41f7-3752-8a05-ed45e1d1e492", "name": "Türkiye", "sort-name": "Türkiye", "iso-3166-1-codes": [ "TR" ] }, "date": "2020-03-09" }, { "area": { "id": "98e38a45-b90e-3575-943e-23e26ce3a69f", "name": "Turkmenistan", "sort-name": "Turkmenistan", "iso-3166-1-codes": [ "TM" ] }, "date": "2020-03-09" }, { "area": { "id": "a2d01b31-5184-382e-aab5-63b5944195b7", "name": "Turks and Caicos Islands", "sort-name": "Turks and Caicos Islands", "iso-3166-1-codes": [ "TC" ] }, "date": "2020-03-09" }, { "area": { "id": "529117db-25de-3d09-9722-b54937a17590", "name": "Tuvalu", "sort-name": "Tuvalu", "iso-3166-1-codes": [ "TV" ] }, "date": "2020-03-09" }, { "area": { "id": "1ac655f1-12d1-351a-a2b2-8404167e0e0b", "name": "Uganda", "sort-name": "Uganda", "iso-3166-1-codes": [ "UG" ] }, "date": "2020-03-09" }, { "area": { "id": "904768d0-61ca-3c40-93ac-93adc36fef4b", "name": "Ukraine", "sort-name": "Ukraine", "iso-3166-1-codes": [ "UA" ] }, "date": "2020-03-09" }, { "area": { "id": "fe40c648-ba74-3e17-b768-58181d5ee563", "name": "United Arab Emirates", "sort-name": "United Arab Emirates", "iso-3166-1-codes": [ "AE" ] }, "date": "2020-03-09" }, { "area": { "id": "8a754a16-0027-3a29-b6d7-2b40ea0481ed", "name": "United Kingdom", "sort-name": "United Kingdom", "iso-3166-1-codes": [ "GB" ] }, "date": "2020-03-09" }, { "area": { "id": "489ce91b-6658-3307-9877-795b68554c98", "name": "United States", "sort-name": "United States", "iso-3166-1-codes": [ "US" ] }, "date": "2020-03-09" }, { "area": { "id": "ea88d395-87c9-3c47-b49a-114cad41fd39", "name": "Uruguay", "sort-name": "Uruguay", "iso-3166-1-codes": [ "UY" ] }, "date": "2020-03-09" }, { "area": { "id": "95c0c3ee-ed52-31c4-83e6-19ced497e6d0", "name": "Uzbekistan", "sort-name": "Uzbekistan", "iso-3166-1-codes": [ "UZ" ] }, "date": "2020-03-09" }, { "area": { "id": "c2021af8-7645-3f38-aa1b-ada0a13d4faf", "name": "Vanuatu", "sort-name": "Vanuatu", "iso-3166-1-codes": [ "VU" ] }, "date": "2020-03-09" }, { "area": { "id": "2ac90d6b-04fa-3006-8a91-89da01032365", "name": "Venezuela", "sort-name": "Venezuela", "iso-3166-1-codes": [ "VE" ] }, "date": "2020-03-09" }, { "area": { "id": "0158e991-c3c6-374a-9b9d-024bbaff6980", "name": "Vietnam", "sort-name": "Vietnam", "iso-3166-1-codes": [ "VN" ] }, "date": "2020-03-09" }, { "area": { "id": "8562c2e5-eabb-3fad-96f2-f536a93a2957", "name": "British Virgin Islands", "sort-name": "British Virgin Islands", "iso-3166-1-codes": [ "VG" ] }, "date": "2020-03-09" }, { "area": { "id": "e8e9ecdc-19d3-360b-8f1a-9c80e6c12830", "name": "Yemen", "sort-name": "Yemen", "iso-3166-1-codes": [ "YE" ] }, "date": "2020-03-09" }, { "area": { "id": "d1733e16-9064-3181-961d-d56f8599969b", "name": "Democratic Republic of the Congo", "sort-name": "Democratic Republic of the Congo", "iso-3166-1-codes": [ "CD" ] }, "date": "2020-03-09" }, { "area": { "id": "d662dd74-1fc1-3e36-b427-bbbe29684618", "name": "Zambia", "sort-name": "Zambia", "iso-3166-1-codes": [ "ZM" ] }, "date": "2020-03-09" }, { "area": { "id": "691e8ad6-2cc8-3678-8495-1ac96bbede55", "name": "Zimbabwe", "sort-name": "Zimbabwe", "iso-3166-1-codes": [ "ZW" ] }, "date": "2020-03-09" }, { "area": { "id": "6f8faf25-44cb-313b-9162-77145cdc192d", "name": "Montenegro", "sort-name": "Montenegro", "iso-3166-1-codes": [ "ME" ] }, "date": "2020-03-09" }, { "area": { "id": "424c1b50-57f8-34af-ab97-313e2ad40058", "name": "Serbia", "sort-name": "Serbia", "iso-3166-1-codes": [ "RS" ] }, "date": "2020-03-09" }, { "area": { "id": "7b6ae6b7-6f4f-43df-aab8-0c72531ea8ae", "name": "Kosovo", "sort-name": "Kosovo", "iso-3166-1-codes": [ "XK" ] }, "date": "2020-03-09" } ], "artist-credit-id": "1eb17876-4b9c-3319-9aff-70c9c31583ce" } ], "artist-credit": [ { "name": "Kent Scott Carter", "artist": { "id": "c8affe3a-fe46-4f3b-bd53-5f642be9b937", "name": "Kent Scott Carter", "sort-name": "Carter, Kent Scott", "disambiguation": "production music" } } ], "artist-credit-id": "60c15788-2064-3c5e-9954-80fa063877a4", "first-release-date": "2020-03-09" }, { "id": "647da617-0325-4bc6-8b4e-02b900782902", "isrcs": [ "GBLV62118434" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 445552, "releases": [ { "id": "01b27762-a75b-491f-bc3f-032c9d3ced31", "date": "2021-10-14", "count": 1, "media": [ { "id": "0d4bff07-4259-31b8-943f-b10e1decf651", "track": [ { "id": "2793f3d3-11f3-41f3-8b9b-a15609c805ff", "title": "Blinding Lights", "length": 445552, "number": "3" } ], "format": "Digital Media", "position": 1, "track-count": 4, "track-offset": 2 } ], "title": "Redsphere", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 4, "release-group": { "id": "63b3bb01-9c91-4aa2-ae9a-f32082146901", "title": "Redsphere", "type-id": "6d0c5bf6-7a33-3420-a519-44fc63eedebf", "primary-type": "EP", "primary-type-id": "6d0c5bf6-7a33-3420-a519-44fc63eedebf" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2021-10-14" } ] } ], "artist-credit": [ { "name": "Valen", "artist": { "id": "1b970421-2b2e-4aab-b369-820b29252e42", "name": "Valen", "sort-name": "Valen", "disambiguation": "House music producer from Bordeaux, France" } } ], "artist-credit-id": "05d43d64-36a7-31fd-abea-4ce342935170", "first-release-date": "2021-10-14" }, { "id": "f9a23752-c165-4c34-859a-3bd93f0e7ed4", "score": 100, "title": "Blinding Lights", "video": null, "length": 190000, "releases": [ { "id": "645e7adf-d8a6-42e5-a138-73f5f700c2bc", "date": "2020-08-07", "count": 1, "media": [ { "id": "42128eb2-68f4-3f87-a583-8a4bfbf6113a", "track": [ { "id": "8af58390-52b0-4a28-a750-b7096a1ac3b4", "title": "Blinding Lights", "length": 190000, "number": "4" } ], "format": "Digital Media", "position": 1, "track-count": 4, "track-offset": 3 } ], "title": "Recovered", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 4, "release-group": { "id": "13874807-af64-4274-8eb5-5374cb7359df", "title": "Recovered", "type-id": "6d0c5bf6-7a33-3420-a519-44fc63eedebf", "primary-type": "EP", "primary-type-id": "6d0c5bf6-7a33-3420-a519-44fc63eedebf" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2020-08-07" } ] } ], "artist-credit": [ { "name": "Rising Insane", "artist": { "id": "34054078-d80f-4312-93ca-8f6eab2c07bd", "name": "Rising Insane", "sort-name": "Rising Insane" } } ], "artist-credit-id": "1d52e86b-cf22-329b-9b8b-f9539cedc0fd", "first-release-date": "2020-08-07" }, { "id": "ee5415c7-6dba-41dc-97dd-ca8a16ab7182", "isrcs": [ "QZDA62090763" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 192000, "releases": [ { "id": "bc748369-42c4-496d-9b79-cb2fb476f637", "count": 1, "media": [ { "id": "aaa313c2-bdf6-346b-ab8e-8ec2b73964fb", "track": [ { "id": "62d79eb9-8623-40db-8429-0ef7193305cc", "title": "Blinding Lights", "length": 192000, "number": "9" } ], "format": "Digital Media", "position": 1, "track-count": 31, "track-offset": 8 } ], "title": "We've Got It Covered, Vol. 7", "status": "Official", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 31, "release-group": { "id": "380d416c-71ba-48e1-8c84-37ff6c1b3b03", "title": "We've Got It Covered, Vol. 7", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" } }, { "id": "ef917776-27be-49f6-ae55-87de0ca0efee", "count": 1, "media": [ { "id": "ab9729bc-c748-3d15-b81e-ce7f9b578216", "track": [ { "id": "5a26a18b-2100-4f68-acf1-d00ee990e864", "title": "Blinding Lights", "length": 192000, "number": "3" } ], "format": "Digital Media", "position": 1, "track-count": 33, "track-offset": 2 } ], "title": "We've Got It Covered, Vol. 7", "status": "Official", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 33, "release-group": { "id": "380d416c-71ba-48e1-8c84-37ff6c1b3b03", "title": "We've Got It Covered, Vol. 7", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "disambiguation": "Digital Download version" } ], "artist-credit": [ { "name": "Halocene", "artist": { "id": "536a63a4-0d31-46d3-932c-d9b25e30ea97", "name": "Halocene", "sort-name": "Halocene" } } ], "artist-credit-id": "0aa576e4-9256-30f1-b493-206ec5c021e4", "first-release-date": "2020" }, { "id": "0ef81559-5499-4ed3-b5bf-e976eeb9d7d3", "score": 100, "title": "Blinding Lights", "video": null, "length": 202105, "releases": [ { "id": "0d741048-acaa-4206-a766-7370737bc20f", "date": "2020-04-30", "count": 1, "media": [ { "id": "2ae1fad4-8349-3676-8660-a0ef4ea22038", "track": [ { "id": "a35ae9d3-d073-4347-a556-ca76470814ce", "title": "Blinding Lights", "length": 202105, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "US", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "3e676a84-5ac3-4845-9d91-74a704296bcf", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "489ce91b-6658-3307-9877-795b68554c98", "name": "United States", "sort-name": "United States", "iso-3166-1-codes": [ "US" ] }, "date": "2020-04-30" } ] } ], "artist-credit": [ { "name": "Fame on Fire", "artist": { "id": "b677acfe-003a-409a-aa1d-3bf8d91ab0e5", "name": "Fame on Fire", "sort-name": "Fame on Fire" } } ], "artist-credit-id": "b9a6c204-c82d-3a87-9ffb-32780908e365", "first-release-date": "2020-04-30" }, { "id": "790971e4-e415-4496-8d3f-7bc58d85e2c2", "isrcs": [ "USEWC2091058" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 201786, "releases": [ { "id": "039cbf2f-ac35-4f5b-863f-b9526747da5b", "date": "2020-08-21", "count": 1, "media": [ { "id": "75438007-3dd5-3edf-8e28-1f80d9647a77", "track": [ { "id": "7225b59c-0ff5-4ea7-b9af-037187a0cb41", "title": "Blinding Lights", "length": 201786, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 12, "track-offset": 0 } ], "title": "VSQ Performs the Hits of 2020", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 12, "artist-credit": [ { "name": "Vitamin String Quartet", "artist": { "id": "56cfe6aa-b464-43d2-bec7-8ec52f313e7d", "name": "Vitamin String Quartet", "sort-name": "Vitamin String Quartet" } } ], "release-group": { "id": "70cebd26-9128-4958-bce1-61350c636c54", "title": "VSQ Performs the Hits of 2020", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2020-08-21" } ], "artist-credit-id": "44a68101-cdbf-3562-ae0f-04b069859c02" } ], "artist-credit": [ { "name": "Vitamin String Quartet", "artist": { "id": "56cfe6aa-b464-43d2-bec7-8ec52f313e7d", "name": "Vitamin String Quartet", "aliases": [ { "name": "Back in Baroque", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Back in Baroque", "begin-date": null }, { "name": "The Vitamin String Quartet", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "The Vitamin String Quartet", "begin-date": null }, { "name": "String Quartet Tribute", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "String Quartet Tribute", "begin-date": null }, { "name": "The String Quartet Tribute", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "The String Quartet Tribute", "begin-date": null }, { "name": "String Tribute", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "String Tribute", "begin-date": null }, { "name": "VSQ", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "VSQ", "begin-date": null } ], "sort-name": "Vitamin String Quartet" } } ], "artist-credit-id": "44a68101-cdbf-3562-ae0f-04b069859c02", "first-release-date": "2020-08-21" }, { "id": "16808c0d-a20e-43d9-ab74-95bc44ddb4a8", "isrcs": [ "QZTAX2260521" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 218822, "releases": [ { "id": "af517f8a-4579-44df-a793-b30399f3d8ba", "date": "2022-11-12", "count": 1, "media": [ { "id": "a8020ff9-b6a5-30df-8ae3-07712a534ab3", "track": [ { "id": "99edc36c-f1fe-4763-ada9-837098450fa9", "title": "Blinding Lights", "length": 218822, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "5513464a-b3f5-4743-b9c8-6e8e9988bc86", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2022-11-12" } ] } ], "artist-credit": [ { "name": "Housebound Ska Collective", "artist": { "id": "2f3d1f58-ffab-4c6c-a4fc-95c01f55cd6f", "name": "Housebound Ska Collective", "sort-name": "Housebound Ska Collective" } } ], "artist-credit-id": "ba77bfa3-17a7-3232-b764-cc3dd19bf342", "first-release-date": "2022-11-12" }, { "id": "276354eb-cf2e-48e6-93ba-9fa0c2444f04", "isrcs": [ "QZHNA2190252" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 185142, "releases": [ { "id": "a9a73ad2-7c43-4091-a51d-9902f461696c", "date": "2021-07-16", "count": 1, "media": [ { "id": "a3043774-5a22-306e-ab55-6202cee2d665", "track": [ { "id": "ba928a8a-9d12-4310-9534-8ed5e99d2aa1", "title": "Blinding Lights", "length": 185142, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "0cae3256-89e3-46c0-ad6b-fc77e07a902b", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2021-07-16" } ] } ], "artist-credit": [ { "name": "Silver Metz", "artist": { "id": "c1da6880-9d9c-461e-a847-3dfcea208ce9", "name": "Silver Metz", "sort-name": "Metz, Silver" } } ], "artist-credit-id": "f2531338-6a9f-3238-a5da-b2da03608727", "first-release-date": "2021-07-16" }, { "id": "e9ef2641-f5ac-412b-9e1a-ef6f463b1d68", "score": 100, "title": "Blinding Lights", "video": null, "length": 226000, "releases": [ { "id": "e8d4e490-a7bc-4f76-9b0a-ebc6f655de1f", "count": 2, "media": [ { "id": "3898b0d6-7b12-3d18-be00-5a1a3411c3fd", "track": [ { "id": "ed54cb3b-9781-48a2-bad7-7eaa53080c87", "title": "Blinding Lights", "length": 226000, "number": "10" } ], "format": "CD", "position": 1, "track-count": 15, "track-offset": 9 } ], "title": "Millennium Symphony 2-CD + DVD", "track-count": 25, "artist-credit": [ { "name": "David Garrett", "artist": { "id": "88be1fb5-0112-4549-9608-526591c7f415", "name": "David Garrett", "sort-name": "Garrett, David", "disambiguation": "classical violinist" } } ], "release-group": { "id": "1507120c-3d07-4db4-bdee-976d2e3519eb", "title": "Millennium Symphony 2-CD + DVD", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "artist-credit-id": "e1a137a4-d240-3f69-946d-3d3e25717e66" } ], "artist-credit": [ { "name": "David Garrett", "artist": { "id": "88be1fb5-0112-4549-9608-526591c7f415", "name": "David Garrett", "aliases": [ { "name": "David Garret", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "David Garret", "begin-date": null }, { "name": "David Christian Bongartz", "type": "Legal name", "locale": null, "primary": null, "type-id": "d4dcd0c0-b341-3612-a332-c0ce797b25cf", "end-date": null, "sort-name": "Bongartz, David Christian", "begin-date": null } ], "sort-name": "Garrett, David", "disambiguation": "classical violinist" } } ], "artist-credit-id": "e1a137a4-d240-3f69-946d-3d3e25717e66" }, { "id": "95b23f8f-59b2-4e9f-b98c-92913e236a63", "score": 100, "title": "Blinding Lights", "video": null, "length": 200853, "releases": [ { "id": "7d8416f1-dc4b-44fe-85f0-c4c4bc64ef99", "date": "2024-11-15", "count": 2, "media": [ { "id": "907213d9-a7da-38e7-bc52-65d2377d41d5", "track": [ { "id": "350c1763-d05c-495a-9c5a-13f48a6db262", "title": "Blinding Lights", "length": 200853, "number": "4" } ], "format": "CD", "position": 2, "track-count": 15, "track-offset": 3 } ], "title": "25/2025", "status": "Official", "country": "XE", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 30, "artist-credit": [ { "name": "Gregorian", "artist": { "id": "18a0d72d-0be0-4196-a340-035163bfae1c", "name": "Gregorian", "sort-name": "Gregorian", "disambiguation": "German band" } } ], "release-group": { "id": "98849bb5-a326-46e8-9b21-b48cb5477ab7", "title": "25/2025", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "disambiguation": "limited edition", "release-events": [ { "area": { "id": "89a675c2-3e37-3518-b83c-418bad59a85a", "name": "Europe", "sort-name": "Europe", "iso-3166-1-codes": [ "XE" ] }, "date": "2024-11-15" } ], "artist-credit-id": "861b539c-3600-3b0f-9aaf-7e98f5e06f7a" }, { "id": "e4bb50d9-4944-4664-8ca2-cc99359aea21", "date": "2024-11-15", "count": 2, "media": [ { "id": "c6c6991b-7b27-3769-a8c2-6a5063c26d07", "track": [ { "id": "24628d02-ffa3-44d5-b6ce-a3bc0b6684f2", "title": "Blinding Lights", "length": 200858, "number": "4" } ], "format": "Digital Media", "position": 2, "track-count": 15, "track-offset": 3 } ], "title": "25/2025", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 30, "artist-credit": [ { "name": "Gregorian", "artist": { "id": "18a0d72d-0be0-4196-a340-035163bfae1c", "name": "Gregorian", "sort-name": "Gregorian", "disambiguation": "German band" } } ], "release-group": { "id": "98849bb5-a326-46e8-9b21-b48cb5477ab7", "title": "25/2025", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2024-11-15" } ], "artist-credit-id": "861b539c-3600-3b0f-9aaf-7e98f5e06f7a" } ], "artist-credit": [ { "name": "Gregorian", "artist": { "id": "18a0d72d-0be0-4196-a340-035163bfae1c", "name": "Gregorian", "aliases": [ { "name": "Gregorian Master of Chant", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Gregorian Master of Chant", "begin-date": null }, { "name": "Gegrorian", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Gegrorian", "begin-date": null }, { "name": "Gregorian Masters Of Chant", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Gregorian Masters Of Chant", "begin-date": null } ], "sort-name": "Gregorian", "disambiguation": "German band" } } ], "artist-credit-id": "861b539c-3600-3b0f-9aaf-7e98f5e06f7a", "first-release-date": "2024-11-15" }, { "id": "0876d691-8f3a-43f6-b16e-c855c3c13e5e", "score": 100, "title": "Blinding Lights", "video": null, "releases": [ { "id": "91fff613-f098-4756-8df0-f74c31e327a3", "date": "2021-03-12", "count": 1, "media": [ { "id": "1cf82813-88ff-3ce0-bf33-d725728e916d", "track": [ { "id": "18820a50-b253-48b6-bb23-e1f57e94fa93", "title": "Blinding Lights", "number": "9" } ], "format": "Digital Media", "position": 1, "track-count": 47, "track-offset": 8 } ], "title": "City Sessions", "status": "Official", "country": "US", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 47, "release-group": { "id": "be261da9-e183-4ce7-be06-a544268bcafe", "title": "City Sessions", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "489ce91b-6658-3307-9877-795b68554c98", "name": "United States", "sort-name": "United States", "iso-3166-1-codes": [ "US" ] }, "date": "2021-03-12" } ] } ], "artist-credit": [ { "name": "Citycreed", "artist": { "id": "f556bd09-3164-4ea4-97da-7cddad59deaa", "name": "Citycreed", "sort-name": "Citycreed" } } ], "artist-credit-id": "78e49569-a7be-4677-928b-63aa80315c17", "first-release-date": "2021-03-12" }, { "id": "259cc143-0c9d-4d2e-9c8c-2fe8882286f0", "tags": [ { "name": "bardcore", "count": 1 } ], "isrcs": [ "GBGLW2000952" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 211315, "releases": [ { "id": "2c83a478-522d-402b-a66c-48d650e49094", "date": "2021-03-05", "count": 1, "media": [ { "id": "993195a9-bafd-351f-9de1-5f89eb4b13fc", "track": [ { "id": "162c9ff1-08a4-4140-8bc6-a291703ab4d3", "title": "Blinding Lights", "length": 211357, "number": "4" } ], "format": "Digital Media", "position": 1, "track-count": 8, "track-offset": 3 } ], "title": "Bardcore Essentials", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 8, "release-group": { "id": "d6c70ee7-8ad5-4799-afc7-addd6defc1cf", "title": "Bardcore Essentials", "type-id": "dd2a21e1-0c00-3729-a7a0-de60b84eb5d1", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "secondary-types": [ "Compilation" ], "secondary-type-ids": [ "dd2a21e1-0c00-3729-a7a0-de60b84eb5d1" ] }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2021-03-05" } ] }, { "id": "0ed100ab-0be5-4bc2-89a0-dbdff6ea0ffb", "date": "2020-11-20", "count": 1, "media": [ { "id": "6cf1cf06-c232-3adb-bab6-9d16d3abd99d", "track": [ { "id": "4e9cf787-f12d-4e38-9454-29f980bbb6d6", "title": "Blinding Lights", "length": 211315, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "76213354-87d9-4f39-a6f9-a233fa807715", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2020-11-20" } ] }, { "id": "09db0349-1ebb-4e5e-8f46-b1df7a43ced2", "date": "2020-11-20", "count": 1, "media": [ { "id": "6c4f7deb-6ae4-3709-aa2b-6dcd4a08c58d", "track": [ { "id": "fa3f44a8-78b9-4c2c-ae92-572f69ee4031", "title": "Blinding Lights", "length": 211315, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "release-group": { "id": "76213354-87d9-4f39-a6f9-a233fa807715", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2020-11-20" } ] } ], "artist-credit": [ { "name": "Cornelius Link", "artist": { "id": "5ec393a9-dea5-4b78-b1bd-7e8c5708aefd", "name": "Cornelius Link", "sort-name": "Link, Cornelius" } } ], "artist-credit-id": "26b76aff-2805-4457-ae24-11cc166c73de", "first-release-date": "2020-11-20" }, { "id": "36a0c09a-0596-486b-b8d6-322bfb274412", "isrcs": [ "DEKF22300854" ], "score": 100, "title": "Blinding Lights", "video": null, "length": 149960, "releases": [ { "id": "5339e76e-f3c2-4649-96d1-59cc646bad29", "date": "2023-09-08", "count": 2, "media": [ { "id": "5b551bd5-2919-3294-bb68-3bee416cc870", "track": [ { "id": "fc0b732a-41d8-4a1e-8fb2-a6f112e51608", "title": "Blinding Lights", "length": 149960, "number": "8" } ], "format": "CD", "position": 2, "track-count": 21, "track-offset": 7 } ], "title": "Kuschelrock 37", "status": "Official", "country": "DE", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 42, "artist-credit": [ { "name": "Various Artists", "artist": { "id": "89ad4ac3-39f7-470e-963a-56509c546377", "name": "Various Artists", "sort-name": "Various Artists", "disambiguation": "add compilations to this artist" } } ], "release-group": { "id": "7164e10e-4f99-47db-9f8f-e5daef197966", "title": "Kuschelrock 37", "type-id": "dd2a21e1-0c00-3729-a7a0-de60b84eb5d1", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "secondary-types": [ "Compilation" ], "secondary-type-ids": [ "dd2a21e1-0c00-3729-a7a0-de60b84eb5d1" ] }, "release-events": [ { "area": { "id": "85752fda-13c4-31a3-bee5-0e5cb1f51dad", "name": "Germany", "sort-name": "Germany", "iso-3166-1-codes": [ "DE" ] }, "date": "2023-09-08" } ], "artist-credit-id": "949a7fd5-fe73-3e8f-922e-01ff4ca958f7" } ], "artist-credit": [ { "name": "Loi", "artist": { "id": "c277b10d-25c1-46e6-be81-5ae3c5d3a253", "name": "Loi", "aliases": [ { "name": "Leonie Greiner", "type": "Legal name", "locale": "en", "primary": null, "type-id": "d4dcd0c0-b341-3612-a332-c0ce797b25cf", "end-date": null, "sort-name": "Greiner, Leonie", "begin-date": null } ], "sort-name": "Loi", "disambiguation": "German singer Leonie Greiner" } } ], "artist-credit-id": "482a6349-cb50-3380-83eb-c8afad789536", "first-release-date": "2023-09-08" }, { "id": "78d5bb3f-c306-4e68-97ef-e7236ced86a0", "tags": [ { "name": "instrumental", "count": 1 }, { "name": "lo-fi", "count": 1 }, { "name": "nu jazz", "count": 1 }, { "name": "lofi", "count": 1 }, { "name": "instrumental hip hop", "count": 1 }, { "name": "lofi beats", "count": 1 }, { "name": "lo-fi cover", "count": 1 }, { "name": "lofi cover", "count": 1 } ], "isrcs": [ "QZHN42464052" ], "score": 100, "title": "blinding lights", "video": null, "length": 125000, "releases": [ { "id": "6781b90b-92ea-48b1-83c9-e3737604cd12", "date": "2024-03-15", "count": 1, "media": [ { "id": "745d7296-72d1-4dd4-9d68-28811ee3b0ad", "track": [ { "id": "a2791ded-2b4c-4b24-8431-9dc7bf2eee16", "title": "blinding lights", "length": 125000, "number": "2" } ], "format": "Digital Media", "position": 1, "track-count": 10, "track-offset": 1 } ], "title": "cover stories", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 10, "release-group": { "id": "468197da-4c7f-40b8-a174-b19ef010ae8d", "title": "cover stories", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2024-03-15" } ] } ], "artist-credit": [ { "name": "cutie blue", "artist": { "id": "f44f9bfa-9a15-4f04-bf33-fbbf626a52fd", "name": "cutie blue", "sort-name": "cutie blue" } } ], "artist-credit-id": "3d0460c2-1f4b-4600-a455-5d2f327cfe10", "first-release-date": "2024-03-15" }, { "id": "4061a7ec-95e7-49c5-87a5-a853bb95bd5c", "score": 100, "title": "blinding lights", "video": null, "length": 140000, "releases": [ { "id": "9381d7bb-bdf3-41c3-b3ea-29b2b2b29e75", "date": "2023-11-30", "count": 1, "media": [ { "id": "c4942315-56fb-4b9b-b4ce-800bafb483ef", "track": [ { "id": "d977bf41-478b-4c92-8fa7-67c235dc34bd", "title": "blinding lights", "length": 140000, "number": "2" } ], "format": "Digital Media", "position": 1, "track-count": 9, "track-offset": 1 } ], "title": "NO GENRE; volume 1", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 9, "artist-credit": [ { "name": "Blxck Cxsper", "artist": { "id": "f7233abe-747e-4341-a3f5-122f40dd9911", "name": "Blxck Cxsper", "sort-name": "Cxsper, Blxck" } } ], "release-group": { "id": "f9bda474-54a4-4a67-9880-3c0896a7da42", "title": "NO GENRE; volume 1", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2023-11-30" } ], "artist-credit-id": "5c0c4cfb-dcf6-4b3a-ba3d-a98ec00d30b2" } ], "artist-credit": [ { "name": "Blxck Cxsper", "artist": { "id": "f7233abe-747e-4341-a3f5-122f40dd9911", "name": "Blxck Cxsper", "aliases": [ { "name": "Lucas Charlie Rose", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Rose, Lucas Charlie", "begin-date": null }, { "name": "Blxck Cxsper", "type": "Artist name", "locale": null, "primary": null, "type-id": "894afba6-2816-3c24-8072-eadb66bd04bc", "end-date": null, "sort-name": "Blxck Cxsper", "begin-date": null } ], "sort-name": "Cxsper, Blxck" } } ], "artist-credit-id": "5c0c4cfb-dcf6-4b3a-ba3d-a98ec00d30b2", "first-release-date": "2023-11-30" }, { "id": "ca304907-4002-42a9-9996-02521cd40e0f", "score": 100, "title": "Blinding Lights", "video": null, "length": 210169, "releases": [ { "id": "aaaa6487-325f-4391-a98a-60b50a23a5b8", "date": "2023-06-02", "count": 1, "media": [ { "id": "2cb55ffd-d924-43ad-a932-b67566f59145", "track": [ { "id": "9d786ae5-d984-4cbc-8476-87c89cffa8eb", "title": "Blinding Lights", "length": 210169, "number": "1" } ], "format": "Digital Media", "position": 1, "track-count": 1, "track-offset": 0 } ], "title": "Blinding Lights", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 1, "artist-credit": [ { "name": "Skar", "artist": { "id": "a89213da-adc6-4b8c-8065-1e0667341bf2", "name": "Skar", "sort-name": "Skar", "disambiguation": "Video Game/Series/Movie Metal covers" } } ], "release-group": { "id": "97df2bc3-8b7c-42dc-a3f5-965ed8f1a458", "title": "Blinding Lights", "type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9", "primary-type": "Single", "primary-type-id": "d6038452-8ee0-3f68-affc-2de9a1ede0b9" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2023-06-02" } ], "artist-credit-id": "260fa34f-c51b-4213-908c-3afee1b10ea7" } ], "artist-credit": [ { "name": "Skar", "artist": { "id": "a89213da-adc6-4b8c-8065-1e0667341bf2", "name": "Skar", "aliases": [ { "name": "Skar Productions", "type": null, "locale": null, "primary": null, "end-date": null, "sort-name": "Skar Productions", "begin-date": null } ], "sort-name": "Skar", "disambiguation": "Video Game/Series/Movie Metal covers" } } ], "artist-credit-id": "260fa34f-c51b-4213-908c-3afee1b10ea7", "first-release-date": "2023-06-02" }, { "id": "dbf6263f-5149-4c89-b3d3-dcbfc0d9375f", "score": 100, "title": "Blinding Lights", "video": null, "length": 199009, "releases": [ { "id": "6329a8cd-de31-4d7f-8b0d-e68b9e1d5bc7", "date": "2022-01-17", "count": 1, "media": [ { "id": "99ce3fb3-b1c6-4507-865f-f7f0e33d181c", "track": [ { "id": "88cfe621-adce-421f-bf86-b8d6aeb0994c", "title": "Blinding Lights", "length": 199009, "number": "5" } ], "format": "Digital Media", "position": 1, "track-count": 7, "track-offset": 4 } ], "title": "Acoustic Covers, Vol. 6", "status": "Official", "country": "XW", "status-id": "4e304316-386d-3409-af2e-78857eec5cfe", "track-count": 7, "release-group": { "id": "b7a6dceb-d148-4d56-b114-e8a2cf1142ff", "title": "Acoustic Covers, Vol. 6", "type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc", "primary-type": "Album", "primary-type-id": "f529b476-6e62-324f-b0aa-1f3e33d313fc" }, "release-events": [ { "area": { "id": "525d4e18-3d00-31b9-a58b-a146a916de8f", "name": "[Worldwide]", "sort-name": "[Worldwide]", "iso-3166-1-codes": [ "XW" ] }, "date": "2022-01-17" } ] } ], "artist-credit": [ { "name": "Eiro Nareth", "artist": { "id": "8b1153c9-3b6f-4ca5-90a8-2d8d984dedb6", "name": "Eiro Nareth", "sort-name": "Nareth, Eiro" } } ], "artist-credit-id": "d9dcd5da-203a-413e-a444-570fa455465e", "first-release-date": "2022-01-17" } ] } ``` --- ## Shazam **Category:** music · **Slug:** `shazam` **Detail page:** https://zpi.web.id/api/music/shazam Song search via the Shazam catalog, plus per-country chart top tracks. Note: audio-fingerprint recognition is not implemented. **Tags:** music, search, charts ### Audio Recognize Audio fingerprint recognition (currently stub; use /search instead). - **Method:** `POST` - **Endpoint:** `https://api.zpi.web.id/v1/music:shazam/recognize` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `audio` | file | form | yes | Audio clip (3-20s recommended). Format: mp3, wav, m4a, ogg, flac, webm. Max 25MB. | **cURL:** ```bash curl -X POST "https://api.zpi.web.id/v1/music:shazam/recognize" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "audio": "clip.mp3" }' ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:shazam/recognize", { method: "POST", headers: { "x-api-key": process.env.ZAPI_KEY, "Content-Type": "application/json" }, body: JSON.stringify({ "audio": "clip.mp3" }) }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.post("https://api.zpi.web.id/v1/music:shazam/recognize", headers={"x-api-key": "YOUR_API_KEY"}, json={ "audio": "clip.mp3" }) data = r.json() ``` **Example response:** ```json { "url": "https://www.shazam.com/track/875332300/kicau-mania-akbar-chalay-remix", "isrc": "USA2P2626997", "album": "Kicau Mania (Akbar Chalay Remix) - Single", "genre": "Hip-Hop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music211/v4/0b/7e/37/0b7e3741-4470-b10b-638f-4bb7e514e652/823375146957_Cover.jpg/400x400cc.jpg", "label": "Glitch Haus", "title": "Kicau Mania (Akbar Chalay Remix)", "artist": "Akbar Chalay", "matched": true, "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/54/18/37/54183732-7a1e-e54e-d3a8-011d8e92a680/mzaf_1247343445695872952.plus.aac.ep.m4a", "trackId": "875332300", "subtitle": "Akbar Chalay", "elapsedMs": 448, "appleMusic": null, "releaseDate": "2026", "appleMusicId": null, "matchOffsetSec": 3.896168212 } ``` --- ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:shazam/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search term (title, artist) | | `types` | string | query | no | Comma list: songs\|artists. Default: songs,artists | | `country` | string | query | no | 2-letter ISO country (storefront). Default: US | | `limit` | number | query | no | Items per category (1-25). Default: 10 | | `page` | number | query | no | Page 1-based. Default: 1 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:shazam/search?q=blinding%20lights&types=songs%2Cartists&country=US&limit=10&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:shazam/search?q=blinding%20lights&types=songs%2Cartists&country=US&limit=10&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:shazam/search?q=blinding%20lights&types=songs%2Cartists&country=US&limit=10&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 11, "items": [ { "url": "https://music.apple.com/us/album/blinding-lights/1488408555?i=1488408568", "isrc": "USUG11904206", "type": "track", "album": "Blinding Lights - Single", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/a6/6e/bf/a66ebf79-5008-8948-b352-a790fc87446b/19UM1IM04638.rgb.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/17/b4/8f/17b48f9a-0b93-6bb8-fe1d-3a16623c2cfb/mzaf_5437418013983768184.plus.aac.ep.m4a", "trackId": "1488408568", "durationMs": 201570, "isExplicit": false, "releaseDate": "2019-11-29" }, { "url": "https://music.apple.com/us/album/blinding-lights-remix/1542842760?i=1542842761", "isrc": "USUG12004507", "type": "track", "album": "Blinding Lights (Remix) - Single", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/61/e7/3f/61e73f94-018d-5f50-50ec-8521952bc72e/20UM1IM11629.rgb.jpg/1000x1000bb.jpg", "title": "Blinding Lights (Remix)", "artist": "The Weeknd & ROSALÍA", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview221/v4/08/fe/de/08fede6c-762e-b24f-f4ff-a9e51bbde1cc/mzaf_5710142856850334281.plus.aac.ep.m4a", "trackId": "1542842761", "durationMs": 216123, "isExplicit": false, "releaseDate": "2020-12-04" }, { "url": "https://music.apple.com/us/album/blinding-lights/1513133938?i=1513133940", "isrc": "USWB12001485", "type": "track", "album": "Blinding Lights - Single", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/8a/e6/47/8ae64750-3dcf-ac4d-b0f6-c70c92893494/054391934000.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "Teddy Swims", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/4f/3a/c6/4f3ac6e5-50a3-2045-cd71-e51d103c1ad6/mzaf_15926875879381807489.plus.aac.ep.m4a", "trackId": "1513133940", "durationMs": 214875, "isExplicit": false, "releaseDate": "2020-05-15" }, { "url": "https://music.apple.com/us/album/blinding-lights-country-version/1735024497?i=1735024505", "isrc": "CALZP2400006", "type": "track", "album": "Blinding Lights (Country Version) - Single", "genre": "Country", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/0c/08/60/0c08603c-2eff-4dc7-4393-7cb1182bd666/198391497544.jpg/1000x1000bb.jpg", "title": "Blinding Lights (Country Version)", "artist": "Tebey", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview122/v4/c4/2a/51/c42a5121-3511-fbb6-27a4-702e90951103/mzaf_532872528052287412.plus.aac.ep.m4a", "trackId": "1735024505", "durationMs": 186009, "isExplicit": false, "releaseDate": "2024-03-09" }, { "url": "https://music.apple.com/us/album/blinding-lights/1531252579?i=1531252590", "isrc": "USAB02001322", "type": "track", "album": "KIDZ BOP 2021", "genre": "Children's Music", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/a3/5f/07/a35f074c-a9cd-a148-3d05-5ec1988f6c99/20CRGIM24141.rgb.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "KIDZ BOP Kids", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/67/de/f5/67def519-34f4-f7e9-0cb8-7f2399dff070/mzaf_3786159994825546925.plus.aac.ep.m4a", "trackId": "1531252590", "durationMs": 179247, "isExplicit": false, "releaseDate": "2020-04-17" }, { "url": "https://music.apple.com/us/album/blinding-lights/1627610405?i=1627610546", "isrc": "USAT22206882", "type": "track", "album": "Blinding Lights - Single", "genre": "Alternative", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music112/v4/10/7a/52/107a52d6-0f4e-44c2-7f7c-1671ecd05345/075679740731.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "All Time Low", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview112/v4/93/ae/72/93ae72e0-e138-7ad1-97d6-316e7e6c34b5/mzaf_17929181185071519993.plus.aac.ep.m4a", "trackId": "1627610546", "durationMs": 193152, "isExplicit": false, "releaseDate": "2021-07-30" }, { "url": "https://music.apple.com/us/album/blinding-lights/1584826306?i=1584826307", "isrc": "DEA622100968", "type": "track", "album": "Blinding Lights - Single", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/91/45/e6/9145e62e-ba62-d918-ad69-8a8f0742c122/190296456312.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "Loi", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/f6/02/c6/f602c678-6294-6269-7f6a-0a16d2a54d5d/mzaf_10096976185372964975.plus.aac.p.m4a", "trackId": "1584826307", "durationMs": 147368, "isExplicit": false, "releaseDate": "2021-09-07" }, { "url": "https://music.apple.com/us/album/blinding-lights-apple-music-sessions/1760204287?i=1760204542", "isrc": "USUG12404983", "type": "track", "album": "Apple Music Nashville Sessions", "genre": "Country", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/61/48/ac/6148ac57-5f56-522c-283b-320561205409/24UMGIM79424.rgb.jpg/1000x1000bb.jpg", "title": "Blinding Lights (Apple Music Sessions)", "artist": "Tyler Hubbard", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/4e/d1/1a/4ed11a6c-9090-7ed7-bd2c-9932b9bc49f6/mzaf_12260914930762365601.plus.aac.ep.m4a", "trackId": "1760204542", "durationMs": 210292, "isExplicit": false, "releaseDate": "2024-08-05" }, { "url": "https://music.apple.com/us/album/blinding-lights/1499378108?i=1499378607", "isrc": "USUG11904206", "type": "track", "album": "After Hours", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/6f/bc/e6/6fbce6c4-c38c-72d8-4fd0-66cfff32f679/20UMGIM12176.rgb.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "The Weeknd", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview211/v4/19/d6/60/19d660ff-e3a9-8377-15a3-ce4b28e89cac/mzaf_7838036723178550658.plus.aac.ep.m4a", "trackId": "1499378607", "durationMs": 200046, "isExplicit": false, "releaseDate": "2019-11-29" }, { "url": "https://music.apple.com/us/album/blinding-lights/1556108136?i=1556108146", "isrc": "USUM72103027", "type": "track", "album": "Blinding Lights - Single", "genre": "Alternative", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/25/86/75/2586751e-538c-9a96-9d84-02d27f57cba3/21UMGIM17253.rgb.jpg/1000x1000bb.jpg", "title": "Blinding Lights", "artist": "X Ambassadors", "preview": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview125/v4/b9/8a/b3/b98ab32b-f373-b9da-ffce-8452e003e581/mzaf_11570117381865072744.plus.aac.ep.m4a", "trackId": "1556108146", "durationMs": 177839, "isExplicit": false, "releaseDate": "2021-03-09" }, { "url": "https://music.apple.com/us/artist/the-weeknd/479756766", "name": "The Weeknd", "type": "artist", "genre": "R&B/Soul", "image": "https://is1-ssl.mzstatic.com/image/thumb/AMCArtistImages211/v4/5a/56/a4/5a56a4df-e9bf-8388-3bd3-72fdb1570d18/ami-identity-777ad796f94973f081f3e54e4b81fcb1-2026-04-16T21-49-06.937Z_cropped.png/1000x1000bb.jpg", "artistId": "479756766" } ], "hasMore": true, "nextPage": 2 } ``` --- ### Track Detail Fetch full metadata for a single track by ID or URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:shazam/track/:trackId` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `trackId` | string | path | yes | Numeric track ID | | `country` | string | query | no | 2-letter ISO storefront. Default: US | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:shazam/track/:trackId?country=US" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:shazam/track/:trackId?country=US", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:shazam/track/:trackId?country=US", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.shazam.com/track/559284799/killin-it-feat-nazar-tejun", "alias": "killin-it-feat-nazar-tejun", "genre": "Pop", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/12/71/eb/1271ebd4-48e4-a2c4-a500-8d0c5293d162/5059713359979_cover.jpg/400x400cc.jpg", "share": { "href": "https://www.shazam.com/track/559284799/killin-it-feat-nazar-tejun", "text": "Killin It (feat. Nazar & Tejun) by Danny Ricch & Busy", "image": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/12/71/eb/1271ebd4-48e4-a2c4-a500-8d0c5293d162/5059713359979_cover.jpg/400x400cc.jpg", "subject": "Killin It (feat. Nazar & Tejun) - Danny Ricch & Busy", "twitter": "I used @Shazam to discover Killin It (feat. Nazar & Tejun) by Danny Ricch & Busy.", "snapchat": "https://www.shazam.com/partner/sc/track/559284799" }, "title": "Killin It (feat. Nazar & Tejun)", "artist": "Danny Ricch & Busy", "artists": [ { "id": "42", "alias": "danny-ricch", "appleMusicId": "1555066250" }, { "id": "42", "alias": "busy", "appleMusicId": "1578742019" } ], "trackId": "559284799", "isExplicit": false, "imageBackground": "https://is1-ssl.mzstatic.com/image/thumb/Music114/v4/12/71/eb/1271ebd4-48e4-a2c4-a500-8d0c5293d162/5059713359979_cover.jpg/400x400cc.jpg" } ``` --- ### Top Charts Top chart tracks by country. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:shazam/top` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `country` | string | query | no | 2-letter ISO country (US, ID, GB) or 'WORLD' for global. Default: WORLD | | `limit` | number | query | no | Max rows (1-200). Default: 50 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:shazam/top?country=US&limit=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:shazam/top?country=US&limit=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:shazam/top?country=US&limit=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 20, "items": [ { "rank": 1, "type": "track", "title": "Janice STFU", "artist": "Drake" }, { "rank": 2, "type": "track", "title": "Choosin' Texas", "artist": "Ella Langley" }, { "rank": 3, "type": "track", "title": "Spend Dat", "artist": "Yung Miami" }, { "rank": 4, "type": "track", "title": "Chicago", "artist": "Michael Jackson" }, { "rank": 5, "type": "track", "title": "So Easy (To Fall In Love)", "artist": "Olivia Dean" }, { "rank": 6, "type": "track", "title": "Go", "artist": "The Chemical Brothers" }, { "rank": 7, "type": "track", "title": "Freakin’ Out", "artist": "Dexter and The Moonrocks" }, { "rank": 8, "type": "track", "title": "Ran To Atlanta", "artist": "Drake, Future & Molly Santana" }, { "rank": 9, "type": "track", "title": "Risk It All", "artist": "Bruno Mars" }, { "rank": 10, "type": "track", "title": "Man I Need", "artist": "Olivia Dean" }, { "rank": 11, "type": "track", "title": "worry (Instrumental Ultra Slowed)", "artist": "LONOWN & riserayss" }, { "rank": 12, "type": "track", "title": "Shabang", "artist": "Drake" }, { "rank": 13, "type": "track", "title": "Self Aware", "artist": "Temper City" }, { "rank": 14, "type": "track", "title": "2 Hard 4 The Radio", "artist": "Drake" }, { "rank": 15, "type": "track", "title": "Superpowers", "artist": "Daniel Caesar" }, { "rank": 16, "type": "track", "title": "Raindance", "artist": "Dave & Tems" }, { "rank": 17, "type": "track", "title": "Cinderella (feat. Ty Dolla $ign)", "artist": "Mac Miller" }, { "rank": 18, "type": "track", "title": "Die On This Hill", "artist": "SIENNA SPIRO" }, { "rank": 19, "type": "track", "title": "Be Her", "artist": "Ella Langley" }, { "rank": 20, "type": "track", "title": "Dracula", "artist": "Tame Impala" } ], "country": "US", "chartDate": "Tuesday, 26 May 2026 [performance over the past 7 days]" } ``` --- ## SongBPM **Category:** music · **Slug:** `songbpm` **Detail page:** https://zpi.web.id/api/music/songbpm Search song tempo and BPM data. **Tags:** music, bpm ### Search Search song tempo and BPM data. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:songbpm/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Song/artist search | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:songbpm/search?query=blinding%20lights" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:songbpm/search?query=blinding%20lights", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:songbpm/search?query=blinding%20lights", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 31, "results": [ { "bpm": 140, "key": "A♯/B♭", "url": "https://songbpm.com/@gunna/one-of-wun-tU6c-8CY4X", "title": "one of wun", "artist": "Gunna", "duration": "2:24" }, { "bpm": 120, "key": "G", "url": "https://songbpm.com/@toby-fox/megalovania-afe5601f-431d-4e8f-9456-abc2880067b3", "title": "MEGALOVANIA", "artist": "Toby Fox", "duration": "2:36" }, { "bpm": 125, "key": "B", "url": "https://songbpm.com/@acraze/do-it-to-it-ko4en", "title": "Do It To It", "artist": "ACRAZE", "duration": "2:38" }, { "bpm": 110, "key": "A♯/B♭", "url": "https://songbpm.com/@stomach-book/my-diorama-jji2s", "title": "My Diorama", "artist": "STOMACH BOOK", "duration": "3:13" }, { "bpm": 150, "key": "C♯/D♭", "url": "https://songbpm.com/@ww/oiia-oiia-spinning-cat-ryzhz", "title": "OIIA OIIA (Spinning Cat)", "artist": "夏火ww", "duration": "2:14" }, { "bpm": 175, "key": "G♯/A♭", "url": "https://songbpm.com/@dnmo/bombalaya-blooom-remix-nf8aj", "title": "Bombalaya - Blooom Remix", "artist": "DNMO", "duration": "4:09" }, { "bpm": 138, "key": "C♯/D♭", "url": "https://songbpm.com/@bianca-oblivion/fuego-xs1yo", "title": "Fuego", "artist": "Bianca Oblivion", "duration": "4:16" }, { "bpm": 0, "url": "https://songbpm.com/@bianca-oblivion/fuego-xs1yo/apple-music" }, { "bpm": 128, "key": "F♯/G♭", "url": "https://songbpm.com/@checco-zalone/yo-no-trabajo-p2it0", "title": "Yo no trabajo", "artist": "Checco Zalone", "duration": "1:54" }, { "bpm": 0, "url": "https://songbpm.com/@checco-zalone/yo-no-trabajo-p2it0/apple-music" }, { "bpm": 103, "key": "G", "url": "https://songbpm.com/@choker/starfruit-la", "title": "Starfruit LA", "artist": "Choker", "duration": "4:04" }, { "bpm": 127, "key": "B", "url": "https://songbpm.com/@omega/mr-saxobeat-shroy", "title": "Mr. Saxobeat", "artist": "Omega", "duration": "4:05" }, { "bpm": 0, "url": "https://songbpm.com/@omega/mr-saxobeat-shroy/apple-music" }, { "bpm": 77, "key": "G♯/A♭", "url": "https://songbpm.com/@bts/run-bts-uWOxpQta6V", "title": "Run BTS", "artist": "BTS", "duration": "3:25" }, { "bpm": 100, "key": "F♯/G♭", "url": "https://songbpm.com/@u2/sunday-bloody-sunday-aa0e8588-9b5d-4b08-a39c-124e264d2791", "title": "Sunday Bloody Sunday", "artist": "U2", "duration": "4:39" }, { "bpm": 0, "url": "https://songbpm.com/@u2/sunday-bloody-sunday-aa0e8588-9b5d-4b08-a39c-124e264d2791/apple-music" }, { "bpm": 174, "key": "F", "url": "https://songbpm.com/@john-b/take-me-to-la-cinta---2020-remaster-Y4oekI66WP", "title": "Take Me to La Cinta - 2020 Remaster", "artist": "John B", "duration": "6:13" }, { "bpm": 126, "key": "E", "url": "https://songbpm.com/@f-x/4-walls", "title": "4 Walls", "artist": "f(x)", "duration": "3:27" }, { "bpm": 148, "key": "C♯/D♭", "url": "https://songbpm.com/@midwxst/new-year-new-swag-vg1d1", "title": "NEW YEAR NEW SWAG", "artist": "midwxst", "duration": "2:00" }, { "bpm": 0, "url": "https://songbpm.com/@midwxst/new-year-new-swag-vg1d1/apple-music" }, { "bpm": 135, "key": "C", "url": "https://songbpm.com/@belen-jurado/fuego-x0453", "title": "Fuego", "artist": "Belén Jurado", "duration": "3:12" }, { "bpm": 0, "url": "https://songbpm.com/@belen-jurado/fuego-x0453/apple-music" }, { "bpm": 145, "key": "A♯/B♭", "url": "https://songbpm.com/@ado/backlight-QTnOZPiwCV", "title": "Backlight", "artist": "Ado", "duration": "3:58" }, { "bpm": 125, "key": "E", "url": "https://songbpm.com/@lil-pump/molly", "title": "Molly", "artist": "Lil Pump", "duration": "2:03" }, { "bpm": 124, "key": "E", "url": "https://songbpm.com/@the-white-stripes/seven-nation-army-87fdf2e4-b8b0-4390-857a-4fe5d9345a8f", "title": "Seven Nation Army", "artist": "The White Stripes", "duration": "3:52" }, { "bpm": 95, "key": "E", "url": "https://songbpm.com/@common/they-say", "title": "They Say", "artist": "Common", "duration": "3:57" }, { "bpm": 87, "key": "B", "url": "https://songbpm.com/@kenshi-yonezu/lemon-ce7c54b6-a64c-4a06-80f1-e6d6f8d6926b", "title": "Lemon", "artist": "Kenshi Yonezu", "duration": "4:16" }, { "bpm": 98, "key": "C♯/D♭", "url": "https://songbpm.com/@midwxst/223-s-feat--babytron-_GnkFlSPXN", "title": "223's (feat. BabyTron)", "artist": "midwxst", "duration": "2:13" }, { "bpm": 96, "key": "A", "url": "https://songbpm.com/@red-hot-chili-peppers/californication", "title": "Californication", "artist": "Red Hot Chili Peppers", "duration": "5:30" }, { "bpm": 82, "key": "F", "url": "https://songbpm.com/@sam-smith/i-m-not-the-only-one-b03ea20c-11e7-4f71-917b-640c92595b40", "title": "I'm Not The Only One", "artist": "Sam Smith", "duration": "3:59" }, { "bpm": 174, "key": "B", "url": "https://songbpm.com/@jay-z/empire-state-of-mind-e5fccdda-c6d1-4d5c-9ff6-480ff98311ce", "title": "Empire State Of Mind", "artist": "JAŸ-Z", "duration": "4:37" } ] } ``` --- ## SoundCloud **Category:** music · **Slug:** `soundcloud` **Detail page:** https://zpi.web.id/api/music/soundcloud Search tracks, fetch metadata, and extract full audio download URLs (progressive MP3 / HLS) for public SoundCloud tracks. **Tags:** music, search, download, stream ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:soundcloud/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search query | | `limit` | number | query | no | Items per page (1-50). Default 20 | | `page` | number | query | no | Page 1-based. Default 1 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:soundcloud/search?q=blinding%20lights&limit=1&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:soundcloud/search?q=blinding%20lights&limit=1&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:soundcloud/search?q=blinding%20lights&limit=1&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "url": "https://soundcloud.com/user-167787390/the-weeknd-blinding-lights", "image": "https://i1.sndcdn.com/artworks-12n314eZNB8i9ydb-S3uaYg-t500x500.jpg", "title": "The Weeknd - Blinding Lights full", "artist": { "id": 978685288, "url": "https://soundcloud.com/user-167787390", "name": "Minh Prime" }, "trackId": 1316258221, "likeCount": 43746, "playCount": 2715988, "durationMs": 762820, "isExplicit": false, "releaseDate": "2022-08-02T06:27:33Z" }, { "url": "https://soundcloud.com/theweeknd/blinding-lights", "genre": "R & B", "image": "https://i1.sndcdn.com/artworks-QSijq2r1DiZI-0-t500x500.jpg", "title": "Blinding Lights", "artist": { "id": 3274725, "url": "https://soundcloud.com/theweeknd", "name": "The Weeknd" }, "trackId": 718846078, "likeCount": 528112, "playCount": 32580337, "durationMs": 30000, "isExplicit": false, "releaseDate": "2019-11-29T00:00:00Z" }, { "url": "https://soundcloud.com/jump-singers/blinding-lights", "genre": "Jazz & Blues", "image": "https://i1.sndcdn.com/artworks-LOzwVN5TpQHegdjC-JZ0HFg-t500x500.jpg", "title": "Blinding Lights", "artist": { "id": 1176114340, "url": "https://soundcloud.com/jump-singers", "name": "Jump Singers" }, "trackId": 2274096695, "likeCount": 1070, "playCount": 48906, "durationMs": 208769, "isExplicit": false, "releaseDate": "2026-03-04T12:16:33Z" }, { "url": "https://soundcloud.com/diablomorado/blinding-lights-slowed", "genre": "R&B & Soul", "image": "https://i1.sndcdn.com/artworks-000645208951-8s31q9-t500x500.jpg", "title": "Blinding Lights (slowed)", "artist": { "id": 106183119, "url": "https://soundcloud.com/diablomorado", "name": "Pablito" }, "trackId": 720640018, "likeCount": 8567, "playCount": 636339, "durationMs": 256098, "isExplicit": false, "releaseDate": "2019-11-30T07:10:37Z" }, { "url": "https://soundcloud.com/musicsparkz/bl-sparkz", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-RNRSQntYZtUYMbGQ-lnwzxA-t500x500.jpg", "title": "Blinding Lights - The Weeknd (SPARKZ Remix)", "artist": { "id": 889235560, "url": "https://soundcloud.com/musicsparkz", "name": "SPARKZ" }, "trackId": 2094050781, "likeCount": 466, "playCount": 68745, "durationMs": 204958, "isExplicit": false, "releaseDate": "2025-05-11T23:13:22Z" }, { "url": "https://soundcloud.com/chainside/the-weeknd-blinded-by-the-light-lee-wright-remake", "genre": "World", "image": "https://i1.sndcdn.com/artworks-a0STLLgLK9kgeFId-cWP0yg-t500x500.jpg", "title": "The Weeknd - Blinding lights (Lee Wright Remake)", "artist": { "id": 26117886, "url": "https://soundcloud.com/chainside", "name": "Lee Wright" }, "trackId": 781154188, "likeCount": 36367, "playCount": 2725304, "durationMs": 159863, "isExplicit": false, "releaseDate": "2020-03-22T21:38:52Z" }, { "url": "https://soundcloud.com/user-596462352/spectre-blinding-lights-x", "genre": "Hip-hop & Rap", "image": "https://i1.sndcdn.com/artworks-GFWJAWHnUlR1ztOR-z0oQjA-t500x500.jpg", "title": "BLINDING LIGHTS x FLASHING LIGHTS", "artist": { "id": 1188780715, "url": "https://soundcloud.com/user-596462352", "name": "Alexander Likens" }, "trackId": 2086800306, "likeCount": 2217, "playCount": 109404, "durationMs": 175222, "isExplicit": false, "releaseDate": "2025-04-28T21:50:45Z" }, { "url": "https://soundcloud.com/addal/addal-blinding-lights-1", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-vYmwetrfDkVIkRpw-jVT49Q-t500x500.jpg", "title": "Addal - Blinding Lights", "artist": { "id": 9969027, "url": "https://soundcloud.com/addal", "name": "ADDAL" }, "trackId": 879479020, "likeCount": 2346, "playCount": 140777, "durationMs": 254562, "isExplicit": false, "releaseDate": "2020-08-21T06:10:50Z" }, { "url": "https://soundcloud.com/risinginsane/blinding-lights", "genre": "Metal", "image": "https://i1.sndcdn.com/artworks-iACTcJlXschB-0-t500x500.jpg", "title": "Blinding Lights", "artist": { "id": 768614959, "url": "https://soundcloud.com/risinginsane", "name": "Rising Insane" }, "trackId": 746490460, "likeCount": 2422, "playCount": 183108, "durationMs": 30000, "isExplicit": false, "releaseDate": "2020-01-17T00:00:00Z" }, { "url": "https://soundcloud.com/revelriesmusic/blinding_lights", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-NUZBzW9CLsV7AmvH-TlttmQ-t500x500.jpg", "title": "Revelries - Blinding Lights (Weeknd Cover Remix)", "artist": { "id": 184389231, "url": "https://soundcloud.com/revelriesmusic", "name": "Revelries" }, "trackId": 851514058, "likeCount": 39415, "playCount": 4039241, "durationMs": 176452, "isExplicit": false, "releaseDate": "2020-07-03T14:03:11Z" }, { "url": "https://soundcloud.com/prodsluggybeats/blinding-lights-sluggy-beats-1", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-4P0ZyyGQHyQyLwwN-8XruhA-t500x500.png", "title": "Blinding Lights (Sluggy Beats Remix)", "artist": { "id": 847542466, "url": "https://soundcloud.com/prodsluggybeats", "name": "Sluggy Beats" }, "trackId": 2274101522, "likeCount": 456, "playCount": 24228, "durationMs": 181099, "isExplicit": false, "releaseDate": "2026-02-27T00:01:20Z" }, { "url": "https://soundcloud.com/soaverecords/sunwaves-namte-blinding-lights", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-yJPY23HZ2qSKsXGh-IbEjDQ-t500x500.jpg", "title": "Sunwaves & Namté - Blinding Lights", "artist": { "id": 70847422, "url": "https://soundcloud.com/soaverecords", "name": "Soave" }, "trackId": 1830418704, "likeCount": 0, "playCount": 0, "durationMs": 161501, "isExplicit": false, "releaseDate": "2024-06-20T22:00:18Z" }, { "url": "https://soundcloud.com/joris-voorn/alex-kennon-blinding-lights-joris-voorn-remix", "genre": "Techno", "image": "https://i1.sndcdn.com/artworks-EC7vgTyiI5f5TR4c-9jdpXg-t500x500.jpg", "title": "Alex Kennon - Blinding Lights (Joris Voorn Remix)", "artist": { "id": 198443, "url": "https://soundcloud.com/joris-voorn", "name": "Joris Voorn" }, "trackId": 1026009034, "likeCount": 9608, "playCount": 355609, "durationMs": 313816, "isExplicit": false, "releaseDate": "2021-04-09T14:07:04Z" }, { "url": "https://soundcloud.com/diskatch/blinding-lights", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-q2Yh9WnLROI7YjXu-zhrovg-t500x500.jpg", "title": "Blinding Lights", "artist": { "id": 305955073, "url": "https://soundcloud.com/diskatch", "name": "DisKatch" }, "trackId": 2317343804, "likeCount": 87, "playCount": 540, "durationMs": 230869, "isExplicit": false, "releaseDate": "2026-05-21T20:15:14Z" }, { "url": "https://soundcloud.com/massiveruehl/blinding-lights-hardstyle", "genre": "Sports", "image": "https://i1.sndcdn.com/artworks-mIgerkDLCO8bvHs6-xGWGvQ-t500x500.jpg", "title": "The Weeknd - Blinding Lights ((Alphachoice Hardstyle Bootleg)(Edit Zyzz - Massive rühl)", "artist": { "id": 1081840789, "url": "https://soundcloud.com/massiveruehl", "name": "Massive Rühl" }, "trackId": 1209678019, "likeCount": 28310, "playCount": 2966309, "durationMs": 156598, "isExplicit": false, "releaseDate": "2022-02-04T11:16:27Z" }, { "url": "https://soundcloud.com/user-351929551/blinding-lights-x-big-poppa", "genre": "Hip-hop & Rap", "image": "https://i1.sndcdn.com/artworks-3szkQoOqAM2M2UKb-fpADxg-t500x500.jpg", "title": "blinding lights x big poppa", "artist": { "id": 965968483, "url": "https://soundcloud.com/user-351929551", "name": "kanye south" }, "trackId": 1037335363, "likeCount": 5130, "playCount": 334992, "durationMs": 205952, "isExplicit": false, "releaseDate": "2021-04-26T23:38:54Z" }, { "url": "https://soundcloud.com/user-940587657/blinding-lights-the-weeknd", "image": "https://i1.sndcdn.com/artworks-1KBaz7eX7lZN5m51-zlt7sw-t500x500.jpg", "title": "blinding lights - the weeknd (slowed & reverbed?)", "artist": { "id": 972089230, "url": "https://soundcloud.com/user-940587657", "name": "yaromilov" }, "trackId": 1668655809, "likeCount": 486, "playCount": 42119, "durationMs": 221749, "isExplicit": false, "releaseDate": "2023-11-18T16:55:14Z" }, { "url": "https://soundcloud.com/user-111626996/blinding-lights-in-an-empty-mall-slowed", "image": "https://i1.sndcdn.com/artworks-miRErEfRDxP7nCZn-XE50Bw-t500x500.jpg", "title": "Blinding Lights (slowed)", "artist": { "id": 765009364, "url": "https://soundcloud.com/user-111626996", "name": "PULS3" }, "trackId": 782786578, "likeCount": 1686, "playCount": 134277, "durationMs": 221076, "isExplicit": false, "releaseDate": "2020-03-25T05:22:10Z" }, { "url": "https://soundcloud.com/tamerkaan/tamer-kaan-jordan-rys-blinding-lights", "genre": "Drum & Bass", "image": "https://i1.sndcdn.com/artworks-RGuDVA2Uo8ptqtJY-x5ScDQ-t500x500.jpg", "title": "Tamer Kaan & Jordan Rys - Blinding Lights", "artist": { "id": 300780559, "url": "https://soundcloud.com/tamerkaan", "name": "Tamer Kaan" }, "trackId": 1131997387, "likeCount": 609, "playCount": 63696, "durationMs": 142617, "isExplicit": false, "releaseDate": "2021-09-27T18:32:36Z" }, { "url": "https://soundcloud.com/gombocrec/noise-mafia-blinding-lights-hard-trance-edit", "genre": "Trance", "image": "https://i1.sndcdn.com/artworks-4E6KVQMAWo63T9y5-y8RcCw-t500x500.jpg", "title": "Noise Mafia - Blinding Lights (Free Download)", "artist": { "id": 282996851, "url": "https://soundcloud.com/gombocrec", "name": "Gomboc Records" }, "trackId": 1817336340, "likeCount": 6201, "playCount": 172582, "durationMs": 381222, "isExplicit": false, "releaseDate": "2024-05-20T15:31:49Z" } ], "total": 10462, "hasMore": true, "nextPage": 2 } ``` --- ### Track Detail Fetch full metadata for a single track by ID or URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:soundcloud/track` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Track URL or numeric track ID | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:soundcloud/track?url=https%3A%2F%2Fsoundcloud.com%2Fuser-167787390%2Fthe-weeknd-blinding-lights" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:soundcloud/track?url=https%3A%2F%2Fsoundcloud.com%2Fuser-167787390%2Fthe-weeknd-blinding-lights", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:soundcloud/track?url=https%3A%2F%2Fsoundcloud.com%2Fuser-167787390%2Fthe-weeknd-blinding-lights", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://soundcloud.com/user-167787390/the-weeknd-blinding-lights", "image": "https://i1.sndcdn.com/artworks-12n314eZNB8i9ydb-S3uaYg-t500x500.jpg", "title": "The Weeknd - Blinding Lights full", "artist": { "id": 978685288, "url": "https://soundcloud.com/user-167787390", "name": "Minh Prime", "avatar": "https://i1.sndcdn.com/avatars-XQXJDSO9uo5vJUlj-dcXEqg-t500x500.jpg", "verified": false }, "hasHls": true, "license": "all-rights-reserved", "trackId": 1316258221, "likeCount": 43746, "playCount": 2715988, "durationMs": 762820, "isExplicit": false, "streamable": true, "releaseDate": "2022-08-02T06:27:33Z", "repostCount": 281, "waveformUrl": "https://wave.sndcdn.com/ZPlWIUpUD7Jz_m.json", "commentCount": 624, "downloadable": false, "lastModified": "2022-12-16T16:47:22Z", "downloadCount": 0, "fullDurationMs": 762802, "hasProgressive": true } ``` --- ### Playlist Detail Fetch playlist info with tracklist. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:soundcloud/playlist` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Playlist/set URL or numeric playlist ID | | `limit` | number | query | no | Max tracks to return (1-200). Default 100 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:soundcloud/playlist?url=https%3A%2F%2Fsoundcloud.com%2Fmugatunesofficial%2Fsets%2Ftiktok-tik-tok-best-songs-hits-2020-viral&limit=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:soundcloud/playlist?url=https%3A%2F%2Fsoundcloud.com%2Fmugatunesofficial%2Fsets%2Ftiktok-tik-tok-best-songs-hits-2020-viral&limit=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:soundcloud/playlist?url=https%3A%2F%2Fsoundcloud.com%2Fmugatunesofficial%2Fsets%2Ftiktok-tik-tok-best-songs-hits-2020-viral&limit=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://soundcloud.com/mugatunesofficial/sets/tiktok-tik-tok-best-songs-hits-2020-viral", "tags": "Workout Party Chill Study TikTok \"Tik Tok\"", "count": 100, "genre": "Party", "image": "https://i1.sndcdn.com/artworks-R7Tb28ChEtyyHx7N-32fYvQ-t500x500.jpg", "items": [ { "url": "https://soundcloud.com/raye/where-is-my-husband", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-79zKyQ9mcZvO-0-t500x500.jpg", "title": "WHERE IS MY HUSBAND!", "artist": { "id": 115767975, "url": "https://soundcloud.com/raye", "name": "RAYE" }, "trackId": 2172401325, "likeCount": 46150, "playCount": 1694273, "durationMs": 30000 }, { "url": "https://soundcloud.com/iam-doechii/anxiety", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-GtsRERqtQq3b-0-t500x500.jpg", "title": "Anxiety", "artist": { "id": 177337922, "url": "https://soundcloud.com/iam-doechii", "name": "Doechii" }, "trackId": 2046899172, "likeCount": 91420, "playCount": 3470647, "durationMs": 30000 }, { "url": "https://soundcloud.com/puesta-soul/boston-stella-lefty-cover", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-SSTU602zWLf9d3lj-8l4kFg-t500x500.png", "title": "Boston (Stella Lefty Deep House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2306743976, "likeCount": 69, "playCount": 6905, "durationMs": 198799 }, { "url": "https://soundcloud.com/discolines/noobrokeboys", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-AEPpVywipTkF6obv-2yIDKA-t500x500.jpg", "title": "Disco Lines & Tinashe - No Broke Boys", "artist": { "id": 27269702, "url": "https://soundcloud.com/discolines", "name": "Disco Lines" }, "trackId": 2108907732, "likeCount": 195509, "playCount": 10793856, "durationMs": 164040 }, { "url": "https://soundcloud.com/taylorswiftofficial/the-fate-of-ophelia", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-VIQ3As8XCQ1K-0-t500x500.jpg", "title": "The Fate of Ophelia", "artist": { "id": 207963889, "url": "https://soundcloud.com/taylorswiftofficial", "name": "Taylor Swift" }, "trackId": 2181406707, "likeCount": 48595, "playCount": 2186386, "durationMs": 30000 }, { "url": "https://soundcloud.com/gl0balofficial/gl0bal-bronzy-ft-run-club-see-me-1", "genre": "Dubstep", "image": "https://i1.sndcdn.com/artworks-Jezt9XOdkwPaJxQ8-TAAtxA-t500x500.jpg", "title": "Gl0bal & Bronzy Ft. RUN CLUB - See Me", "artist": { "id": 15336065, "url": "https://soundcloud.com/gl0balofficial", "name": "GL0BAL 💤" }, "trackId": 1936719860, "likeCount": 238, "playCount": 33845, "durationMs": 255143 }, { "url": "https://soundcloud.com/noahkahan/stick-season", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-QE6fGDyydAkw-0-t500x500.jpg", "title": "Stick Season", "artist": { "id": 8771626, "url": "https://soundcloud.com/noahkahan", "name": "Noah Kahan" }, "trackId": 1297701826, "likeCount": 170469, "playCount": 13548589, "durationMs": 30000 }, { "url": "https://soundcloud.com/lolayoung-music/messy", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-jiWaRsHAfqO2-0-t500x500.jpg", "title": "Messy", "artist": { "id": 723139645, "url": "https://soundcloud.com/lolayoung-music", "name": "Lola Young" }, "trackId": 1828822362, "likeCount": 105263, "playCount": 4458177, "durationMs": 30000 }, { "url": "https://soundcloud.com/bauti_music/irun_bauti_flip", "image": "https://i1.sndcdn.com/artworks-gyRTjjsvsfqdbyfO-IVkDhg-t500x500.png", "title": "HAVEN. - I Run (bauti flip)", "artist": { "id": 888967825, "url": "https://soundcloud.com/bauti_music", "name": "bauti" }, "trackId": 2212605785, "likeCount": 1341, "playCount": 41781, "durationMs": 195698 }, { "url": "https://soundcloud.com/ibiza-tunes/lost-in-the-night", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-6ztmzk7ZIxZu2qQy-7OHAAA-t500x500.jpg", "title": "Lost in The Night", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1955821507, "likeCount": 182, "playCount": 41186, "durationMs": 159380 }, { "url": "https://soundcloud.com/jackharlow/jack-harlow-lovin-on-me", "genre": "Rap/Hip Hop", "image": "https://i1.sndcdn.com/artworks-X7bElqMCAJg4-0-t500x500.jpg", "title": "Lovin On Me", "artist": { "id": 3759694, "url": "https://soundcloud.com/jackharlow", "name": "Jack Harlow" }, "trackId": 1660314906, "likeCount": 243952, "playCount": 14352067, "durationMs": 30000 }, { "url": "https://soundcloud.com/davidguetta/im-good-blue", "genre": "Dance", "image": "https://i1.sndcdn.com/artworks-QDwth7vDtsxs-0-t500x500.jpg", "title": "I'm Good (Blue)", "artist": { "id": 4904351, "url": "https://soundcloud.com/davidguetta", "name": "David Guetta" }, "trackId": 1331168002, "likeCount": 166429, "playCount": 11668991, "durationMs": 30000 }, { "url": "https://soundcloud.com/dabilliondollarbaby/rockstar-feat-roddy-ricch", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-eRbWexOWfTbM-0-t500x500.jpg", "title": "ROCKSTAR (feat. Roddy Ricch)", "artist": { "id": 132004414, "url": "https://soundcloud.com/dabilliondollarbaby", "name": "Baby Jesus (DaBaby)" }, "trackId": 800621722, "likeCount": 878574, "playCount": 67252316, "durationMs": 30000 }, { "url": "https://soundcloud.com/puesta-soul/just-breathe", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-jgezyZzd6FR1fbzy-RDh3uA-t500x500.png", "title": "Just Breathe (Pearl Jam Deep House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2237392655, "likeCount": 85, "playCount": 13682, "durationMs": 233928 }, { "url": "https://soundcloud.com/gravagerzarchive/billie-eilish-chihiro-gravagerz-remix", "genre": "House", "image": "https://i1.sndcdn.com/artworks-inKUxYKSoCBQ3Td3-i5hS2w-t500x500.jpg", "title": "Billie Eilish - Chihiro (gravagerz Remix)", "artist": { "id": 1032614557, "url": "https://soundcloud.com/gravagerzarchive", "name": "gravagerz" }, "trackId": 1824203247, "likeCount": 82979, "playCount": 3429044, "durationMs": 126908 }, { "url": "https://soundcloud.com/charlixcx/apple", "genre": "Electronic", "image": "https://i1.sndcdn.com/artworks-AKfbNTOmvVbI-0-t500x500.jpg", "title": "Apple", "artist": { "id": 3907528, "url": "https://soundcloud.com/charlixcx", "name": "charlixcx" }, "trackId": 1839750924, "likeCount": 50694, "playCount": 2514836, "durationMs": 30000 }, { "url": "https://soundcloud.com/postmalone/post-malone-i-had-some-help", "genre": "Country", "image": "https://i1.sndcdn.com/artworks-UG5bS0MGcCL8-0-t500x500.jpg", "title": "I Had Some Help (feat. Morgan Wallen)", "artist": { "id": 99685284, "url": "https://soundcloud.com/postmalone", "name": "Post Malone" }, "trackId": 1817793996, "likeCount": 118011, "playCount": 7598570, "durationMs": 30000 }, { "url": "https://soundcloud.com/skrillex/skrillex-fred-again-flowdan-rumble", "genre": "Electronic", "image": "https://i1.sndcdn.com/artworks-q0XxLlBsCYjl1zkD-Xx96IA-t500x500.jpg", "title": "Skrillex, Fred again.. & Flowdan - Rumble", "artist": { "id": 856062, "url": "https://soundcloud.com/skrillex", "name": "Skrillex" }, "trackId": 1416452578, "likeCount": 115360, "playCount": 5143136, "durationMs": 146617 }, { "url": "https://soundcloud.com/itsthedare/girls", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-3xDn1SyH6Dlz-0-t500x500.jpg", "title": "Girls", "artist": { "id": 1139381185, "url": "https://soundcloud.com/itsthedare", "name": "the dare" }, "trackId": 1301344147, "likeCount": 16965, "playCount": 439041, "durationMs": 30000 }, { "url": "https://soundcloud.com/hozier/too-sweet", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-PXOEB9SatpLz-0-t500x500.jpg", "title": "Too Sweet", "artist": { "id": 3994791, "url": "https://soundcloud.com/hozier", "name": "Hozier" }, "trackId": 1778438820, "likeCount": 89809, "playCount": 4432430, "durationMs": 251455 }, { "url": "https://soundcloud.com/biggavelipro/dior", "genre": "Hip-Hop", "image": "https://i1.sndcdn.com/artworks-bhH4DegDy6ch-0-t500x500.jpg", "title": "Dior", "artist": { "id": 35598277, "url": "https://soundcloud.com/biggavelipro", "name": "POP SMOKE" }, "trackId": 656255261, "likeCount": 1353927, "playCount": 110650084, "durationMs": 30000 }, { "url": "https://soundcloud.com/cyrilriley/celine-dion-power-of-love-cyril-remix", "image": "https://i1.sndcdn.com/artworks-kOJVUzovxG68x245-CB34Yg-t500x500.jpg", "title": "Celine Dion - Power Of Love (CYRIL Remix)", "artist": { "id": 455265159, "url": "https://soundcloud.com/cyrilriley", "name": "CYRIL" }, "trackId": 1664314248, "likeCount": 54975, "playCount": 2528597, "durationMs": 285042 }, { "url": "https://soundcloud.com/chappellroan/pink-pony-club", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-xagzVq6hTvmo-0-t500x500.jpg", "title": "Pink Pony Club", "artist": { "id": 295076653, "url": "https://soundcloud.com/chappellroan", "name": "Chappell Roan" }, "trackId": 790026607, "likeCount": 92873, "playCount": 4289410, "durationMs": 30000 }, { "url": "https://soundcloud.com/puesta-soul/pretty-lady-tash-sultana", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-RnyNa3EylC5T8Hmo-4loGXg-t500x500.png", "title": "Pretty Lady (Tash Sultana Tropical House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2302551896, "likeCount": 31, "playCount": 3508, "durationMs": 205994 }, { "url": "https://soundcloud.com/puesta-soul/nice-to-each-other-olivia-dean", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-fnud5DRKyuJYyMBp-fApKKw-t500x500.png", "title": "Nice To Each Other (Olivia Dean House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2302511072, "likeCount": 38, "playCount": 4506, "durationMs": 198658 }, { "url": "https://soundcloud.com/artemaswannabepopstar/i-like-the-way-you-kiss-me", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-5ZOkLz4Q63nq-0-t500x500.jpg", "title": "i like the way you kiss me", "artist": { "id": 166736684, "url": "https://soundcloud.com/artemaswannabepopstar", "name": "Artemas" }, "trackId": 1776107214, "likeCount": 257572, "playCount": 16315603, "durationMs": 30000 }, { "url": "https://soundcloud.com/kendrick-lamar-music/not-like-us", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-Xp5PMsXvDudu-0-t500x500.jpg", "title": "Not Like Us", "artist": { "id": 207967430, "url": "https://soundcloud.com/kendrick-lamar-music", "name": "Kendrick Lamar" }, "trackId": 1814709189, "likeCount": 534904, "playCount": 29033281, "durationMs": 30000 }, { "url": "https://soundcloud.com/puesta-soul/me-u-cassie-deep-house-cover", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-ttrVGLh497rqj86o-WbZATA-t500x500.png", "title": "Me & U (Cassie Deep House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2302547132, "likeCount": 27, "playCount": 3212, "durationMs": 229006 }, { "url": "https://soundcloud.com/tommyrichmann/million-dollar-baby", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-yKHso8bnaoaw-0-t500x500.jpg", "title": "MILLION DOLLAR BABY", "artist": { "id": 208538662, "url": "https://soundcloud.com/tommyrichmann", "name": "Tommy Richman" }, "trackId": 1806996909, "likeCount": 236261, "playCount": 12891554, "durationMs": 30000 }, { "url": "https://soundcloud.com/ibiza-tunes/vibrations", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-HrK63cYOpedyPsMC-bpMrsQ-t500x500.png", "title": "Vibrations", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1955826123, "likeCount": 248, "playCount": 68716, "durationMs": 169759 }, { "url": "https://soundcloud.com/samsmithworld/unholy", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-mBIlx6NkARtQ-0-t500x500.jpg", "title": "Unholy", "artist": { "id": 3851147, "url": "https://soundcloud.com/samsmithworld", "name": "SAM SMITH" }, "trackId": 1344347542, "likeCount": 203627, "playCount": 12315834, "durationMs": 30000 }, { "url": "https://soundcloud.com/alexwaarren/ordinary", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-NA54eH07nJnN-0-t500x500.jpg", "title": "Ordinary", "artist": { "id": 994536640, "url": "https://soundcloud.com/alexwaarren", "name": "Alex Warren" }, "trackId": 2022404597, "likeCount": 149161, "playCount": 9328442, "durationMs": 30000 }, { "url": "https://soundcloud.com/puesta-soul/pink-skies", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-ytcMqzwQdgXj4B23-ujwIDw-t500x500.png", "title": "Pink Skies (Zach Bryan Deep House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2237394227, "likeCount": 102, "playCount": 18613, "durationMs": 169552 }, { "url": "https://soundcloud.com/jordan-adetunji/kehlani", "genre": "Hip-hop & Rap", "image": "https://i1.sndcdn.com/artworks-sYmDn94oTsvgZUes-vJDCzw-t500x500.jpg", "title": "KEHLANI", "artist": { "id": 81242854, "url": "https://soundcloud.com/jordan-adetunji", "name": "Jordan Adetunji" }, "trackId": 1825191285, "likeCount": 237408, "playCount": 16646851, "durationMs": 122407 }, { "url": "https://soundcloud.com/hanumankind-scmusic/big-dawgs", "genre": "Rap", "image": "https://i1.sndcdn.com/artworks-1FbJwFiOzwbn-0-t500x500.jpg", "title": "Big Dawgs", "artist": { "id": 1210989751, "url": "https://soundcloud.com/hanumankind-scmusic", "name": "Hanumankind" }, "trackId": 1861847475, "likeCount": 120997, "playCount": 6679642, "durationMs": 30000 }, { "url": "https://soundcloud.com/discolines/baby-girl", "genre": "DISCO DISCO DISCO", "image": "https://i1.sndcdn.com/artworks-9XlAG1yj3YKfLkB0-Xo8OlQ-t500x500.jpg", "title": "BABY GIRL", "artist": { "id": 27269702, "url": "https://soundcloud.com/discolines", "name": "Disco Lines" }, "trackId": 1249902241, "likeCount": 147164, "playCount": 7746842, "durationMs": 111120 }, { "url": "https://soundcloud.com/federicoscavo/jain-makeba-federico-scavo-remix", "genre": "House", "image": "https://i1.sndcdn.com/artworks-000215399185-955bsn-t500x500.jpg", "title": "Jain - Makeba (Federico Scavo Remix)", "artist": { "id": 321901, "url": "https://soundcloud.com/federicoscavo", "name": "Federico Scavo" }, "trackId": 315210878, "likeCount": 154882, "playCount": 8608330, "durationMs": 293217 }, { "url": "https://soundcloud.com/willsassmusic/make-me-feel-will-sass-remix", "genre": "House", "image": "https://i1.sndcdn.com/artworks-zxg9nBURRHZ10Od9-8MOf8Q-t500x500.png", "title": "Make Me Feel - Will Sass Remix", "artist": { "id": 992425393, "url": "https://soundcloud.com/willsassmusic", "name": "Will Sass" }, "trackId": 2165485863, "likeCount": 679, "playCount": 36986, "durationMs": 198814 }, { "url": "https://soundcloud.com/bensonboone/beautiful-things", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-42iIku3Wo1CS-0-t500x500.jpg", "title": "Beautiful Things", "artist": { "id": 1035017191, "url": "https://soundcloud.com/bensonboone", "name": "Benson Boone" }, "trackId": 1709664822, "likeCount": 236013, "playCount": 14777463, "durationMs": 30000 }, { "url": "https://soundcloud.com/biscits/biscits-wrong-is-right-snippet", "genre": "House", "image": "https://i1.sndcdn.com/artworks-OhLkaUQiKmKHyUjN-Qy413w-t500x500.png", "title": "Biscits - Wrong Is Right", "artist": { "id": 275644376, "url": "https://soundcloud.com/biscits", "name": "BISCITS." }, "trackId": 2180747551, "likeCount": 2217, "playCount": 79800, "durationMs": 171738 }, { "url": "https://soundcloud.com/sabrinacarpenter/sabrina-carpenter-espresso", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-N4IgzAqhnkMq-0-t500x500.jpg", "title": "Espresso", "artist": { "id": 205751723, "url": "https://soundcloud.com/sabrinacarpenter", "name": "Sabrina Carpenter" }, "trackId": 1799087761, "likeCount": 173358, "playCount": 9637901, "durationMs": 30000 }, { "url": "https://soundcloud.com/planetzuzy/blows-up", "genre": "Disco", "image": "https://i1.sndcdn.com/artworks-LNx0WypjpLrgJXXl-al4zLQ-t500x500.jpg", "title": "What if it All Blows Up", "artist": { "id": 112130848, "url": "https://soundcloud.com/planetzuzy", "name": "Planet Zuzy" }, "trackId": 1886590674, "likeCount": 644, "playCount": 81071, "durationMs": 205760 }, { "url": "https://soundcloud.com/puesta-soul/mai-sola-mai-as-roma-anthem", "image": "https://i1.sndcdn.com/artworks-fJ2CXR1BXyoDc0Yk-8fZLDg-t500x500.jpg", "title": "Mai Sola Mai (AS Roma Anthem House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2302555904, "likeCount": 6, "playCount": 1062, "durationMs": 265886 }, { "url": "https://soundcloud.com/puesta-soul/missed-calls-mac-miller-deep", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-qLuvih9URkXo1Znf-S0zJQQ-t500x500.png", "title": "Missed Calls (Mac Miller Deep House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2302541819, "likeCount": 17, "playCount": 2257, "durationMs": 180900 }, { "url": "https://soundcloud.com/charlixcx/guess-featuring-billie-eilish", "genre": "Dance", "image": "https://i1.sndcdn.com/artworks-mqHbEKE0lowg-0-t500x500.jpg", "title": "Guess featuring billie eilish", "artist": { "id": 3907528, "url": "https://soundcloud.com/charlixcx", "name": "charlixcx" }, "trackId": 1887335358, "likeCount": 99742, "playCount": 3715259, "durationMs": 30000 }, { "url": "https://soundcloud.com/billieeilish/lunch", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-NqZ22bYdyFbu-0-t500x500.jpg", "title": "LUNCH", "artist": { "id": 87105617, "url": "https://soundcloud.com/billieeilish", "name": "Billie Eilish" }, "trackId": 1822834869, "likeCount": 118357, "playCount": 6290807, "durationMs": 30000 }, { "url": "https://soundcloud.com/mgk/lonely-road", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-lIupyz5S7ATP-0-t500x500.jpg", "title": "Lonely Road", "artist": { "id": 176315, "url": "https://soundcloud.com/mgk", "name": "mgk" }, "trackId": 1881025122, "likeCount": 14777, "playCount": 548851, "durationMs": 189388 }, { "url": "https://soundcloud.com/sophie-ellis-bextor-official/murder-on-the-dancefloor-album", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-OxgGED53tGoQ-0-t500x500.jpg", "title": "Murder On The Dancefloor", "artist": { "id": 207966525, "url": "https://soundcloud.com/sophie-ellis-bextor-official", "name": "Sophie Ellis-Bextor" }, "trackId": 252795038, "likeCount": 77466, "playCount": 4381787, "durationMs": 230060 }, { "url": "https://soundcloud.com/ibiza-tunes/mazdem-i-aint-worried-onerepublic-cover", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-SQV1Wyh9gXwOW3F1-ruuu6w-t500x500.jpg", "title": "Mazdem - I Ain't Worried", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1610849883, "likeCount": 7432, "playCount": 677811, "durationMs": 131123 }, { "url": "https://soundcloud.com/shaboozey/shaboozey-a-bar-song-tipsy", "genre": "Country", "image": "https://i1.sndcdn.com/artworks-MtR6EIH20ysp-0-t500x500.jpg", "title": "A Bar Song (Tipsy)", "artist": { "id": 29475885, "url": "https://soundcloud.com/shaboozey", "name": "Shaboozey" }, "trackId": 1792895020, "likeCount": 233280, "playCount": 16324564, "durationMs": 171338 }, { "url": "https://soundcloud.com/polo-g/polo-g-rapstar", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-1d14dua5VBFt-0-t500x500.jpg", "title": "RAPSTAR", "artist": { "id": 454955073, "url": "https://soundcloud.com/polo-g", "name": "POLO G" }, "trackId": 1023058027, "likeCount": 983085, "playCount": 91449809, "durationMs": 165956 }, { "url": "https://soundcloud.com/themaskedwolf/masked-wolf-astronaut-in-the-ocean", "genre": "Rap/Hip Hop", "image": "https://i1.sndcdn.com/artworks-zmzaurpWPQVO-0-t500x500.jpg", "title": "Astronaut In The Ocean", "artist": { "id": 346079273, "url": "https://soundcloud.com/themaskedwolf", "name": "Masked Wolf" }, "trackId": 632953275, "likeCount": 313172, "playCount": 22232630, "durationMs": 30000 }, { "url": "https://soundcloud.com/mugatunes-mixes/andie-roy-2025-end-of-year-mix", "image": "https://i1.sndcdn.com/artworks-caIGv3HOy9VEYprQ-8NsC7Q-t500x500.png", "title": "Andie Roy 2025 End Of Year Mix", "artist": { "id": 773545498, "url": "https://soundcloud.com/mugatunes-mixes", "name": "Mugatunes (Mixes)" }, "trackId": 2236919603, "likeCount": 413, "playCount": 9530, "durationMs": 3760102 }, { "url": "https://soundcloud.com/puesta-soul/propeller-im-comin-from", "genre": "House", "image": "https://i1.sndcdn.com/artworks-eW9RxWtnEEr3vDK0-G5KQGA-t500x500.jpg", "title": "Propeller (I'm comin' from Gbagada) (House Cover)", "artist": { "id": 1649416628, "url": "https://soundcloud.com/puesta-soul", "name": "Puesta Soul" }, "trackId": 2302559927, "likeCount": 40, "playCount": 4451, "durationMs": 215257 }, { "url": "https://soundcloud.com/cyrilriley/stumblin-in-cyril-remix", "genre": "Dance", "image": "https://i1.sndcdn.com/artworks-mtpAubbNWcpo-0-t500x500.jpg", "title": "Stumblin' In", "artist": { "id": 455265159, "url": "https://soundcloud.com/cyrilriley", "name": "CYRIL" }, "trackId": 1649402727, "likeCount": 75935, "playCount": 4320852, "durationMs": 30000 }, { "url": "https://soundcloud.com/jaymes-young/infinity", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-rZAY1BKjwe4u-0-t500x500.jpg", "title": "Infinity", "artist": { "id": 45280258, "url": "https://soundcloud.com/jaymes-young", "name": "Jaymes Young" }, "trackId": 328245700, "likeCount": 176602, "playCount": 11780744, "durationMs": 237743 }, { "url": "https://soundcloud.com/saintjhn/saint-jhn-roses-imanbek-remix", "image": "https://i1.sndcdn.com/artworks-000596249969-hovmmz-t500x500.jpg", "title": "SAINt JHN - Roses (Imanbek Remix)", "artist": { "id": 112649309, "url": "https://soundcloud.com/saintjhn", "name": "SAINt JHN" }, "trackId": 679587188, "likeCount": 744515, "playCount": 54599605, "durationMs": 176265 }, { "url": "https://soundcloud.com/amalfi-tunes/emilio-love-the-way-you-lie", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-KdPEQSyB2Xy07wDa-XHFfMw-t500x500.jpg", "title": "Emilio - Love The Way You Lie", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1289650846, "likeCount": 5878, "playCount": 449164, "durationMs": 130368 }, { "url": "https://soundcloud.com/beyonce/beyonce-texas-hold-em", "genre": "Country", "image": "https://i1.sndcdn.com/artworks-PeDxivowXV4T-0-t500x500.jpg", "title": "TEXAS HOLD 'EM", "artist": { "id": 4293843, "url": "https://soundcloud.com/beyonce", "name": "Beyoncé" }, "trackId": 1744355502, "likeCount": 58072, "playCount": 3019421, "durationMs": 233503 }, { "url": "https://soundcloud.com/bbnomula/bbno-y2k-lalala", "genre": "gas", "image": "https://i1.sndcdn.com/artworks-000550247256-tt6g90-t500x500.jpg", "title": "bbno$ & Y2K - lalala", "artist": { "id": 162195095, "url": "https://soundcloud.com/bbnomula", "name": "bbno$" }, "trackId": 633309999, "likeCount": 1077805, "playCount": 79857627, "durationMs": 160661 }, { "url": "https://soundcloud.com/octobersveryown/drake-21-savage-rich-flex", "genre": "Rap", "image": "https://i1.sndcdn.com/artworks-1WxyOLKG912u-0-t500x500.jpg", "title": "Rich Flex", "artist": { "id": 1078461, "url": "https://soundcloud.com/octobersveryown", "name": "octobersveryown" }, "trackId": 1376227570, "likeCount": 378814, "playCount": 25278871, "durationMs": 239406 }, { "url": "https://soundcloud.com/futureisnow/life-is-good-feat-drake", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-NpbXmulEKXx9-0-t500x500.jpg", "title": "Life Is Good (feat. Drake)", "artist": { "id": 7436630, "url": "https://soundcloud.com/futureisnow", "name": "Future" }, "trackId": 739466311, "likeCount": 590853, "playCount": 54843998, "durationMs": 237781 }, { "url": "https://soundcloud.com/bellapoarch/build-a-bitch", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-iaPweh9dQZAX-0-t500x500.jpg", "title": "Build a Bitch", "artist": { "id": 78139535, "url": "https://soundcloud.com/bellapoarch", "name": "Bella Poarch" }, "trackId": 1026384631, "likeCount": 106515, "playCount": 12086457, "durationMs": 122796 }, { "url": "https://soundcloud.com/dj-regard-1/ride-it", "genre": "Dance", "image": "https://i1.sndcdn.com/artworks-PttKfJEKXF9m-0-t500x500.jpg", "title": "Ride It", "artist": { "id": 13561086, "url": "https://soundcloud.com/dj-regard-1", "name": "Regard" }, "trackId": 655842614, "likeCount": 295913, "playCount": 21193827, "durationMs": 157629 }, { "url": "https://soundcloud.com/tiesto/the-motto", "genre": "Dance", "image": "https://i1.sndcdn.com/artworks-NSxLvzjHGmWIaYB8-gyTTFw-t500x500.jpg", "title": "Tiësto & Ava Max - The Motto", "artist": { "id": 141707, "url": "https://soundcloud.com/tiesto", "name": "Tiësto" }, "trackId": 1144489849, "likeCount": 127140, "playCount": 9945708, "durationMs": 164864 }, { "url": "https://soundcloud.com/farrukooficial/pepas", "genre": "Latin Urban", "image": "https://i1.sndcdn.com/artworks-741J7DLGMxao-0-t500x500.jpg", "title": "Pepas", "artist": { "id": 84712060, "url": "https://soundcloud.com/farrukooficial", "name": "Farruko" }, "trackId": 1073215216, "likeCount": 247707, "playCount": 17379187, "durationMs": 287143 }, { "url": "https://soundcloud.com/edsheeran/ed-sheeran-shivers", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-99BcyXp6j3w2-0-t500x500.jpg", "title": "Shivers", "artist": { "id": 3685019, "url": "https://soundcloud.com/edsheeran", "name": "Ed Sheeran" }, "trackId": 1118084470, "likeCount": 121633, "playCount": 11872296, "durationMs": 207899 }, { "url": "https://soundcloud.com/amalfi-tunes/sindresu-boom-clap-charli-xcx-cover", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-UZ0mdrNxyeeyCZPR-8N2E4Q-t500x500.jpg", "title": "Sindresu - Boom Clap (Charli XCX Cover)", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1326587359, "likeCount": 5783, "playCount": 677083, "durationMs": 255646 }, { "url": "https://soundcloud.com/roddyricch/the-box", "genre": "Rap/Hip Hop", "image": "https://i1.sndcdn.com/artworks-FPOOagQaqQlM-0-t500x500.jpg", "title": "The Box", "artist": { "id": 64053399, "url": "https://soundcloud.com/roddyricch", "name": "Roddy Ricch" }, "trackId": 723315721, "likeCount": 2062487, "playCount": 178793221, "durationMs": 196699 }, { "url": "https://soundcloud.com/amalfi-tunes/leo-dijon-x-havoc-henry-leave-town", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-CosG7q5Zfo1IyJOf-g2Nprw-t500x500.jpg", "title": "Leo Dijon x Havoc Henry - Leave Town", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1307362840, "likeCount": 2460, "playCount": 287270, "durationMs": 197480 }, { "url": "https://soundcloud.com/mugatunes-releases/macca-grills-just-like-that-master-v3", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-rXy2VTMxzzGEoGyq-qLCzJw-t500x500.jpg", "title": "Macca Grills - Just Like That", "artist": { "id": 1308034371, "url": "https://soundcloud.com/mugatunes-releases", "name": "MugaTunes" }, "trackId": 1627265784, "likeCount": 615, "playCount": 102123, "durationMs": 171794 }, { "url": "https://soundcloud.com/amalfi-tunes/elsaaa-stay", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-gqRmT1XfBnJuV1Wc-m00S2Q-t500x500.jpg", "title": "Elsaaa - Stay", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1751502843, "likeCount": 1256, "playCount": 131640, "durationMs": 166101 }, { "url": "https://soundcloud.com/amalfi-tunes/freaky-djs-x-mazdem-x-penubiz-i-like-me-better", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-1YZ3d01zs4NJnnBH-75IQiA-t500x500.jpg", "title": "Freaky DJs X Mazdem X Penubiz - I Like Me Better", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1307355778, "likeCount": 1934, "playCount": 210313, "durationMs": 143812 }, { "url": "https://soundcloud.com/liltecca/lil-tecca-ransom-1", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-tlAdsstixqa0-0-t500x500.jpg", "title": "Ransom", "artist": { "id": 294810691, "url": "https://soundcloud.com/liltecca", "name": "Lil Tecca ✰" }, "trackId": 624758298, "likeCount": 1766745, "playCount": 172011577, "durationMs": 131326 }, { "url": "https://soundcloud.com/thekidlaroi/stay", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-0Gd6hJyUVAYQ-0-t500x500.jpg", "title": "Stay (with Justin Bieber)", "artist": { "id": 395895654, "url": "https://soundcloud.com/thekidlaroi", "name": "The Kid LAROI." }, "trackId": 1082723470, "likeCount": 482645, "playCount": 40634065, "durationMs": 141852 }, { "url": "https://soundcloud.com/ibiza-tunes/blinded-by-your-grace-dr-jaymz", "image": "https://i1.sndcdn.com/artworks-dzwNQiKbZM8TVQ8N-9jm7Hw-t500x500.jpg", "title": "Blinded By Your Grace - Dr Jaymz", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1440770614, "likeCount": 1461, "playCount": 243839, "durationMs": 157546 }, { "url": "https://soundcloud.com/megan-thee-stallion/savage", "genre": "Hip-hop & Rap", "image": "https://i1.sndcdn.com/artworks-ydjOE0snTmRAxTWN-LUnaPA-t500x500.jpg", "title": "Savage", "artist": { "id": 221385469, "url": "https://soundcloud.com/megan-thee-stallion", "name": "Megan Thee Stallion" }, "trackId": 771495430, "likeCount": 375911, "playCount": 20637234, "durationMs": 155543 }, { "url": "https://soundcloud.com/24kgoldn/mood-feat-iann-dior", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-P4m3CV6Xsq7N-0-t500x500.jpg", "title": "Mood (feat. iann dior)", "artist": { "id": 133138568, "url": "https://soundcloud.com/24kgoldn", "name": "24kGoldn" }, "trackId": 861425395, "likeCount": 507243, "playCount": 43381055, "durationMs": 140548 }, { "url": "https://soundcloud.com/glassanimals/heat-waves", "genre": "Alternative", "image": "https://i1.sndcdn.com/artworks-IRBdfS1YfN9L-0-t500x500.jpg", "title": "Heat Waves", "artist": { "id": 508853, "url": "https://soundcloud.com/glassanimals", "name": "Glass Animals" }, "trackId": 828639601, "likeCount": 473543, "playCount": 35380748, "durationMs": 238828 }, { "url": "https://soundcloud.com/secret-service-862007284/montero-call-me-by-your-name", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-dZlET97y3HBG-0-t500x500.jpg", "title": "MONTERO (Call Me By Your Name)", "artist": { "id": 174817271, "url": "https://soundcloud.com/secret-service-862007284", "name": "Lil Nas X" }, "trackId": 1014672238, "likeCount": 272903, "playCount": 19427489, "durationMs": 137922 }, { "url": "https://soundcloud.com/amalfi-tunes/brandt-the-one-that-got-away", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-FBy6gg8u0wmSTllS-tcpFfg-t500x500.jpg", "title": "Brandt - The One That Got Away", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1221929356, "likeCount": 2858, "playCount": 339182, "durationMs": 160873 }, { "url": "https://soundcloud.com/jackharlow/jack-harlow-first-class", "genre": "Rap/Hip Hop", "image": "https://i1.sndcdn.com/artworks-DPi8mbPbTg19-0-t500x500.jpg", "title": "First Class", "artist": { "id": 3759694, "url": "https://soundcloud.com/jackharlow", "name": "Jack Harlow" }, "trackId": 1245609985, "likeCount": 394264, "playCount": 27843943, "durationMs": 173994 }, { "url": "https://soundcloud.com/oliviarodrigo/good-4-u-1", "genre": "Pop", "image": "https://i1.sndcdn.com/artworks-1uA5egA38uNx-0-t500x500.jpg", "title": "good 4 u", "artist": { "id": 258091919, "url": "https://soundcloud.com/oliviarodrigo", "name": "Olivia Rodrigo" }, "trackId": 1048163956, "likeCount": 329010, "playCount": 21288273, "durationMs": 178194 }, { "url": "https://soundcloud.com/amalfi-tunes/the-tame-and-the-wild-cold-is-the-water-niklas-thal-remix", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-uU8dlyq2XPB94LmD-zE2CbQ-t500x500.jpg", "title": "The Tame and the Wild - Cold Is The Water (Niklas Thal Remix)", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1504026877, "likeCount": 1282, "playCount": 172350, "durationMs": 200046 }, { "url": "https://soundcloud.com/ibiza-tunes/sidizen-king-wes-period-sugar-lemon-tree", "genre": "Hip-hop & Rap", "image": "https://i1.sndcdn.com/artworks-ZoGZZsW3ZWI4IZQk-2Uy43A-t500x500.jpg", "title": "SiDizen King & WES PERIOD - Sugar Lemon Tree", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1357208755, "likeCount": 527, "playCount": 127892, "durationMs": 169961 }, { "url": "https://soundcloud.com/djokyri/end-of-beginning", "genre": "Rock", "image": "https://i1.sndcdn.com/artworks-kdXzTrIlirKP-0-t500x500.jpg", "title": "End of Beginning", "artist": { "id": 670280726, "url": "https://soundcloud.com/djokyri", "name": "Djo" }, "trackId": 1297453747, "likeCount": 224317, "playCount": 12093107, "durationMs": 159292 }, { "url": "https://soundcloud.com/arizonazervas/roxanne", "genre": "Hip-hop & Rap", "image": "https://i1.sndcdn.com/artworks-000610640374-bt2cs6-t500x500.jpg", "title": "Arizona Zervas - ROXANNE (Prod. 94 Skrt)", "artist": { "id": 17610880, "url": "https://soundcloud.com/arizonazervas", "name": "Arizona Zervas" }, "trackId": 693902449, "likeCount": 926487, "playCount": 75951359, "durationMs": 163682 }, { "url": "https://soundcloud.com/amalfi-tunes/awellexx-africa", "genre": "Dance & EDM", "image": "https://i1.sndcdn.com/artworks-ZokBAmm0uKyKGT5X-WR1Aeg-t500x500.jpg", "title": "Awellexx - Africa", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1229529553, "likeCount": 744, "playCount": 99297, "durationMs": 318740 }, { "url": "https://soundcloud.com/postmalone/one-right-now", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-396Kdug3HdRO-0-t500x500.jpg", "title": "One Right Now", "artist": { "id": 99685284, "url": "https://soundcloud.com/postmalone", "name": "Post Malone" }, "trackId": 1154264359, "likeCount": 101170, "playCount": 6527209, "durationMs": 193529 }, { "url": "https://soundcloud.com/amalfi-tunes/kytes-apricosa", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-lYS7UF7M7HwBGXhV-x2QwBg-t500x500.jpg", "title": "Kytes - Apricosa", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1265783353, "likeCount": 2022, "playCount": 256053, "durationMs": 158847 }, { "url": "https://soundcloud.com/olivertree/life-goes-on", "genre": "Alternative Rock", "image": "https://i1.sndcdn.com/artworks-ygMTPsJ00lEzVy2W-XH0BOg-t500x500.jpg", "title": "Life Goes On", "artist": { "id": 980317, "url": "https://soundcloud.com/olivertree", "name": "Oliver Tree" }, "trackId": 1056381013, "likeCount": 318131, "playCount": 20091853, "durationMs": 161849 }, { "url": "https://soundcloud.com/amalfi-tunes/corvallis-in-the-earth", "genre": "Deep House", "image": "https://i1.sndcdn.com/artworks-sEb6MY0Ry1LdJAtY-DDiKXw-t500x500.jpg", "title": "Corvällis - In The Earth", "artist": { "id": 1089835945, "url": "https://soundcloud.com/amalfi-tunes", "name": "Amalfi Tunes" }, "trackId": 1728259122, "likeCount": 156, "playCount": 58228, "durationMs": 175891 }, { "url": "https://soundcloud.com/zedd/squid", "genre": "House", "image": "https://i1.sndcdn.com/artworks-VZVDVCijXWMGn3Bk-GmI72Q-t500x500.jpg", "title": "Squid Game & Do It To It (Zedd Edit)", "artist": { "id": 462658, "url": "https://soundcloud.com/zedd", "name": "Zedd" }, "trackId": 1149994087, "likeCount": 191560, "playCount": 7428310, "durationMs": 175846 }, { "url": "https://soundcloud.com/ibiza-tunes/odiess-saltforest-go-fast", "genre": "Drum & Bass", "image": "https://i1.sndcdn.com/artworks-1yP6LpbI38XjSL6f-vyPXXw-t500x500.jpg", "title": "Odiess & Saltforest - Go Fast", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1610857713, "likeCount": 1707, "playCount": 171767, "durationMs": 204187 }, { "url": "https://soundcloud.com/ibiza-tunes/1tbsp-x-mietze-conte-no-nein", "genre": "House", "image": "https://i1.sndcdn.com/artworks-TooQoHBCyPylIEP8-D8rwpA-t500x500.jpg", "title": "1tbsp x mietze conte - No Nein", "artist": { "id": 276425588, "url": "https://soundcloud.com/ibiza-tunes", "name": "Ibiza Tunes" }, "trackId": 1457821747, "likeCount": 3399, "playCount": 63515, "durationMs": 151320 }, { "url": "https://soundcloud.com/cj50058/whoopty-1", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-Ur4BsXHZyMcf-0-t500x500.jpg", "title": "Whoopty", "artist": { "id": 235808580, "url": "https://soundcloud.com/cj50058", "name": "CJ" }, "trackId": 879400330, "likeCount": 718069, "playCount": 62990259, "durationMs": 123309 }, { "url": "https://soundcloud.com/travisscott-2/goosebumps-remix", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-tufBu5jqZPJ3-0-t500x500.jpg", "title": "Goosebumps (Remix)", "artist": { "id": 40174345, "url": "https://soundcloud.com/travisscott-2", "name": "Travis Scott" }, "trackId": 965832691, "likeCount": 158298, "playCount": 10785708, "durationMs": 162849 }, { "url": "https://soundcloud.com/sadababy-music/whole-lotta-choppas", "genre": "Rap/Hip Hop", "image": "https://i1.sndcdn.com/artworks-R9pb3R7OQVFT-0-t500x500.jpg", "title": "Whole Lotta Choppas", "artist": { "id": 515235972, "url": "https://soundcloud.com/sadababy-music", "name": "Sada Baby" }, "trackId": 862838266, "likeCount": 112298, "playCount": 6315975, "durationMs": 153773 }, { "url": "https://soundcloud.com/heyamine/reel-it-in", "genre": "Hip Hop", "image": "https://i1.sndcdn.com/artworks-UOLIpctDrfVG-0-t500x500.jpg", "title": "REEL IT IN", "artist": { "id": 4917203, "url": "https://soundcloud.com/heyamine", "name": "Aminé" }, "trackId": 482996616, "likeCount": 617728, "playCount": 58383346, "durationMs": 121393 }, { "url": "https://soundcloud.com/theweeknd/the-weeknd-sacrifice", "genre": "R & B", "image": "https://i1.sndcdn.com/artworks-zo4BnBbUuNjI-0-t500x500.jpg", "title": "Sacrifice", "artist": { "id": 3274725, "url": "https://soundcloud.com/theweeknd", "name": "The Weeknd" }, "trackId": 1191923320, "likeCount": 58046, "playCount": 3462846, "durationMs": 188964 } ], "owner": { "id": 193531220, "url": "https://soundcloud.com/mugatunesofficial", "name": "MugaTunes Playlists", "avatar": "https://i1.sndcdn.com/avatars-DYDGFqyYAhNnDmgq-N2PxYQ-t500x500.jpg", "verified": true }, "title": "TikTok Songs 2026 ~ Tik Tok Top Viral Hits Playlist", "isAlbum": false, "likeCount": 86323, "durationMs": 28741434, "playlistId": 333345223, "trackCount": 139, "description": "The best songs trending on Tik Tok, or is it TikTok? Who the **** knows. #NoShittyMusic\n\n💚 Spotify Playlists - https://open.spotify.com/user/31lwmozl7vpo6xomqtl4u45agrjq?si=8acd7760487e4827\n\nCheck out our other Channels\n🔥 MugaTunes @mugatunes-vip\n🦁 Lion's Den @the-lions-den-mugatunes\n🌊 Amalfi Music @mugatunes-selects\n\n🚀 SUBMIT A DEMO www.mugainc.com/music-submissions\n\n💜 Instagram www.instagram.com/mugatunes/\n🏠 Website www.mugatunes.com\n\nSUPPORT THE ARTISTS\n\n#ChillHouse\n#Chill\n#NoShittyMusic\n#NewMusic\n#NowPlaying\n#DeepHouse\n#Deep\n#Summer\n#Workout\n#Party\n#ChillHouse\n#Chill\n#NoShittyMusic\n#NewMusic\n#NowPlaying\n#DeepHouse\n#Deep\n#Summer\n#Workout\n#Party", "releaseDate": "2017-06-26T13:31:37Z", "repostCount": 4638, "lastModified": "2026-05-06T16:07:49Z" } ``` --- ### Download Audio Return the direct audio stream URL for a track. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:soundcloud/download` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL SoundCloud (video/post). Boleh dengan query param. | | `quality` | enum(144|240|360|480|720|1080|max) | query | no | Kualitas video maksimal — `max` = terbaik. Default 1080. Diabaikan kalau audioOnly=true. | | `audioOnly` | enum(true|false) | query | no | Kalau `true`, ambil audio saja. Default `false` (video). Pilih true/false. | | `audioFormat` | enum(mp3|opus|ogg|wav) | query | no | Format audio kalau audioOnly=true. Default mp3. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:soundcloud/download?url=https%3A%2F%2Fsoundcloud.com%2Fmarshmellomusic%2Falone&quality=1080&audioOnly=false&audioFormat=mp3" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:soundcloud/download?url=https%3A%2F%2Fsoundcloud.com%2Fmarshmellomusic%2Falone&quality=1080&audioOnly=false&audioFormat=mp3", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:soundcloud/download?url=https%3A%2F%2Fsoundcloud.com%2Fmarshmellomusic%2Falone&quality=1080&audioOnly=false&audioFormat=mp3", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://soundcloud.com/user-167787390/the-weeknd-blinding-lights", "image": "https://i1.sndcdn.com/artworks-12n314eZNB8i9ydb-S3uaYg-t500x500.jpg", "title": "The Weeknd - Blinding Lights full", "artist": { "id": 978685288, "url": "https://soundcloud.com/user-167787390", "name": "Minh Prime" }, "format": "progressive", "preset": "mp3_1_0", "quality": "sq", "trackId": 1316258221, "audioUrl": "https://cf-media.sndcdn.com/ZPlWIUpUD7Jz.128.mp3?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiKjovL2NmLW1lZGlhLnNuZGNkbi5jb20vWlBsV0lVcFVEN0p6LjEyOC5tcDMqIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzc5Nzk5NjI3fX19XX0_&Signature=I3rUiJxNPG-w0EX09syvaWj2gUMIbyV9zWa1RT8F709Kkh458aLGURv50p3p57YS6aXfLHAHRsz0eWF9UTIqYXe62FAYEeZe2zz5zIySPd-7hJqz3Jtg55ce9rvGnZYz53PuTRmgG~5WrlZHJ6aG8RX6~wJ1ncxqb63-Z8eZ7ejMWBPHC9GPQ51ABnrtx3z2nj9~NjZ-u8KVNIQ~hRGFmy5oP~9dZBukD9u6Gcl9KlOFDDeEIcX7xoP64KRAdZuev4PnkyGA~LtjRwBuDAFhiDoH-31Y~9hP3gxgHZIv9EGjPM-ngt~CA9QTBaw1wjj6EkZmrliq9xsqdzl~eGIYcQ__&Key-Pair-Id=APKAI6TU7MMXM5DG6EPQ", "mimeType": "audio/mpeg", "durationMs": 762820 } ``` --- ## Spotify **Category:** music · **Slug:** `spotify` **Detail page:** https://zpi.web.id/api/music/spotify Search tracks, albums, and artists on Spotify. Returns metadata + 30s preview URLs. Full audio is DRM-protected. **Tags:** music, metadata, search, preview ### Search Search the catalog by text query. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:spotify/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Search query | | `type` | enum(track|album|artist|all) | query | no | Filter: track\|album\|artist\|all. Default all | | `page` | number | query | no | Page 1-based, 20 items per page. Default 1 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:spotify/search?q=blinding%20lights&type=track&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:spotify/search?q=blinding%20lights&type=track&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:spotify/search?q=blinding%20lights&type=track&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "uri": "spotify:track:0VjIjW4GlUZAMYd2vXMi3b", "url": "https://open.spotify.com/track/0VjIjW4GlUZAMYd2vXMi3b", "album": "After Hours", "image": "https://i.scdn.co/image/ab67616d00001e028863bc11d2aa12b54f5aeb36", "title": "Blinding Lights", "artist": "The Weeknd", "trackId": "0VjIjW4GlUZAMYd2vXMi3b", "albumUri": "spotify:album:4yP0hdKOZPNshxUOjY0cZj", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ" ], "durationMs": 200040 }, { "uri": "spotify:track:6qYkmqFsXbj8CQjAdbYz07", "url": "https://open.spotify.com/track/6qYkmqFsXbj8CQjAdbYz07", "album": "Blinding Lights", "image": "https://i.scdn.co/image/ab67616d00001e02a3eff72f62782fb589a492f9", "title": "Blinding Lights", "artist": "The Weeknd", "trackId": "6qYkmqFsXbj8CQjAdbYz07", "albumUri": "spotify:album:3sL9Myf7JF1k9TbrXE46ou", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ" ], "durationMs": 200045 }, { "uri": "spotify:track:3KkXRkHbMCARz0aVfEt68P", "url": "https://open.spotify.com/track/3KkXRkHbMCARz0aVfEt68P", "album": "Spider-Man: Into the Spider-Verse (Soundtrack From & Inspired by the Motion Picture)", "image": "https://i.scdn.co/image/ab67616d00001e02e2e352d89826aef6dbd5ff8f", "title": "Sunflower - Spider-Man: Into the Spider-Verse", "artist": "Post Malone, Swae Lee", "trackId": "3KkXRkHbMCARz0aVfEt68P", "albumUri": "spotify:album:35s58BRTGAEWztPo9WqCIs", "playable": true, "artistIds": [ "246dkjvS1zLTtiykXe5h60", "1zNqQNIdeOUZHb8zbZRFMX" ], "durationMs": 158040 }, { "uri": "spotify:track:7qiZfU4dY1lWllzX7mPBI3", "url": "https://open.spotify.com/track/7qiZfU4dY1lWllzX7mPBI3", "album": "÷ (Deluxe)", "image": "https://i.scdn.co/image/ab67616d00001e02ba5db46f4b838ef6027e6f96", "title": "Shape of You", "artist": "Ed Sheeran", "trackId": "7qiZfU4dY1lWllzX7mPBI3", "albumUri": "spotify:album:3T4tUhGYeRNVUGevb0wThu", "playable": true, "artistIds": [ "6eUKZXaKkcviH0Ku9w2n3V" ], "durationMs": 233712 }, { "uri": "spotify:track:7MXVkk9YMctZqd1Srtv4MB", "url": "https://open.spotify.com/track/7MXVkk9YMctZqd1Srtv4MB", "album": "Starboy", "image": "https://i.scdn.co/image/ab67616d00001e024718e2b124f79258be7bc452", "title": "Starboy", "artist": "The Weeknd, Daft Punk", "trackId": "7MXVkk9YMctZqd1Srtv4MB", "albumUri": "spotify:album:2ODvWsOgouMbaA5xf0RkJe", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ", "4tZwfgrHOc3mvqYlEYSvVi" ], "durationMs": 230453 }, { "uri": "spotify:track:5QO79kh1waicV47BqGRL3g", "url": "https://open.spotify.com/track/5QO79kh1waicV47BqGRL3g", "album": "After Hours", "image": "https://i.scdn.co/image/ab67616d00001e028863bc11d2aa12b54f5aeb36", "title": "Save Your Tears", "artist": "The Weeknd", "trackId": "5QO79kh1waicV47BqGRL3g", "albumUri": "spotify:album:4yP0hdKOZPNshxUOjY0cZj", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ" ], "durationMs": 215626 }, { "uri": "spotify:track:4Dvkj6JhhA12EX05fT7y2e", "url": "https://open.spotify.com/track/4Dvkj6JhhA12EX05fT7y2e", "album": "Harry's House", "image": "https://i.scdn.co/image/ab67616d00001e0282ce362511fb3d9dda6578ee", "title": "As It Was", "artist": "Harry Styles", "trackId": "4Dvkj6JhhA12EX05fT7y2e", "albumUri": "spotify:album:5r36AJ6VOJtp00oxSkBZ5h", "playable": true, "artistIds": [ "6KImCVD70vtIoJWnq6nGn3" ], "durationMs": 167303 }, { "uri": "spotify:track:4xoUj7el3FsZtpjTXBo5eo", "url": "https://open.spotify.com/track/4xoUj7el3FsZtpjTXBo5eo", "album": "Blinding Lights", "image": "https://i.scdn.co/image/ab67616d00001e02a607fdaf33067979f772b72e", "title": "Blinding Lights - slowed to perfection", "artist": "TommyMuzzic", "trackId": "4xoUj7el3FsZtpjTXBo5eo", "albumUri": "spotify:album:0zeTkHoEfrUJnuVV2JJ192", "playable": true, "artistIds": [ "2XqXXH9xPa1zucIOtZ3u3A" ], "durationMs": 251599 }, { "uri": "spotify:track:39LLxExYz6ewLAcYrzQQyP", "url": "https://open.spotify.com/track/39LLxExYz6ewLAcYrzQQyP", "album": "Future Nostalgia", "image": "https://i.scdn.co/image/ab67616d00001e02c88bae7846e62a8ba59ee0bd", "title": "Levitating", "artist": "Dua Lipa", "trackId": "39LLxExYz6ewLAcYrzQQyP", "albumUri": "spotify:album:7fJJK56U9fHixgO0HQkhtI", "playable": true, "artistIds": [ "6M2wZ9GZgrQXHCFfjv46we" ], "durationMs": 203807 }, { "uri": "spotify:track:5OGxg1400HmCYVRHuccZWw", "url": "https://open.spotify.com/track/5OGxg1400HmCYVRHuccZWw", "album": "Live At SoFi Stadium", "image": "https://i.scdn.co/image/ab67616d00001e02308f9319a3d6f6737f43b3fc", "title": "Blinding Lights - Live", "artist": "The Weeknd", "trackId": "5OGxg1400HmCYVRHuccZWw", "albumUri": "spotify:album:1OARrXe5sB0gyy3MhQ8h92", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ" ], "durationMs": 253365 }, { "uri": "spotify:track:4eQO9RHTjYT1O9DTuZLj9v", "url": "https://open.spotify.com/track/4eQO9RHTjYT1O9DTuZLj9v", "album": "After Hours (Deluxe)", "image": "https://i.scdn.co/image/ab67616d00001e02ef017e899c0547766997d874", "title": "Blinding Lights", "artist": "The Weeknd", "trackId": "4eQO9RHTjYT1O9DTuZLj9v", "albumUri": "spotify:album:742eAldb4AJKLoPgJhGRE7", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ" ], "durationMs": 200045 }, { "uri": "spotify:track:66aMnwdhkEc1V0AAnyYchX", "url": "https://open.spotify.com/track/66aMnwdhkEc1V0AAnyYchX", "album": "Blinding Lights", "image": "https://i.scdn.co/image/ab67616d00001e02823928998239171c2ed2025e", "title": "Blinding Lights", "artist": "Teddy Swims", "trackId": "66aMnwdhkEc1V0AAnyYchX", "albumUri": "spotify:album:4vh9LW3igRT6NayBnmb8fZ", "playable": true, "artistIds": [ "33qOK5uJ8AR2xuQQAhHump" ], "durationMs": 214874 }, { "uri": "spotify:track:2uJw7yR61snp7s39YmUyhf", "url": "https://open.spotify.com/track/2uJw7yR61snp7s39YmUyhf", "album": "Blinding Memories of Somebody (Piano Version)", "image": "https://i.scdn.co/image/ab67616d00001e02fccf14717ce47337429a2d3e", "title": "Blinding Lights - Piano Version", "artist": "Oscar Lento", "trackId": "2uJw7yR61snp7s39YmUyhf", "albumUri": "spotify:album:6yR6vdpMAyioyBjf06sq30", "playable": true, "artistIds": [ "6nLF52FpYyNb4mJMaXFggH" ], "durationMs": 158858 }, { "uri": "spotify:track:7MXgrcOQAJ5VwSNUL0lDd3", "url": "https://open.spotify.com/track/7MXgrcOQAJ5VwSNUL0lDd3", "album": "Blinding Lights (Remix)", "image": "https://i.scdn.co/image/ab67616d00001e024abb0f8259dc9f2feb0dfe18", "title": "Blinding Lights (with ROSALÍA) - Remix", "artist": "The Weeknd, ROSALÍA", "trackId": "7MXgrcOQAJ5VwSNUL0lDd3", "albumUri": "spotify:album:7B70Z32Ha84aMT6TOnW410", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ", "7ltDVBr6mKbRvohxheJ9h1" ], "durationMs": 216123 }, { "uri": "spotify:track:0cQJGoRki2avKVodXEmr0d", "url": "https://open.spotify.com/track/0cQJGoRki2avKVodXEmr0d", "album": "Blinding Lights", "image": "https://i.scdn.co/image/ab67616d00001e02d05452b40e91b57aadffd16b", "title": "Blinding Lights", "artist": "Loi", "trackId": "0cQJGoRki2avKVodXEmr0d", "albumUri": "spotify:album:6pQZPa398NswBXGYyqHH7y", "playable": true, "artistIds": [ "574qIjE9UTvfSvtnIrdLaE" ], "durationMs": 147368 }, { "uri": "spotify:track:5k5p7GJXYBgxsBklryE3MO", "url": "https://open.spotify.com/track/5k5p7GJXYBgxsBklryE3MO", "album": "blinding lights", "image": "https://i.scdn.co/image/ab67616d00001e02f9b66f0de00a0cb57dbf5e7f", "title": "blinding lights", "artist": "main character melodies", "trackId": "5k5p7GJXYBgxsBklryE3MO", "albumUri": "spotify:album:5ZltHmYPe8nmGuaeoK9AvQ", "playable": true, "artistIds": [ "5ZriKcqfMbukob27Q2Vi5B" ], "durationMs": 123000 }, { "uri": "spotify:track:68kQQv6idXUcXIf1n59Y3i", "url": "https://open.spotify.com/track/68kQQv6idXUcXIf1n59Y3i", "album": "Blinding Lights (Major Lazer Remix)", "image": "https://i.scdn.co/image/ab67616d00001e02cddd966766ba3b2bc20fa991", "title": "Blinding Lights - Major Lazer Remix", "artist": "The Weeknd, Major Lazer", "trackId": "68kQQv6idXUcXIf1n59Y3i", "albumUri": "spotify:album:74hsEs8mQoNkB6NwgrgV3s", "playable": true, "artistIds": [ "1Xyo4u8uXC1ZmMpatF05PJ", "738wLrAtLtCtFOLvQBXOXp" ], "durationMs": 197961 }, { "uri": "spotify:track:0ozyv9adSVDED8Emhd8hfu", "url": "https://open.spotify.com/track/0ozyv9adSVDED8Emhd8hfu", "album": "Blinding Lights (Piano Version)", "image": "https://i.scdn.co/image/ab67616d00001e02fbed92420acc0b9cedfce7f6", "title": "Blinding Lights - Piano Version", "artist": "Flying Fingers, Piano Tribute Players", "trackId": "0ozyv9adSVDED8Emhd8hfu", "albumUri": "spotify:album:2ektqBOgstESA5KX3CxdYU", "playable": true, "artistIds": [ "1jUIOsS9vK91Nc9qYvpEab", "4Xx6QMLTWppMwdABkN0Afj" ], "durationMs": 121000 }, { "uri": "spotify:track:0lyj9SQRKOg5hEOUzkmwZd", "url": "https://open.spotify.com/track/0lyj9SQRKOg5hEOUzkmwZd", "album": "Blinding Lights", "image": "https://i.scdn.co/image/ab67616d00001e0207067430a13bf424b48cb3cb", "title": "Blinding Lights", "artist": "Adrienne Clotard", "trackId": "0lyj9SQRKOg5hEOUzkmwZd", "albumUri": "spotify:album:3kUQ3M6Dw3X8bD2aDxlpJg", "playable": true, "artistIds": [ "48yNGJAgVQrkppL5jK0wn1" ], "durationMs": 188285 }, { "uri": "spotify:track:1iiY7nosB0s7L8KiozCba5", "url": "https://open.spotify.com/track/1iiY7nosB0s7L8KiozCba5", "album": "Blinding Lights", "image": "https://i.scdn.co/image/ab67616d00001e02c77361c5801fd36675c6b468", "title": "Blinding Lights", "artist": "Claytin", "trackId": "1iiY7nosB0s7L8KiozCba5", "albumUri": "spotify:album:60rLM56nTYuEYK4UYb07y9", "playable": true, "artistIds": [ "6ejnoGLjl7ECsHeoS3un5U" ], "durationMs": 192443 } ], "total": 1000, "hasMore": true, "nextPage": 2 } ``` --- ### Track Detail Fetch full metadata for a single track by ID or URL. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:spotify/track/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Track ID (22-char base62), URI form, or full track URL | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:spotify/track/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:spotify/track/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:spotify/track/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://open.spotify.com/track/11dFghVXANMlKmJXsNCbNl", "image": "https://image-cdn-ak.spotifycdn.com/image/ab67616d0000b2733188158b6cfdc17994be4c5f", "title": "Cut To The Feeling", "artist": "Carly Rae Jepsen", "artists": [ { "id": "6sFIWsNpZYqfjUpaCgueju", "url": "https://open.spotify.com/artist/6sFIWsNpZYqfjUpaCgueju", "name": "Carly Rae Jepsen" } ], "preview": "https://p.scdn.co/mp3-preview/c011f4a360ae0ec93b366b5f328a17b2c5ae118d", "trackId": "11dFghVXANMlKmJXsNCbNl", "hasVideo": false, "durationMs": 207959, "isExplicit": false, "isPlayable": true, "releaseDate": "2017-05-26", "isNineteenPlus": false } ``` --- ### Album Detail Fetch album info with its tracklist. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:spotify/album/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Album ID (22-char base62), URI form, or full album URL | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:spotify/album/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:spotify/album/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:spotify/album/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://open.spotify.com/album/4yP0hdKOZPNshxUOjY0cZj", "image": "https://image-cdn-ak.spotifycdn.com/image/ab67616d0000b2738863bc11d2aa12b54f5aeb36", "title": "After Hours", "artist": "The Weeknd", "tracks": [ { "url": "https://open.spotify.com/track/6b5P51m8xx2XA6U7sdNZ5E", "title": "Alone Again", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/77e54c6064335e259d0f571768af5f96c22304d4", "trackId": "6b5P51m8xx2XA6U7sdNZ5E", "durationMs": 250053, "isExplicit": true, "trackNumber": 1 }, { "url": "https://open.spotify.com/track/2K9Ovn1o2bTGqbsABGC6m3", "title": "Too Late", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/2b7a3f91db7e2ce0526b45bc878c5277eb3df28a", "trackId": "2K9Ovn1o2bTGqbsABGC6m3", "durationMs": 239973, "isExplicit": true, "trackNumber": 2 }, { "url": "https://open.spotify.com/track/6kWxIqQDsKFYCJGbU4AjCX", "title": "Hardest To Love", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/0271808f406491a32f3ca28e11aa5faf600adf88", "trackId": "6kWxIqQDsKFYCJGbU4AjCX", "durationMs": 211400, "isExplicit": true, "trackNumber": 3 }, { "url": "https://open.spotify.com/track/4BGZF4oLbTL0pWm7C18pbv", "title": "Scared To Live", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/1682f650068ad5659508370192cc7854b454d166", "trackId": "4BGZF4oLbTL0pWm7C18pbv", "durationMs": 191306, "isExplicit": true, "trackNumber": 4 }, { "url": "https://open.spotify.com/track/3WlbeuhfRSqU7ylK2Ui5U7", "title": "Snowchild", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/145a6811b2f7d2489e50c1845ed47cfb5d8c4d8d", "trackId": "3WlbeuhfRSqU7ylK2Ui5U7", "durationMs": 247186, "isExplicit": true, "trackNumber": 5 }, { "url": "https://open.spotify.com/track/1sOW4PuG5X3Ie3EXUhAopJ", "title": "Escape From LA", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/098a07649cf6db99f150930fd732c2733cc2be90", "trackId": "1sOW4PuG5X3Ie3EXUhAopJ", "durationMs": 355960, "isExplicit": true, "trackNumber": 6 }, { "url": "https://open.spotify.com/track/6bnF93Rx87YqUBLSgjiMU8", "title": "Heartless", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/ffe5646cbee66e2a1bf7e0472cfed0ad777232b4", "trackId": "6bnF93Rx87YqUBLSgjiMU8", "durationMs": 198266, "isExplicit": true, "trackNumber": 7 }, { "url": "https://open.spotify.com/track/3orEOtd8CPL8GFlpRpKuoE", "title": "Faith", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/dd93b587cac54ed11b207dd704236fde6516512e", "trackId": "3orEOtd8CPL8GFlpRpKuoE", "durationMs": 283226, "isExplicit": true, "trackNumber": 8 }, { "url": "https://open.spotify.com/track/0VjIjW4GlUZAMYd2vXMi3b", "title": "Blinding Lights", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/51c08d92815cce4ac2de94a7335a430b81234624", "trackId": "0VjIjW4GlUZAMYd2vXMi3b", "durationMs": 200040, "isExplicit": false, "trackNumber": 9 }, { "url": "https://open.spotify.com/track/7szuecWAPwGoV1e5vGu8tl", "title": "In Your Eyes", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/ad4adb8a7c82359d511f7d9900d9f3742e0d2932", "trackId": "7szuecWAPwGoV1e5vGu8tl", "durationMs": 237520, "isExplicit": true, "trackNumber": 10 }, { "url": "https://open.spotify.com/track/5QO79kh1waicV47BqGRL3g", "title": "Save Your Tears", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/4bb5ee4441a2342502372f80f78a92cf3fe22549", "trackId": "5QO79kh1waicV47BqGRL3g", "durationMs": 215626, "isExplicit": true, "trackNumber": 11 }, { "url": "https://open.spotify.com/track/40U8d12pC5UHqmHwXjHjjl", "title": "Repeat After Me (Interlude)", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/14171ddd9559bd25ed882ff1f62c9ad16a4c0f93", "trackId": "40U8d12pC5UHqmHwXjHjjl", "durationMs": 195813, "isExplicit": true, "trackNumber": 12 }, { "url": "https://open.spotify.com/track/2p8IUWQDrpjuFltbdgLOag", "title": "After Hours", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/2375bc6998d765b02b229ff44e5c3d7b75fff74a", "trackId": "2p8IUWQDrpjuFltbdgLOag", "durationMs": 361026, "isExplicit": false, "trackNumber": 13 }, { "url": "https://open.spotify.com/track/2BcnxwxBuar5wjCaLqm5N3", "title": "Until I Bleed Out", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/6afac5b510ec7203bcfa68c2c06bf89b36f1ed54", "trackId": "2BcnxwxBuar5wjCaLqm5N3", "durationMs": 190173, "isExplicit": true, "trackNumber": 14 } ], "albumId": "4yP0hdKOZPNshxUOjY0cZj", "isExplicit": false, "popularity": 0, "totalTracks": 14 } ``` --- ### Artist Detail Fetch artist profile with top tracks and discography. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/music:spotify/artist/:id` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | path | yes | Artist ID (22-char base62), URI form, or full artist URL | | `albumsLimit` | number | query | no | Number of albums to fetch (1-50). Default 20 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/music:spotify/artist/:id?albumsLimit=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/music:spotify/artist/:id?albumsLimit=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/music:spotify/artist/:id?albumsLimit=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://open.spotify.com/artist/1Xyo4u8uXC1ZmMpatF05PJ", "name": "The Weeknd", "image": "https://image-cdn-fa.spotifycdn.com/image/ab6761610000e5ebc1719ac9e6a75c1c25835018", "artistId": "1Xyo4u8uXC1ZmMpatF05PJ", "followers": 0, "topTracks": [ { "url": "https://open.spotify.com/track/7MXVkk9YMctZqd1Srtv4MB", "title": "Starboy", "artist": "The Weeknd, Daft Punk", "preview": "https://p.scdn.co/mp3-preview/57c1238d183c40da3157c2892346f58445b1377c", "trackId": "7MXVkk9YMctZqd1Srtv4MB", "durationMs": 230453, "isExplicit": true }, { "url": "https://open.spotify.com/track/7CyPwkp0oE8Ro9Dd5CUDjW", "title": "One Of The Girls (with JENNIE, Lily Rose Depp)", "artist": "The Weeknd, JENNIE, Lily-Rose Depp", "preview": "https://p.scdn.co/mp3-preview/e5bb7776aff44435b938eb084b2eca23e6c7f5ed", "trackId": "7CyPwkp0oE8Ro9Dd5CUDjW", "durationMs": 244684, "isExplicit": false }, { "url": "https://open.spotify.com/track/0VjIjW4GlUZAMYd2vXMi3b", "title": "Blinding Lights", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/51c08d92815cce4ac2de94a7335a430b81234624", "trackId": "0VjIjW4GlUZAMYd2vXMi3b", "durationMs": 200040, "isExplicit": false }, { "url": "https://open.spotify.com/track/0FIDCNYYjNvPVimz5icugS", "title": "Timeless (feat Playboi Carti)", "artist": "The Weeknd, Playboi Carti", "preview": "https://p.scdn.co/mp3-preview/c27493ac0bcb3deb72a8e814ab6c7e8686cd2324", "trackId": "0FIDCNYYjNvPVimz5icugS", "durationMs": 256000, "isExplicit": true }, { "url": "https://open.spotify.com/track/2LBqCSwhJGcFQeTHMVGwy3", "title": "Die For You", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/e2e1b4ba70ff241ce2ce7283a8f4c3cb086ac0bd", "trackId": "2LBqCSwhJGcFQeTHMVGwy3", "durationMs": 260253, "isExplicit": false }, { "url": "https://open.spotify.com/track/5J4ZkQpzMUFojo1CtAZYpn", "title": "Love Me Harder", "artist": "Ariana Grande, The Weeknd", "preview": "https://p.scdn.co/mp3-preview/16f1d643c2378d5f2911042bacb5bb00aba766e7", "trackId": "5J4ZkQpzMUFojo1CtAZYpn", "durationMs": 236133, "isExplicit": false }, { "url": "https://open.spotify.com/track/7fBv7CLKzipRk6EC6TWHOB", "title": "The Hills", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/30a8d26fa2b2e9a5a01007d71783510180e677ab", "trackId": "7fBv7CLKzipRk6EC6TWHOB", "durationMs": 242253, "isExplicit": true }, { "url": "https://open.spotify.com/track/5QO79kh1waicV47BqGRL3g", "title": "Save Your Tears", "artist": "The Weeknd", "preview": "https://p.scdn.co/mp3-preview/4bb5ee4441a2342502372f80f78a92cf3fe22549", "trackId": "5QO79kh1waicV47BqGRL3g", "durationMs": 215626, "isExplicit": true }, { "url": "https://open.spotify.com/track/1oFAF1hdPOickyHgbuRjyX", "title": "Save Your Tears (Remix) (with Ariana Grande) - Bonus Track", "artist": "The Weeknd, Ariana Grande", "preview": "https://p.scdn.co/mp3-preview/111eb776b2884b2940e31b769f5dd99e8cc6ce6c", "trackId": "1oFAF1hdPOickyHgbuRjyX", "durationMs": 191013, "isExplicit": false }, { "url": "https://open.spotify.com/track/0VO8gYVDSwM1Qdd2GsMoYK", "title": "Moth To A Flame (with The Weeknd)", "artist": "Swedish House Mafia, The Weeknd", "preview": "https://p.scdn.co/mp3-preview/1115f3c666a5ec714e6c3a29121c863720c4059c", "trackId": "0VO8gYVDSwM1Qdd2GsMoYK", "durationMs": 234000, "isExplicit": false } ], "popularity": 0, "albumsCount": 0, "topTracksCount": 10 } ``` ---