{"id":39027297,"url":"https://github.com/zaosoula/deezer-public-api","last_synced_at":"2026-01-17T17:33:53.857Z","repository":{"id":40709683,"uuid":"244627784","full_name":"zaosoula/deezer-public-api","owner":"zaosoula","description":"This is Nodejs wrapper for the Deezer Public API that return promises.","archived":false,"fork":false,"pushed_at":"2025-04-12T13:28:30.000Z","size":137,"stargazers_count":13,"open_issues_count":3,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-12T14:39:30.664Z","etag":null,"topics":["album","api","deezer","deezer-api","nodejs","playlist","rest","rest-api"],"latest_commit_sha":null,"homepage":"https://zaosoula.github.io/deezer-public-api/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zaosoula.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-03T12:15:51.000Z","updated_at":"2025-04-12T13:28:34.000Z","dependencies_parsed_at":"2024-06-19T11:27:01.242Z","dependency_job_id":null,"html_url":"https://github.com/zaosoula/deezer-public-api","commit_stats":{"total_commits":29,"total_committers":3,"mean_commits":9.666666666666666,"dds":"0.10344827586206895","last_synced_commit":"d1a8d17a07c27f6b6ce5b3515ac8f7eb9277d8ae"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zaosoula/deezer-public-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaosoula%2Fdeezer-public-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaosoula%2Fdeezer-public-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaosoula%2Fdeezer-public-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaosoula%2Fdeezer-public-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zaosoula","download_url":"https://codeload.github.com/zaosoula/deezer-public-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaosoula%2Fdeezer-public-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28513231,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["album","api","deezer","deezer-api","nodejs","playlist","rest","rest-api"],"created_at":"2026-01-17T17:33:53.790Z","updated_at":"2026-01-17T17:33:53.845Z","avatar_url":"https://github.com/zaosoula.png","language":"JavaScript","readme":"# Deezer Public API wrapper\n\nThis is *Nodejs* wrapper for the [Deezer Public API](http://developers.deezer.com/api) that return promises.\n\n## Installation\n    npm install deezer-public-api --save\n\n## Usage example\n\n```js\nconst DeezerPublicApi = require('deezer-public-api');\nlet deezer = new DeezerPublicApi();\n\n//Search an artist\ndeezer.search.artist('ILYSH').then(function(result) {\n   console.log(result);\n});\n\n//Get info for the given artist id\ndeezer.artist('58671252').then(function(result) {\n   console.log(result);\n});\n\n//Get album list for the given artist id\ndeezer.artist.albums('58671252').then(function(result) {\n   console.log(result);\n});\n```\n## Available methods\n\n##### Album\n* album(`id`, `limit`, `index`)\n* album.comments(`id`, `limit`, `index`)\n* album.fans(`id`, `limit`, `index`)\n* album.tracks(`id`, `limit`, `index`)\n\n##### Artist\n* artist(`id`, `limit`, `index`)\n* artist.top(`id`, `limit`, `index`)\n* artist.albums(`id`, `limit`, `index`)\n* artist.comments(`id`, `limit`, `index`)\n* artist.fans(`id`, `limit`, `index`)\n* artist.related(`id`, `limit`, `index`)\n* artist.radio(`id`, `limit`, `index`)\n* artist.playlists(`id`, `limit`, `index`)\n\n##### Chart\n* chart(`limit`, `index`)\n* chart.tracks(`limit`, `index`)\n* chart.albums(`limit`, `index`)\n* chart.artists(`limit`, `index`)\n* chart.playlists(`limit`, `index`)\n* chart.podcasts(`limit`, `index`)\n\n##### Comment\n* comment(`id`, `limit`, `index`)\n\n##### Editorial\n* editorial(`id`, `limit`, `index`)\n* editorial.selection(`id`, `limit`, `index`)\n* editorial.charts(`id`, `limit`, `index`)\n* editorial.releases(`id`, `limit`, `index`)\n\n##### Episode\n* episode(`id`, `limit`, `index`)\n\n##### Genre\n* genre(`id`, `limit`, `index`)\n* genre.artists(`id`, `limit`, `index`)\n* genre.podcasts(`id`, `limit`, `index`)\n* genre.radios(`id`, `limit`, `index`)\n\n##### Infos\n* infos()\n\n##### Options\n* options()\n\n##### Playlist\n* playlist(`id`, `limit`, `index`)\n* playlist.comments(`id`, `limit`, `index`)\n* playlist.fans(`id`, `limit`, `index`)\n* playlist.tracks(`id`, `limit`, `index`)\n* playlist.radio(`id`, `limit`, `index`)\n\n##### Podcast\n* podcast(`id`, `limit`, `index`)\n* podcast.episodes(`id`, `limit`, `index`)\n\n##### Radio\n* radio(`id`, `limit`, `index`)\n* radio.genres(`limit`, `index`)\n* radio.top(`limit`, `index`)\n* radio.lists(`limit`, `index`)\n* radio.tracks(`id`, `limit`, `index`)\n\n##### Track\n* track(`id`, `limit`, `index`)\n\n##### User\n* user(`id`, `limit`, `index`)\n* user.albums(`id`, `limit`, `index`)\n* user.artists(`id`, `limit`, `index`)\n* user.charts(`id`, `limit`, `index`)\n* user.charts.tracks(`id`, `limit`, `index`)\n* user.charts.albums(`id`, `limit`, `index`)\n* user.charts.playlists(`id`, `limit`, `index`)\n* user.charts.artists(`id`, `limit`, `index`)\n* user.flow(`id`, `limit`, `index`)\n* user.followings(`id`, `limit`, `index`)\n* user.followers(`id`, `limit`, `index`)\n* user.playlists(`id`, `limit`, `index`)\n* user.podcasts(`id`, `limit`, `index`)\n* user.radios(`id`, `limit`, `index`)\n* user.tracks(`id`, `limit`, `index`)\n\n##### Search\n* search(`options`, `order`, `limit`, `index`)\n* search.artist(`query`, `order`, `limit`, `index`, `strict`)\n* search.playlist(`query`, `order`, `limit`, `index`, `strict`)\n* search.podcast(`query`, `order`, `limit`, `index`, `strict`)\n* search.radio(`query`, `order`, `limit`, `index`, `strict`)\n* search.track(`query`, `order`, `limit`, `index`, `strict`)\n* search.user(`query`, `order`, `limit`, `index`, `strict`)\n* search.album(`query`, `order`, `limit`, `index`, `strict`)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaosoula%2Fdeezer-public-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzaosoula%2Fdeezer-public-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaosoula%2Fdeezer-public-api/lists"}