{ "opencollection": "1.0.0", "info": { "name": "Spotify Web Albums Shows API", "version": "1.0.0" }, "items": [ { "info": { "name": "Shows", "type": "folder" }, "items": [ { "info": { "name": "Get Show\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/shows/:id", "params": [ { "name": "market", "value": "", "type": "query" }, { "name": "id", "value": "", "type": "path" } ], "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 show identified by its\nunique Spotify ID.\n" }, { "info": { "name": "Get Several Shows\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/shows", "params": [ { "name": "market", "value": "", "type": "query" }, { "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": "Get Spotify catalog information for several shows based on their Spotify IDs.\n" }, { "info": { "name": "Get Show Episodes\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/shows/:id/episodes", "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 show’s episodes. Optional parameters can be used to limit the number of episodes returned.\n" }, { "info": { "name": "Get User's Saved Shows\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/me/shows", "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 shows saved in the current Spotify user's library. Optional parameters can be used to limit the number of shows returned.\n" }, { "info": { "name": "Save Shows for Current User\n", "type": "http" }, "http": { "method": "PUT", "url": "https://api.spotify.com/v1/me/shows", "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": "Save one or more shows to current Spotify user's 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 User's Saved Shows\n", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.spotify.com/v1/me/shows", "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": "Delete one or more shows from current Spotify user's 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 Shows\n", "type": "http" }, "http": { "method": "GET", "url": "https://api.spotify.com/v1/me/shows/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 shows is already saved in the current Spotify user's library.\n\n**Note:** This endpoint is deprecated. Use [Check User's Saved Items](/documentation/web-api/reference/check-library-contains) instead.\n" } ] } ], "bundled": true }