{ "opencollection": "1.0.0", "info": { "name": "Spotify Web Albums API", "version": "1.0.0" }, "items": [ { "info": { "name": "Albums", "type": "folder" }, "items": [ { "info": { "name": "Get Album\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/albums/:id", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "market", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get Spotify catalog information for a single album.\n" }, { "info": { "name": "Get Several Albums\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/albums", "params": [ { "name": "ids", "value": "", "type": "query" }, { "name": "market", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get Spotify catalog information for multiple albums identified by their Spotify IDs.\n" }, { "info": { "name": "Get Album Tracks\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/albums/:id/tracks", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "market", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get Spotify catalog information about an album’s tracks.\nOptional parameters can be used to limit the number of tracks returned.\n" }, { "info": { "name": "Get Artist's Albums\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/artists/:id/albums", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "include_groups", "value": "", "type": "query" }, { "name": "market", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get Spotify catalog information about an artist's albums.\n" }, { "info": { "name": "Get User's Saved Albums\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/me/albums", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" }, { "name": "market", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get a list of the albums saved in the current Spotify user's 'Your Music' library.\n" }, { "info": { "name": "Save Albums for Current User\n", "type": "http" }, "http": { "method": "PUT", "url": "https://api.spotify.com/v1/me/albums", "params": [ { "name": "ids", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Save one or more albums to the current user's 'Your Music' library.\n\n**Note:** This endpoint is deprecated. Use [Save Items to Library](/documentation/web-api/reference/save-library-items) instead.\n" }, { "info": { "name": "Remove Users' Saved Albums\n", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.spotify.com/v1/me/albums", "params": [ { "name": "ids", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Remove one or more albums from the current user's 'Your Music' library.\n\n**Note:** This endpoint is deprecated. Use [Remove Items from Library](/documentation/web-api/reference/remove-library-items) instead.\n" }, { "info": { "name": "Check User's Saved Albums\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/me/albums/contains", "params": [ { "name": "ids", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Check if one or more albums is already saved in the current Spotify user's 'Your Music' library.\n\n**Note:** This endpoint is deprecated. Use [Check User's Saved Items](/documentation/web-api/reference/check-library-contains) instead.\n" }, { "info": { "name": "Get New Releases\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/browse/new-releases", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.spotify.com/authorize", "accessTokenUrl": "https://accounts.spotify.com/api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get a list of new album releases featured in Spotify (shown, for example, on a Spotify player’s “Browse” tab).\n" } ] } ], "bundled": true }