{"id":13727051,"url":"https://github.com/charlypoly/spotify-graphql","last_synced_at":"2025-04-07T12:08:27.469Z","repository":{"id":40391153,"uuid":"73794889","full_name":"charlypoly/spotify-graphql","owner":"charlypoly","description":"GraphQL schema for Spotify WebAPI  — TypeScript / Node.js (v6)","archived":false,"fork":false,"pushed_at":"2023-12-15T05:33:46.000Z","size":776,"stargazers_count":280,"open_issues_count":14,"forks_count":27,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-31T10:09:44.109Z","etag":null,"topics":["graphql","spotify","spotify-api","spotify-graphql","spotify-library","spotify-playlist"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/charlypoly.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2016-11-15T08:55:08.000Z","updated_at":"2024-12-31T11:14:03.000Z","dependencies_parsed_at":"2024-02-04T19:43:54.315Z","dependency_job_id":null,"html_url":"https://github.com/charlypoly/spotify-graphql","commit_stats":null,"previous_names":["thefrenchhouse/spotify-graphql"],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlypoly%2Fspotify-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlypoly%2Fspotify-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlypoly%2Fspotify-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlypoly%2Fspotify-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/charlypoly","download_url":"https://codeload.github.com/charlypoly/spotify-graphql/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247648978,"owners_count":20972945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["graphql","spotify","spotify-api","spotify-graphql","spotify-library","spotify-playlist"],"created_at":"2024-08-03T01:03:37.533Z","updated_at":"2025-04-07T12:08:27.449Z","avatar_url":"https://github.com/charlypoly.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Spotify GraphQL [![npm version](https://badge.fury.io/js/spotify-graphql.svg)](https://badge.fury.io/js/spotify-graphql) [![https://david-dm.org/wittydeveloper/spotify-graphql](https://david-dm.org/wittydeveloper/spotify-graphql.svg)](https://david-dm.org/wittydeveloper/spotify-graphql) [![TypeScript](https://badges.frapsoft.com/typescript/code/typescript.svg?v=101)](https://github.com/ellerbrock/typescript-badges/)\nGraphQL schema for Spotify Web API — TypeScript / Node.js (v6)\n\n--------\n**[Try with the interactive console !](https://spotify-api-graphql-console.herokuapp.com/)**\n\nSee [spotify-graphql-examples](https://github.com/wittydeveloper/spotify-graphql-examples) for more examples\n\n\n-------\n\n```typescript\n\nimport SpotifyGraphQLClient from '../src/spotify-graphql';\nimport config from './config';\n\nSpotifyGraphQLClient(config).query(`\n  {\n    track(id: \"3W2ZcrRsInZbjWylOi6KhZ\") {\n      name\n      artists {\n        name\n      }\n    }\n  }\n`).then(result =\u003e {\n  console.log(JSON.stringify(result));\n});\n\n// Print : \n// {\n//   \"data\": {\n//     \"track\": {\n//       \"name\": \"You \u0026 Me - Flume Remix\",\n//       \"artists\": [\n//         {\n//           \"name\": \"Disclosure\"\n//         },\n//         {\n//           \"name\": \"Eliza Doolittle\"\n//         },\n//         {\n//           \"name\": \"Flume\"\n//         }\n//       ]\n//     }\n//   }\n// }\n\n```\n\n### Queries\n\n### Albums\n- Get an Album :white_check_mark:\n- Get Several Albums :white_check_mark:\n- Get an Album's Tracks :white_check_mark:\n### Artists\n- Get an Artist :white_check_mark:\n- Get Several Artists :white_check_mark:\n- Get an Artist's Albums :white_check_mark:\n- Get an Artist's Top Tracks :white_check_mark:\n- Get an Artist's Related Artists :white_check_mark:\n### Tracks\n- Get a Track :white_check_mark:\n- Get Several Tracks :white_check_mark:\n- Get Audio Features for a Track :white_check_mark:\n- Get Audio Features for Several Tracks :white_check_mark:\n- Get Audio Analysis for a Track :x:\n### Search\n- Search for an Item :white_check_mark:\n### Playlists\n- Get a List of a User's Playlists :white_check_mark:\n- Get a List of Current User's Playlists :white_check_mark:\n- Get a Playlist :white_check_mark:\n- Get a Playlist's Tracks :white_check_mark:\n### Create a Playlist\n- Add Tracks to a Playlist :x:\n- Remove Tracks from a Playlist :x:\n- Reorder or replace a Playlist's Tracks :x:\n- Change a Playlist's Details :x:\n### User Profiles\n- Get a User's Profile :white_check_mark:\n- Get Current User's Profile :white_check_mark:\n### User Library\n- Get Current User's Saved Tracks :white_check_mark:\n- Check Current User's Saved Tracks :x:\n- Save Tracks for Current User :x:\n- Remove Tracks for Current User :x:\n- Get Current User's Saved Albums :white_check_mark: :x:\n- Check Current User's Saved Albums :x:\n- Save Albums for Current User :x:\n- Remove Albums for Current User :x:\n### Personalization\n- Get User's Top Artists and Tracks :white_check_mark:\n### Browse\n- Get a List of New Releases :x:\n- Get a List of Featured Playlists :x:\n- Get a List of Browse Categories :x:\n- Get a Single Browse Category :x:\n- Get a Category's playlists :x:\n- Get Recommendations Based on Seeds :x:\n- Get Available Genre Seeds :x:\n### Follow\n- Get Followed Artists :x:\n- Check if Current User Follows Artists or Users :x:\n- Follow Artists or Users :x:\n- Unfollow Artists or Users :x:\n- Check if Users Follow a Playlist :x:\n- Follow a Playlist :x:\n- Unfollow a Playlist :x:\n### Player\n- Get the Current User's Recently Played Tracks :white_check_mark:\n- Get Information About The User's Current Playback :white_check_mark:\n- Transfer a User's Playback :x:\n- Get a User's Available Devices :x:\n- Get the User's Currently Playing Track :x:\n- Start/Resume a User's Playback :x:\n- Pause a User's Playback :x:\n- Skip User's Playback To Next Track :x:\n- Skip User's Playback To Previous Track :x:\n- Seek To Position In Currently Playing Track :x:\n- Set Repeat Mode On User's Playback :x:\n- Set Volume For User's Playback :x:\n- Toggle Shuffle For User's Playback :x:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharlypoly%2Fspotify-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcharlypoly%2Fspotify-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharlypoly%2Fspotify-graphql/lists"}