LibreChat/api/app/langchain/demos/spotify.yaml
Danny Avila e4c91dfbea
feat: Plugins endpoint - Reverse Engineering of official Plugins features (#197)
* components for plugins in progress

* WIP: add langchain client implementation for tools/plugins
feat(langchain): add loadHistory function for loading chat history from database
feat(langchain): add saveMessageToDatabase function for saving chat messages to database

* chore(Memory.js): remove Memory.js file from the project directory.

* WIP: adding plugin functionality
——————————————————
fix(eslintrc.js): change arrow-parens rule to always require parentheses

refactor(agent.js): reorganize imports and add new imports
feat(agent.js): add support for saving and loading chat history
feat(agent.js): add support for saving messages to database
feat(agent.js): add ChatAgent class with initialize and sendMessage methods

fix(langchain): use getConvo and saveMessage functions from models.js instead of Conversation and Message models
feat(langchain): add user parameter to loadHistory and saveMessageToDatabase functions
chore(package.json): update langchain package version to 0.0.59 and add langchain script to run test2.js file
——————————————————

* WIP: testing agent initialization

* WIP: testing various agent methods

feat(agent.js): add CustomChatAgent class and initializeAgentExecutorWithOptions method
feat(customChatAgent.js): add CustomPromptTemplate and CustomOutputParser classes

refactor(langchain): uncomment code for input2 and options
feat(langchain): add input1 to read comments on a youtube video
docs(langchain): remove commented code and add whitespace to package.json

* WIP: feat: plugin endpoint, backend class working

* feat(agent.js): add support for Zapier NLA API key
feat(agent.js): add ZapierToolKit to tools if zapierApiKey is provided
feat(customAgent.js): change prompt prefix and suffix to reflect new task-based prompt
feat(test4.js): add test for new task-based prompt

* style(langchain): improve readability and add comments to code
feat(langchain): update prompt message for custom agent
fix(langchain): update message format in test4.js

* style(customAgent.js): remove unnecessary capitalization and rephrase some sentences
test(langchain): add test2 and test3 scripts to package.json

* chore(customAgent.js): fix typo in comment, change "an" to "identical"

* WIP: gpt-4 testing

* feat(langchain): add AIPluginTool and HumanTool classes
fix(langchain): remove zapierApiKey option from ChatAgent constructor
refactor(langchain): update langchain package to v0.0.64
misc(langchain): update test2, test3, and test4 scripts to use --inspect flag

* feat(langchain): add GoogleSearchAPI tool for searching the web using Google Custom Search API

* feat(askGPTPlugins.js): add support for progress callback in ask function
fix(agent.js): pass progress callback to sendApiMessage function

* refactor(agent.js): load tools from options and initialize them in constructor
feat(agent.js): add support for environment variable SERPAPI_API_KEY
feat(agent.js): add support for environment variable ZAPIER_NLA_API_KEY
docs(agent.js): remove commented out code and add comments to clarify code

* chore(langchain): remove unused files loadHistory.js and saveMessage.js

* feat(validateTools.js): add function to validate API keys for supported tools

* feat(langchain): update langchain package to version 0.0.66
feat(langchain): add support for GPT-4 model
fix(server/index.js): fix uncaughtException handler to ignore 'fetch failed' errors

* refactor(agent.js): remove FORMAT_INSTRUCTIONS and replace with a more concise message
refactor(agent.js): remove unused variable 'errorMessage'
refactor(agent.js): change 'result' variable initialization to an empty object instead of null
refactor(agent.js): change error message when response generation fails
refactor(agent.js): change output message when response generation fails
refactor(agent.js): change output message when response generation succeeds

* chore(langchain): comment out unused model in ChatAgent constructor
feat(langchain): add test5 script to package.json for running test5.js script

* refactor(agent.js): change response to answer and update message
refactor(test3.js, test5.js): remove commented out code and add comments

The changes in agent.js are to improve the message that is returned to the user. The word "response" has been changed to "answer" to better reflect the output of the chatbot. The message has also been updated to provide clearer instructions to the user.

The changes in test3.js and test5.js are to remove commented out code and add comments to improve readability.

* docs: update links to LOCAL_INSTALL.md and defaultSystemMessage.md
fix: fix typo in BingAI/Settings.jsx
feat: add Dockerfile for app containerization

docs(google_search.md): add guide for setting up Google Custom Search API key and ID

* docs: update link to system message guidelines in Bing AI Settings component
docs: update link to system message guidelines in GOOGLE_SEARCH.md
feat: add JAILBREAK_INFO.md guide for Bing AI jailbreak mode system message guidelines

* style(api): remove unnecessary quotes and empty values from .env.example
style(agent.js): refactor getActions method to accept an input parameter
feat(agent.js): add handleChainEnd method to CustomChatAgent class
style(customAgent.js): add a new line to the end of the file
style(test5.js): comment out unused variable and update input1 variable
style(googleSearch.js): change tool name to kebab-case

* chore(langchain): comment out handleChainEnd method in agent.js
feat(langchain): add browser tool to ChatAgent in test2.js
feat(langchain): add modelOptions to ChatAgent in test2.js
feat(langchain): change question in input1 and request article review summary in test5.js

* fix(askGPTPlugins.js): fix syntax error by removing extra comma in parentMessageId field
feat(askGPTPlugins.js): add default value of null to parentMessageId parameter in ask function

* fix(askGPTPlugins.js): change endpoint string from 'GPTPlugins' to 'gptPlugins'
feat(endpoints.js): add support for gptPlugins endpoint
feat(PresetItem.jsx): add support for gptPlugins endpoint
feat(HoverButtons.jsx): add support for gptPlugins endpoint
feat(createPayload.ts): add support for gptPlugins endpoint
feat(types.ts): add gptPlugins endpoint to EModelEndpoint enum
feat(endpoints.js): add gptPlugins endpoint to availableEndpoints selector
feat(cleanupPreset.js): add support for gptPlugins endpoint
feat(getDefaultConversation.js): add support for gptPlugins endpoint
feat(getIcon.jsx): add support for gptPlugins endpoint
feat(handleSubmit.js): add support for gptPlugins endpoint

* refactor(agent.js): remove debug option from options object
refactor(agent.js): change tool name from 'google-search' to 'google'
refactor(agent.js): update description for 'google' tool
feat(agent.js): add support for citing sources when using web links in response message
fix(agent.js): update error message to not mention error to user
feat(agent.js): add unique message ids for user message and response message
feat(agent.js): limit number of search results to 5 in 'google' tool
refactor(validateTools.js): add console log to show valid tools

* feat(askGPTPlugins.js): add support for GPT-3.5-turbo model and validate model option
refactor(askGPTPlugins.js): remove unused imports and variables
refactor(askGPTPlugins.js): remove commented code
refactor(askGPTPlugins.js): remove unused parameters in ask function
feat(ask/index.js): add askGPTPlugins route to router

* feat(NewConversationMenu): add alpha tag to gptPlugins endpoint and rename it to Plugins

* refactor(askGPTPlugins.js): remove commented code and unused imports
feat(askGPTPlugins.js): add support for debug option in endpointOption
feat(askGPTPlugins.js): add support for chatGptLabel, promptPrefix, temperature, top_p, presence_penalty, and frequency_penalty in endpointOption
feat(askGPTPlugins.js): add support for sending plugin and pluginend events
feat(askGPTPlugins.js): add onAgentAction and onChainEnd callbacks to ChatAgent.sendMessage
refactor(titleConvo.js): comment out unused imports
refactor(validateTools.js): comment out console.log statement
refactor(agent.js): change saveMessage to include unfinished property
feat(agent.js): add endpoint property to saveConvo call in saveMessageToDatabase
feat(askGPTPlugins.js): add validateTools import and use it to validate endpointOption.tools before passing to ChatAgent constructor
feat(askGPTPlugins.js

* refactor(MessageHeader.jsx): extract plugins section into a separate variable and add support for gptPlugins endpoint
fix(MessageHeader.jsx): disable clicking on non-clickable endpoints

* components for plugins in progress

* feat(Plugin.jsx): add plugin prop to Plugin component and display plugin name
feat(Plugin.jsx): add loading state and display loading spinner
feat(Plugin.jsx): add Disclosure component to Plugin component
feat(Plugin.jsx): add Disclosure.Panel to Plugin component to display team pricing information
feat(Spinner.jsx): add classProp prop to Spinner component to allow for custom styling
feat(Landing.jsx): add Plugin component to Landing page for testing

testing gpt plugins

feat(plugins): Milestone commit

- Add formatAction function to format plugin actions.
- Add prefix.js file to store the prefix message for ChatAgent.
- Update ask function to include plugin object to store plugin data.
- Update onAgentAction and onChainEnd functions to format plugin data and send intermediate messages.
- Update response object to include plugin data.

The `handlers.js` file now includes a `formatAction` function that formats the action object for display in the UI. The `createOnProgress` function now returns a `sendIntermediateMessage` function that sends intermediate messages to the client.

feat (client): add support for plugins in messages

This commit adds support for plugins in messages. It includes changes to the `handlers.js`, `index.jsx`, `CodeBlock.jsx`, `Message.jsx`, `MessageHeader.jsx`, and `Plugin.jsx` files.

The `index.jsx` file now includes a `plugin` property in the `messageHandler` function.

The `CodeBlock.jsx` file now includes a `plugin` property that determines the language of the code block.

The `Message.jsx` file now includes a `Plugin` component that displays the plugin used in the message.

The `MessageHeader.jsx` file now includes a `Plugins` component that displays the enabled plugins.

feat(langchain): add OpenAICreateImage tool for generating images based on user prompts
fix(langchain): update validateTools to include create-image tool
fix(langchain): save plugin data to messageSchema
fix(server/routes/askGPTPlugins.js): save userMessage and response to messageSchema

feat(langchain): add SelfReflectionTool

Add a new tool to the LangChain agent, SelfReflectionTool, which enhances the agent's self-awareness by reflecting on its thoughts before taking action. The tool provides a space for the agent to explore and organize its ideas in response to the user's message.

Also, update the prefix message to reflect the changes in the agent's behavior and the way it should engage with the user. The prefix message now emphasizes the use of tools when necessary, and relying on the agent's knowledge for creative requests. It also provides clear instructions on how to use the 'Action' input and how to carry out tasks in the sequence written by the human.

Finally, update the OpenAICreateImage tool to return the image URL in markdown format. The tool replaces newlines and spaces in the input text with hyphens to create a valid markdown link.

Milestone commit: better error handling with custom output parser, dir and file re-org

style(langchain): fix formatting and add comments to prefix.js
fix(langchain): remove commented out code in test6.js
feat(langchain): reduce maxAttempts from 3 to 2 in CustomChatAgent's buildPromptPrefix method
feat(langchain): add null check for result.output in CustomChatAgent's buildPromptPrefix method

style(langchain): improve consistency and readability of code

This commit improves the consistency and readability of the code in the langchain directory. Specifically, it:

- Changes the case of the "Thought" output in the CustomChatAgent class to match the "Thought" output in the SelfReflectionTool class.
- Adds a currentDateString property to the CustomChatAgent class to avoid repeating the same code in multiple places.
- Updates the prefix in the prefix.js file to match the current objectives of the ChatGPT model.
- Changes the description of the OpenAICreateImage tool to request a description of the image to be generated.
- Updates the tools used by the ChatAgent in the askGPTPlugins.js file to include the Google and Browser tools instead of the Calculator and Create-Image tools.

feat: add wolfram, improve image creation, rename to dall-e

* refactor(langchain): update language and formatting in various files

- Update tool-based instructions to use proper Markdown syntax for image URLs
- Adjust temperature for modelOptions in CustomChatAgent class
- Comment out console.debug statement in CustomChatAgent class
- Update prefix in initializeCustomAgent function to use proper line breaks
- Update prefix in instructions.js to use proper line breaks and change "user" to "human"
- Update input in test6.js to use Ezra Pound instead of Hemingway
- Update return statement in OpenAICreateImage class to use "generated-image" as alt-text
- Update description in SelfReflectionTool class to provide clearer instructions
- Update tools in ask function in askGPTPlugins.js to use only the DALL-E tool and enable debug mode

feat(ask): add support for DALL-E tool in formatAction function
feat(ask): add support for self-reflection tool in formatAction function
feat(Plugin.jsx): add support for self-reflection tool in Plugin component
fix(Plugin.jsx): fix Plugin component to not display 'None' when latest is not available

* docs(openaiCreateImage.js): update tool description to clarify usage

* feat(agent.js): add message parameter to initialize function
feat(agent.js): pass message parameter to SelfReflectionTool constructor
feat(customAgent.js): add longestToolName variable to CustomOutputParser
feat(openaiCreateImage.js): replace new lines with spaces in prompt parameter
feat(selfReflection.js): add message parameter to SelfReflectionTool constructor
feat(selfReflection.js): add placeholder response to selfReflect function

* feat: frontend plugin selection

* fix: agent updates, available tools via endpoint config

* fix: improve frontend plugin selection

* feat: further customize agent and bypass executor when no tools are provided

* fix: key issue in multiselect and allow setting changes during convo in plugins endpoint

* fix: convo will save modelOptions, fix persistent errors with agent

* fix: add looser final answer parsing and edit action formatting

* fix: handle edge case where stop token is not hit and causes long parsing error

* feat: trying new prompt for image creation

* fix: improvements based on gpt-3.5

* feat: allow setting model options throughout plugin conversation

* fix: agent adjustments

* improve final reply for gpt-4, gpt-3.5 needs a more stable approach

* fix: better context output for gpt-3.5

* fix: added clarification for better context output for gpt-3.5

* feat(PluginsOptions): add advanced mode to show/hide options
style(PluginsOptions): add styles for advanced mode and show/hide options

* minor changes to styling

* refactor(langchain): add support for custom GPT-4 agent

This commit adds support for a custom GPT-4 agent in the langchain
module. The `CustomGpt4Agent` class extends the `ZeroShotAgent` class
and includes a new `createPrompt` method that generates a prompt
template for the agent. The `initializeCustomAgent` function has been
updated to use the `CustomGpt4Agent` class when the model is not GPT-3.

The `instructions.js` file has also been updated to include new
instructions for the GPT-4 agent. The `formatInstructions` method has
been removed and replaced with `gpt4Instructions` and `prefix2` and
`suffix2` have been added to include the new instructions.

feat(langchain): add custom output parser for langchain agents

This commit adds a custom output parser for langchain agents. The new parser is called CustomOutputParser and it extends ZeroShotAgentOutputParser. It takes a fields object as a parameter and sets the tools and longestToolName properties. It also sets the finishToolNameRegex property to match the final answer. The parse method of the CustomOutputParser class takes a text parameter and returns an object with returnValues, log, and toolInput properties.

This commit also adds a Gpt4OutputParser class that extends ZeroShotAgentOutputParser. It takes a fields object as a parameter and sets the tools and longestToolName properties. It also sets the finishToolNameRegex property to match the final answer. The parse method of the Gpt4OutputParser class takes a text parameter and returns an object with returnValues, log, and toolInput properties.

feat(langchain): add isGpt3 parameter to

* Stable Diffusion Plugin (#204)

* Added stable diffusion plugin

* Added example prompt

* Fixed naming

* Removed brackets in the prompt

* fix: improved agent for gpt-3.5

* fix: outparser, gpt3 instructions, and wolfram error handling

* chore: update langchain to 0.0.71

* fix: long parsing action input fix

* fix: make plugin select close on clicking label/button

* fix: make plugin select close on clicking label/button

* fix: wolfram input formatting and gpt-3 payload without plugins

* chore(api): update axios package version to 1.3.4
feat(api): add requireJwtAuth middleware to askGPTPlugins endpoint
fix(api): replace session user with user id in askGPTPlugins endpoint

docs(LOCAL_INSTALL.md): update guide for local installation and testing

This commit updates the guide for local installation and testing of the
ChatGPT-Clone app. It includes instructions for locally running the app,
updating the app version, and running tests. It also includes a new
option for running the app using Docker. The commit also fixes some
typos and formatting issues.

* add reverseProxy to plugins client

* chore(Dockerfile-app): add Dockerfile for building and running the app in a container
docs: remove outdated guides on Google search and Bing jailbreak mode

docs(LOCAL_INSTALL.md): remove outdated Windows installation instructions and update MeiliSearch configuration file

* fix: handle n/a parsing error better, reduce token waste if no agentic behavior is needed

* style: fix formatting and add parentheses around arrow function parameter
style: change hover background color to white and dark hover background color to gray-700

* chore: re-organize agent dir and files

* feat(ChatAgent.js): add support for PlanAndExecuteAgentExecutor
feat(PlanAndExecuteAgentExecutor.js): add PlanAndExecuteAgentExecutor class
feat(planExecutor.js): add demo for PlanAndExecuteAgentExecutor

* feat: add azure support to plugins

* refactor(utils): add basePath endpoint for genAzureEndpoint
feat(api): add support for Azure OpenAI API in various modules and tools

* feat: add plugin api for fetching available tools

* feat: add data service for getting available plugins

* feat: first iteration plugin store UI

* refactor: rename files to follow proper naming convention

* feat: Plugin store UI components

* feat: create separate user routes, service, controller, and add plugins to user model

* feat: create data service for adding and removing plugins per user

* feat: UI for adding and removing plugins, displaying plugins in dropdown based on what user has installed

* fix: merge conflicts from main

* fix: fix plugin items titles

* fix: tool.value -> tool.pluginKey

* fix: testing returnDirect for self-reflection

* fix: add browser tool to manifest

* refactor(outputParser.js): remove commented out code
feat(outputParser.js): add support for thought input when there is no action input

* handling 'use tool' edge case

* merge main to langchain

* fix(User.js, auth.service.js, localStrategy.js): change deprecated Joi.validate() to schema.validate() method (#322)

* fix(auth.service.js): fixes deprecated error callback in mongoose save method (#323)

* chore: run formatting script with new rules

* refactor: add requiresAuth to manifest, fix uninstall button

* version with plugin auth as dialog modal

* feat: Complete frontend for plugin auth

* frontend styling updates

* feat: api for plugin auth

* feat: Add tooltip with field description to plugin auth form

* fix: issue with plugin that has no auth

* feat(tools): add support for user-specific API keys

This commit adds support for user-specific API keys for the following tools:
- Google Search API
- Web Browser
- SerpAPI
- Zapier
- DALL-E
- Wolfram Alpha API

It also adds support for OpenAI API key for the Web Browser tool.

The `validateTools` function now takes a `user` parameter and checks for user-specific API keys before falling back to environment variables.

The `loadTools` function now takes a `user` parameter and initializes the tools with user-specific API keys if available.

The `manifest.json` file has been updated to include the new `authConfig` fields for the tools that support user-specific API keys.

The `askGPTPlugins.js` file has been updated to use the `validateTools` function with the `user` parameter.

refactor(ChatAgent.js): add user parameter to initialize function and pass it to loadTools function

refactor(tools/index.js): set default value for tools parameter in validateTools function
refactor(askGPTPlugins.js): remove duplicate user variable declaration and use the one from req object

* refactor(ChatAgent.js): await validTool() before pushing to this.tools array
refactor(tools/index.js): use Map instead of Set to store valid tools
refactor(tools/index.js): filter availableTools to only validate tools passed in
refactor(PluginController.js): filter out duplicate plugins by pluginKey
refactor(crypto.js): use environment variables for encryption key and initialization vector
feat(PluginService.js): add null check for pluginAuth in getUserPluginAuthValue()

* feat(api): add credentials key and IV to .env.example for securely storing credentials

* Adds testing for handling tools, introducing a test env to the backend
Fixes bugs & optimizes code as revealed through testing, including:
- wolfram.js: fixes bug where wolfram was not handling authentication
- ChatAgent.js: ChatAgent modified to reflect 'handleTools' changes
- handleTools.js: Moves logic out of index file
- handleTools.js: loadTools: returns only requested tools
- handleTools.js: validTools: correctly returns tools based on authentication

* test(index.test.js): add test to validate a tool from an environment variable

* test(tools): add test for initializing an authenticated tool through Environment Variables

* refactor(ChatAgent.js): remove commented out code and unused imports

* refactor(ChatAgent.js): move instructions to a separate file and import them
fix(ChatAgent.js): replace hardcoded instructions with imported ones

* refactor(ChatAgent.js): change import path for TextStream
refactor(stream.js): remove unused TextStream class

* chore(.gitignore): add .env.test to gitignore
refactor(ChatAgent.js): rename CustomChatAgent to ChatAgent
test(ChatAgent.test.js): add tests for ChatAgent class
refactor(outputParser.js): remove OldOutputParser class
refactor(outputParser.js): rename CustomOutputParser to OutputParser
docs(.env.test.example): add comment explaining how to use OPENAI_API_KEY
refactor(jestSetup.js): use dotenv to load environment variables from .env.test file

* Various optimizations and config, add tests for PluginStoreDialog

* test(ChatAgent.test.js): add test to check if chat history is returned correctly

* test: unit tests for plugin store

* test: add frontend-test script to root package.json

* feat(ChatAgent.js, askGPTPlugins.js): add support for aborting chat requests (in progress)

* test: add more client tests

* feat(ChatAgent): allow plugin requests to be cancelled

* feat(ChatAgent): allow message regeneration

* feat(ChatAgent): remember last selected tools

* Remove plugins we don't yet have from manifest.json

* fix(ChatAgent.js): increase maxAttempts from 1 to 2
fix(ChatAgent.js): change error message to 'Cancelled.' if message was aborted mid-generation
fix(openaiCreateImage.js): replace unwanted characters in input string
fix(handlers.js): compare action.tool in lowercase to 'self-reflection'

* fix(ChatAgent): Fix up plugin I/O formatting for n/a actions

* refactor(Plugin.jsx): remove unused import statement
feat(Plugin.jsx): add Plugin component with svg paths and styles

* refactor: simplify credential encryption/decryption by using a single key and IV for all environments. Update crypto.js and .env.example files accordingly.

* fix(ChatAgent.js): reduce maxAttempts from 2 to 1
feat(ChatAgent.js): add model information to responseMessage object
feat(Message.js): add model field to messageSchema
feat(Message.js): add model field to message object
feat(Message.jsx): pass model information to getIcon function
feat(getIcon.jsx): add Plugin component and handle plugin messages differently

* feat(askGPTPlugins.js): add model property to the ask function response object
feat(EndpointItem.jsx): add message property to the EndpointItem component
feat(MessageHeader.jsx): add Plugin icon to the plugins section
feat(MessageHeader.jsx): change alpha to beta in the plugins section
feat(svg): add Plugin, GPTIcon, and BingIcon components to the svg folder
refactor(EndpointItems.jsx): remove unused import statement

* refactor(googleSearch.js, wolfram.js): change error handling to return a message instead of throwing an error

* refactor(CustomAgent): remove commented code and change return object to include returnValues property

* feat(CustomAgent.js): add currentDateString to createPrompt method options
deps(api/package.json): update langchain to v0.0.81

* fix: do not show pagination if the maxPage is 1

* Add Zapier back to manifest (accidentally removed)

* chore(api): update langchain dependency to version 0.0.84

* feat(DALL-E.js): add DALL-E tool for generating images using OpenAI's DALL-E API
refactor(handleTools.js): update import for DALL-E tool
refactor(index.test.js): update import for DALL-E tool
refactor(stablediffusion.js): add check for image directory existence before saving image

* refactor(CustomAgent): rename instructions prefix variable to gpt3 and add gpt4 instructions
feat(CustomAgent): add support for gpt-4 model
fix(initializeCustomAgent.js): pass model name to createPrompt method
fix(outputParser.js): set selectedTool to 'self-reflection' when tool parsing fails

* style(langchain/tools): update guidelines for image creation in DALL-E and StableDiffusion

- Update guidelines for image creation in DALL-E and StableDiffusion tools
- Emphasize the importance of "showing" and not "telling" the imagery in crafting input
- Update formatting for the example prompt for generating a realistic portrait photo of a man
- Generate images only once per human query unless explicitly requested by the user

* docs(tools): update tool descriptions for DALL-E and Stable Diffusion

- Update the description for DALL-E tool to indicate that it is exclusively for visual content and provide guidelines for generating images with a focus on visual attributes.
- Update the description for Stable Diffusion tool to indicate that it is exclusively for visual content and provide guidelines for generating images with a focus on visual attributes.

* chore(api): update "@waylaidwanderer/chatgpt-api" dependency to version "^1.36.3"

* refactor(ChatAgent.js): use environment variable for reverse proxy url
refactor(ChatAgent.js): use environment variable for openai base path
refactor(instructions.js): update gpt3 and gpt3-v2 instructions
refactor(outputParser.js): update finishToolNameRegex in CustomOutputParser class

* refactor(DALL-E.js): change apiKey and azureKey fields to uppercase
refactor(googleSearch.js): change cx and apiKey fields to uppercase
feat(manifest.json): add authConfig field for Stable Diffusion WebUI API URL
refactor(stablediffusion.js): add url field to constructor and change getServerURL() to this.url
refactor(wolfram.js): change apiKey field to uppercase WOLFRAM_APP_ID

* refactor(handleTools.js): simplify tool loading and add support for custom tool constructors and options

* refactor(handleTools.js): remove commented out code and unused imports

* refactor(handleTools.js, index.js): change file name from wolfram.js to Wolfram.js and selfReflection.js to SelfReflection.js to follow PascalCase convention

* refactor(outputParser.js, askGPTPlugins.js): improve code readability and remove unnecessary comments

* feat(GoogleSearch.js): add GoogleSearchAPI tool to allow agents to use the Google Custom Search API
feat(SelfReflection.js): add SelfReflectionTool to allow agents to reflect on their thoughts and actions
feat(StableDiffusion.js): add StableDiffusionAPI tool to allow agents to generate images using stable diffusion webui's api

feat(Wolfram.js): add WolframAlphaAPI tool for computation, math, curated knowledge & real-time data through WolframAlpha.

* testing openai specs

* doc: fix link in .env.example

* package-update

* fix(MultiSelectDropDown.jsx): handle null or undefined values in availableValues array

* refactor(DALL-E.js, StableDiffusion.js): remove 'dist/' from image path
feat(docker-compose.yml): add comments for reverse proxy configuration

* chore(.gitignore): ignore client/public/images/
fix(DALL-E.js, StableDiffusion.js): change image path from dist/ to public/
feat(index.js): add support for serving static files from client/public/ directory

* fix: remove selected tool when uninstalled

* plugin options in progress

* fix: fix issue with uninstalling a plugin that is in use and typescript errors

* feat(gptPlugins): add Preset support for GPT Plugins endpoint
feat(ChatAgent.js): add support for agentOptions object
feat(convoSchema.js): add agentOptions field to conversation schema
feat(defaults.js): add agentOptions object to defaults
feat(presetSchema.js): add agentOptions field to preset schema
feat(askGPTPlugins.js): add support for agentOptions object in request body

feat(EditPresetDialog.jsx): add support for showing/hiding GPT Plugins agent settings
feat(EditPresetDialog.jsx): add support for setting GPT Plugins agent options
fix(EndpointOptionsDialog.jsx): change endpoint name from 'gptPlugins' to 'Plugins'

feat(AgentSettings.jsx): add AgentSettings component for GPT plugins configuration

feat(client): add GPT Plugins settings component and endpoint to Settings component
fix(client): remove unused imports in GoogleOptions component

feat(PluginsOptions): add support for agent settings and refactor code
feat(PluginsOptions): add GPTIcon to show/hide agent settings button
feat(index.ts): export SVG components

feat(GPTIcon.jsx): add className prop to GPTIcon component
feat(GPTIcon.jsx): import cn function from utils
feat(BingIcon.tsx): export BingIcon component
feat(index.ts): export BingIcon component
feat(index.ts): export MessagesSquared component
refactor(cleanupPreset.js): add default values for agentOptions in gptPlugins endpoint

feat(getDefaultConversation.js, handleSubmit.js): add agentOptions object to conversation object for GPT plugins endpoint. Update default temperature value to 0.8. Add chatGptLabel and promptPrefix properties to conversation object.

* fix: set default convo back to null

* refactor(ChatAgent.js, askGPTPlugins.js, AgentSettings.jsx): change variable names for better readability and remove redundant code

* test: add RecoilRoot to layout-test-utils

* refactor(askGPTPlugins.js): remove redundant code and use endpointOption directly
feat(askGPTPlugins.js): add validation for tools in endpointOption before using it

* chore(ChatAgent.js, Settings.jsx): add agentOptions to saveConvo function and adjust Settings component height

The ChatAgent.js file was modified to include the agentOptions object in the saveConvo function. The Settings.jsx file was modified to adjust the height of the component to ensure that all content is visible.

* refactor(ChatAgent.js): extract reverseProxyUrl option to a class property and add support for it
feat(ChatAgent.js): add support for completionMode option in sendApiMessage method
feat(ChatAgent.js): add support for user-provided promptPrefix in buildPrompt method

* feat(plugins): allow preset change mid conversation

* chore: update OPENAI_KEY to OPENAI_API_KEY in .github/playwright.yml and api/.env.example
refactor(chatgpt-client.js): update OPENAI_KEY to OPENAI_API_KEY
feat(langchain): add demo-aiplugin.js and demo-yaml.js, remove test2.js, test3.js, and test4.js

chore: remove unused test files
fix(titleConvo.js): fix typo in environment variable name
fix(askGPTPlugins.js): fix typo in environment variable name
fix(endpoints.js): fix typo in environment variable name
docs: update installation guide to use OPENAI_API_KEY instead of OPENAI_KEY in .env file

* fix(index.test.js): change import of GoogleSearchAPI to use uppercase G in GoogleSearch

* chore(api): bump langchain version

* feat(PluginController.js): authenticate plugins from environment variables if they are set
feat(PluginStoreDialog.tsx): show plugin auth form only if plugin is not authenticated by env var and require authentication
feat(types.ts): add authenticated field to TPlugin type definition

* docs: update google_search.md and add stable_diffusion.md

* Update stable_diffusion.md

* refactor(Wolfram.js): remove newline characters from query before encoding
docs(wolfram.md): add instructions for setting WOLFRAM_APP_ID in api.env to bypass prompt for AppID in plugin

* refactor(Wolfram.js): replace deprecated replaceAll method with replace method

* Update wolfram.md

* fix(askGPTPlugins): error message will reference correct Parent Message

* refactor(chatgpt-client.js, ChatAgent.js): simplify maxContextTokens calculation and add promptPrefix parameter to buildPrompt method

* docs: initial draft of intro to plugins

* Update introduction.md

* Update introduction.md

* Feature: User/Reg cleanup + Install / Upgrade script for langchain (#427)

* test: login tests

* test: finish login tests

* test: initial tests for registration

* test: registration specs

* feature: Init a app config file
- Simplifies the ENV vars too
- Legacy fallbacks for older builds

* refactor(auth): Refactor log in/out controllers
- Moves both login and logout controllers to their own file

* chore(jwt): Throw warning if secret is default

* feature(frontend): Ability to disable registration

* feature(env): Env in the root + version support
ie .env.prod, .env.dev, .env.test

* feature: Upgrade .env script for users

* chore(config): Refactor and remove legacy env refs

* feature(upgrade): Upgrade script for .env changes

* feature: Install script and upgrade script

* bugfix: Uncomment line to remove old .env file

* chore: rename OPENAI_KEY to OPENAI_API_KEY

* chore: Cleanup config changes/bugs

* bugfix: Fix config and node env issues

* bugfix: Config validation logic

* bugfix: Handle unusual env configs gracefully

* bugfix: Revert route changes and fix registration disable calling

* bugfix: Fix env issues in frontend

* bugfix: Fix login

* bugfix: Fix frontend envs

* bugfix: Fix frontend jest tests

* bugfix: Fix upgrade scripts

* bugfix: Allow install in non-tty envs

* bugfix(windows): Use cross-env to set for windows

* bugfix(env): Handle .env being incorrect to begin with for client domain

* chore(merge-conflict): Update to LibreChat

* chore(merge-conflict): Update to package-lock

---------

Co-authored-by: Daniel D Orlando <dan@danorlando.com>

* chore: comment out unused agent options

* Update langchain plugins docs (#461)

* Update: install docs (LibreChat) (#458)

* Release: rename project from ChatGPT Clone to LibreChat

Release: rename project from ChatGPT Clone to LibreChat

* Release: rename project from ChatGPT Clone to LibreChat

Release: rename project from ChatGPT Clone to LibreChat

* Release: rename project from ChatGPT Clone to LibreChat

Release: rename project from ChatGPT Clone to LibreChat

* Release: rename project from ChatGPT Clone to LibreChat

Release: rename project from ChatGPT Clone to LibreChat

* Update documentation_guidelines.md

* Update introduction.md

add link to readme

* Update stable_diffusion.md

add link back to readme

* Update wolfram.md

add link back to readme

* Update README.md

add Plugins to ToC

* feat(ChatAgent.js): add support for langchainProxy configuration option

Add a new configuration option `langchainProxy` to the ChatAgent class. If the option is set, the `basePath` configuration option of the `ChatOpenAI` instance is set to the base path of `langchainProxy`.

* bugfix(errors): Possible workaround for error flashing (#463)

* Test/user auth system client tests (#462)

* test: login tests

* test: finish login tests

* test: initial tests for registration

* test: registration specs

* chore(api): update langchain dependency to version 0.0.91

* Update introduction.md

* Update introduction.md

* Update introduction.md

* fix: no longer renders html in markdown content
fix: patch XSS vulnerability completely by handling cursor on the frontend without css/html

* fix(Content.jsx): fix cursor logic so it never shows for static messages

* bugfix(langchain): Upgrade script, docker, env and docs (#465)

* bugfix(errors): Remove incorrect manual fix from misunderstanding

* chore(env): Lets not make a .env.prod and use the prod values in the default root .env
- .env.dev will still be created

* chore(upgrade.js): Lets tell the user about .env.dev if we create it

* bugfix(env): Move to full name environments for vite
- .env.prod => .env.production
- .env.dev => .env.development

* chore(env-example): Explain how to get google login working in production

* bugfix(oauth): Minor fix to point isProduction to a correct value

* bugfix: Typo in public

* chore(docs): Update docs to note the changes to .env

* chore(docs): Include note on how to get google auth working in dev and how to disable registration

* bugfix: Fix missing env changes

* bugfix: Fix up docker to work with new env / npm changes

* Update .env.example

Cleanup the env of the palm2 instruction and fix to formating

* chore(docker): Simplify Docker deployments
- Needs work to support dev env/hotreload

* bugfix: Remove volume map for client dir

* chore(env-example): Change instructions to be more user centric

---------

Co-authored-by: Fuegovic <32828263+fuegovic@users.noreply.github.com>

* update: install docs (#466)

* Add files via upload

* Update apis-and-tokens.md

* Update apis-and-tokens.md

* Update docker_install.md

* Update linux_install.md

* Rename apis-and-tokens.md to apis_and_tokens.md

* Update docker_install.md

* Update linux_install.md

* Update mac_install.md

* Update linux_install.md

* Update docker_install.md

* Update windows_install.md

* Update apis_and_tokens.md

* Update mac_install.md

* Update linux_install.md

* Update docker_install.md

* Update README.md

* Update README.md : Breaking Changes

---------

Co-authored-by: Danny Avila <110412045+danny-avila@users.noreply.github.com>

* Update README.md (#468)

add new API/Token docs to Toc

* docs: guide on how to create your own plugin

* Update make_your_own.md

* Update make_your_own.md

* feat(docker): add build args for frontend variables in Dockerfile
feat(docker-compose): add build args for frontend variables in docker-compose.yml

* Update docker_install.md

* Update docker_install.md

* Update docker_install.md

* Update docker_install.md

* docs: update (#469)

* Update: make_your_own.md

* Update README.md

add `make_your_own.md` to ToC

* Update linux_install.md

* Update mac_install.md

* Update windows_install.md

* Update apis_and_tokens.md

* Update docker_install.md

* Update docker_install.md

* Update linux_install.md

* Update mac_install.md

* Update windows_install.md

* Update apis_and_tokens.md

* Update user_auth_system.md

* Update docker_install.md

clean up of repeated information

* Update docker_install.md

* Update docker_install.md

typo

* fix: fix issue with pluginstore next and prev buttons going out of bounds

* fix: add icon for web browser plugin

* docs(GoogleSearch.js): update description of GoogleSearchAPI class to be more descriptive of its functionality

* feat(ask/handlers.js): add cursor to indicate ongoing progress of a long-running task
fix(Content.jsx): handle null content in the message stream by replacing it with an empty string (with a space so a text space is rendered)

* Update README.md

* Update README.md

* fix: plugin option stacking order

* update: web browser icon (#470)

* Delete web-browser.png

* update: web browser icon

* Update readme (#472)

* Update README.md

Discord badge now displays the number of online users
Project description has been updated to reflect current status
Feature section has been updated to reflect current capabilities
Sponsors section is now located just above the contributors section
Roadmap has been removed as it was outdated.

* Delete roadmap.md

Roadmap has been removed to streamline document maintenance.

* Update README.md

* Update README.md

* Delete CHANGELOG.md

* fix: pluginstore in mobile view getting clipped and not scrolling

* docs(linux_install.md): remove duplicate git clone command

* chore(Dockerfile): comment out nginx-client build stage
docs(README.md): update installation instructions and mention docker-compose changes
docs(features/plugins/introduction.md): bold plugin names and add emphasis to notes

* feat: add superscript and subscript support to markdown rendering
refactor: support markdown citations for BingAI

* refactor: support markdown citations for BingAI

---------

Co-authored-by: David Shin <42793498+dncc89@users.noreply.github.com>
Co-authored-by: Daniel D Orlando <dan@danorlando.com>
Co-authored-by: LaraClara <2524209+ClaraLeigh@users.noreply.github.com>
Co-authored-by: Fuegovic <32828263+fuegovic@users.noreply.github.com>
2023-06-10 19:10:03 -04:00

7305 lines
282 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

openapi: 3.0.3
servers:
- url: https://api.spotify.com/v1
info:
description: |
You can use Spotify's Web API to discover music and podcasts, manage your Spotify library, control audio playback, and much more. Browse our available Web API endpoints using the sidebar at left, or via the navigation bar on top of this page on smaller screens.
In order to make successful Web API requests your app will need a valid access token. One can be obtained through <a href="https://developer.spotify.com/documentation/general/guides/authorization-guide/">OAuth 2.0</a>.
The base URI for all Web API requests is `https://api.spotify.com/v1`.
Need help? See our <a href="https://developer.spotify.com/documentation/web-api/guides/">Web API guides</a> for more information, or visit the <a href="https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer">Spotify for Developers community forum</a> to ask questions and connect with other developers.
termsOfService: https://developer.spotify.com/terms/
title: Spotify Web API
version: 1.0.0
x-apisguru-categories:
- media
x-logo:
url: https://logo-core.clearbit.com/spotify.com
x-origin:
- format: openapi
url: https://developer.spotify.com/_data/documentation/web-api/reference/open-api-schema.yml
version: "3.0"
x-providerName: spotify.com
paths:
/albums:
get:
description: |
Get Spotify catalog information for multiple albums identified by their Spotify IDs.
operationId: get-multiple-albums
parameters:
- $ref: "#/components/parameters/QueryAlbumIds"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/ManyAlbums"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Albums
tags:
- Albums
x-spotify-docs-console-url: /console/get-several-albums/
x-spotify-docs-endpoint-name: Get Multiple Albums
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Albums
x-spotify-docs-display-name: several-albums
"/albums/{id}":
get:
description: |
Get Spotify catalog information for a single album.
operationId: get-an-album
parameters:
- $ref: "#/components/parameters/PathAlbumId"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/OneAlbum"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Album
tags:
- Albums
x-spotify-docs-console-url: /console/get-album/?id=0sNOF9WDwhWunNAHPD3Baj
x-spotify-docs-endpoint-name: Get an Album
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Albums
x-spotify-docs-display-name: album
"/albums/{id}/tracks":
get:
description: |
Get Spotify catalog information about an albums tracks.
Optional parameters can be used to limit the number of tracks returned.
operationId: get-an-albums-tracks
parameters:
- $ref: "#/components/parameters/PathAlbumId"
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSimplifiedTrackObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Album Tracks
tags:
- Albums
- Tracks
x-spotify-docs-console-url: /console/get-album-tracks/
x-spotify-docs-endpoint-name: Get an Album's Tracks
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Albums
x-spotify-docs-display-name: album-tracks
/artists:
get:
description: |
Get Spotify catalog information for several artists based on their Spotify IDs.
operationId: get-multiple-artists
parameters:
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for the artists. Maximum: 50 IDs.
example: 2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6
title: Spotify Artist IDs
type: string
responses:
"200":
$ref: "#/components/responses/ManyArtists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Artists
tags:
- Artists
x-spotify-docs-console-url: /console/get-several-artists/?ids=0oSGxfWSnnOXhD2fKuz2Gy,3dBVyJ7JuOMt4GE9607Qin
x-spotify-docs-endpoint-name: Get Multiple Artists
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Artists
x-spotify-docs-display-name: several-artists
"/artists/{id}":
get:
description: |
Get Spotify catalog information for a single artist identified by their unique Spotify ID.
operationId: get-an-artist
parameters:
- $ref: "#/components/parameters/PathArtistId"
responses:
"200":
$ref: "#/components/responses/OneArtist"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Artist
tags:
- Artists
x-spotify-docs-console-url: /console/get-artist/?id=0OdUWJ0sBjDrqHygGUXeCF
x-spotify-docs-endpoint-name: Get an Artist
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Artists
x-spotify-docs-display-name: artist
"/artists/{id}/albums":
get:
description: |
Get Spotify catalog information about an artist's albums.
operationId: get-an-artists-albums
parameters:
- $ref: "#/components/parameters/PathArtistId"
- $ref: "#/components/parameters/QueryIncludeGroups"
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSimplifiedAlbumObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Artist's Albums
tags:
- Artists
- Albums
x-spotify-docs-console-url: /console/get-artist-albums/?album_type=single&amp;limit=2&amp;market=ES&amp;id=1vCWHaC5f2uS3yhpwWbIA6
x-spotify-docs-endpoint-name: Get an Artist's Albums
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Artists
x-spotify-docs-display-name: artist-albums
"/artists/{id}/related-artists":
get:
description: |
Get Spotify catalog information about artists similar to a given artist. Similarity is based on analysis of the Spotify community's [listening history](http://news.spotify.com/se/2010/02/03/related-artists/).
operationId: get-an-artists-related-artists
parameters:
- $ref: "#/components/parameters/PathArtistId"
responses:
"200":
$ref: "#/components/responses/ManyArtists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Artist's Related Artists
tags:
- Artists
x-spotify-docs-console-url: /console/get-artist-related-artists/?id=43ZHCT0cAZBISjO8DG9PnE
x-spotify-docs-endpoint-name: Get an Artist's Related Artists
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Artists
x-spotify-docs-display-name: artist-related-artists
"/artists/{id}/top-tracks":
get:
description: |
Get Spotify catalog information about an artist's top tracks by country.
operationId: get-an-artists-top-tracks
parameters:
- $ref: "#/components/parameters/PathArtistId"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/ManyTracks"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Artist's Top Tracks
tags:
- Artists
- Tracks
x-spotify-docs-console-url: /console/get-artist-top-tracks/?country=SE&amp;id=43ZHCT0cAZBISjO8DG9PnE
x-spotify-docs-endpoint-name: Get an Artist's Top Tracks
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Artists
x-spotify-docs-display-name: artist-top-tracks
"/audio-analysis/{id}":
get:
description: |
Get a low-level audio analysis for a track in the Spotify catalog. The audio analysis describes the tracks structure and musical content, including rhythm, pitch, and timbre.
operationId: get-audio-analysis
parameters:
- in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids)
for the track.
example: 11dFghVXANMlKmJXsNCbNl
title: Spotify Track ID
type: string
responses:
"200":
$ref: "#/components/responses/OneAudioAnalysis"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Track's Audio Analysis
tags:
- Tracks
x-spotify-docs-console-url: /console/get-audio-analysis-track/?id=06AKEBrKUckW0KREUWRnvT
x-spotify-docs-endpoint-name: Get Audio Analysis for a Track
x-spotify-docs-category: Tracks
x-spotify-docs-display-name: audio-analysis-track
/audio-features:
get:
description: |
Get audio features for multiple tracks based on their Spotify IDs.
operationId: get-several-audio-features
parameters:
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids)
for the tracks. Maximum: 100 IDs.
example: 7ouMYWpwJ422jRcDASZB7P,4VqPOruhp5EdPBeR92t6lQ,2takcwOaAZWiXQijPHIx7B
title: Spotify Track IDs
type: string
responses:
"200":
$ref: "#/components/responses/ManyAudioFeatures"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Tracks' Audio Features
tags:
- Tracks
x-spotify-docs-console-url: /console/get-audio-features-several-tracks/?ids=4JpKVNYnVcJ8tuMKjAj50A,2NRANZE9UCmPAS5XVbXL40,24JygzOLM0EmRQeGtFcIcG
x-spotify-docs-endpoint-name: Get Audio Features for Several Tracks
x-spotify-docs-category: Tracks
x-spotify-docs-display-name: audio-features-several-tracks
"/audio-features/{id}":
get:
description: |
Get audio feature information for a single track identified by its unique
Spotify ID.
operationId: get-audio-features
parameters:
- in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the track.
example: 11dFghVXANMlKmJXsNCbNl
title: Spotify Track ID
type: string
responses:
"200":
$ref: "#/components/responses/OneAudioFeatures"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Track's Audio Features
tags:
- Tracks
x-spotify-docs-console-url: /console/get-audio-features-track/?id=06AKEBrKUckW0KREUWRnvT
x-spotify-docs-endpoint-name: Get Audio Features for a Track
x-spotify-docs-category: Tracks
x-spotify-docs-display-name: audio-features-track
/audiobooks:
get:
description: |
Get Spotify catalog information for several audiobooks identified by their Spotify IDs.<br />
**Note: Audiobooks are only available for the US, UK, Ireland, New Zealand and Australia markets.**
operationId: get-multiple-audiobooks
parameters:
- $ref: "#/components/parameters/QueryAudiobookIds"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/ManyAudiobooks"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Audiobooks
tags:
- Audiobooks
x-spotify-docs-console-url: /console/get-several-audiobooks/?ids=5thw29eqjomhIDMY1XKsLk,2IEBhnu61ieYGFRPEJIO40
x-spotify-docs-endpoint-name: Get Several Audiobooks
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Audiobooks
x-spotify-docs-display-name: several-audiobooks
"/audiobooks/{id}":
get:
description: |
Get Spotify catalog information for a single audiobook.<br />
**Note: Audiobooks are only available for the US, UK, Ireland, New Zealand and Australia markets.**
operationId: get-an-audiobook
parameters:
- $ref: "#/components/parameters/PathAudiobookId"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/OneAudiobook"
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get an Audiobook
tags:
- Audiobooks
x-spotify-docs-console-url: /console/get-audiobook/?id=5thw29eqjomhIDMY1XKsLk
x-spotify-docs-endpoint-name: Get an Audiobook
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Audiobooks
x-spotify-docs-display-name: audiobook
"/audiobooks/{id}/chapters":
get:
description: |
Get Spotify catalog information about an audiobook's chapters.<br />
**Note: Audiobooks are only available for the US, UK, Ireland, New Zealand and Australia markets.**
operationId: get-audiobook-chapters
parameters:
- $ref: "#/components/parameters/PathAudiobookId"
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSimplifiedChapterObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Audiobook Chapters
tags:
- Audiobooks
- Chapters
x-spotify-docs-console-url: /console/get-audiobook-chapters/?id=5thw29eqjomhIDMY1XKsLk
x-spotify-docs-endpoint-name: Get an Audiobook's Chapters
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Audiobooks
x-spotify-docs-display-name: audiobook-chapters
/browse/categories:
get:
description: |
Get a list of categories used to tag items in Spotify (on, for example, the Spotify players “Browse” tab).
operationId: get-categories
parameters:
- in: query
name: country
required: false
schema:
description: |
A country: an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Provide this parameter if you want to narrow the list of returned categories to those relevant to a particular country. If omitted, the returned items will be globally relevant.
example: SE
title: Country
type: string
- in: query
name: locale
required: false
schema:
description: |
The desired language, consisting of an [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code and an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), joined by an underscore. For example: `es_MX`, meaning "Spanish (Mexico)". Provide this parameter if you want the category metadata returned in a particular language. <br/>
_**Note**: if `locale` is not supplied, or if the specified language is not available, all strings will be returned in the Spotify default language (American English). The `locale` parameter, combined with the `country` parameter, may give odd results if not carefully matched. For example `country=SE&locale=de_DE` will return a list of categories relevant to Sweden but as German language strings._
example: sv_SE
title: Locale
type: string
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagedCategories"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Browse Categories
tags:
- Categories
x-spotify-docs-console-url: /console/get-browse-categories/
x-spotify-docs-endpoint-name: Get All Categories
x-spotify-docs-category: Browse
x-spotify-docs-display-name: browse-categories
"/browse/categories/{category_id}":
get:
description: |
Get a single category used to tag items in Spotify (on, for example, the Spotify players “Browse” tab).
operationId: get-a-category
parameters:
- in: path
name: category_id
required: true
schema:
description: |
The [Spotify category ID](/documentation/web-api/concepts/spotify-uris-ids) for the category.
example: dinner
title: Category ID
type: string
- in: query
name: country
required: false
schema:
description: |
A country: an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Provide this parameter to ensure that the category exists for a particular country.
example: SE
title: Country
type: string
- in: query
name: locale
required: false
schema:
description: |
The desired language, consisting of an [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code and an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), joined by an underscore. For example: `es_MX`, meaning &quot;Spanish (Mexico)&quot;. Provide this parameter if you want the category strings returned in a particular language.<br/> _**Note**: if `locale` is not supplied, or if the specified language is not available, the category strings returned will be in the Spotify default language (American English)._
example: sv_SE
title: Locale
type: string
responses:
"200":
$ref: "#/components/responses/OneCategory"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Single Browse Category
tags:
- Categories
x-spotify-docs-console-url: /console/get-browse-category/
x-spotify-docs-endpoint-name: Get a Category
x-spotify-docs-category: Browse
x-spotify-docs-display-name: browse-category
"/browse/categories/{category_id}/playlists":
get:
description: |
Get a list of Spotify playlists tagged with a particular category.
operationId: get-a-categories-playlists
parameters:
- in: path
name: category_id
required: true
schema:
description: |
The [Spotify category ID](/documentation/web-api/concepts/spotify-uris-ids) for the category.
example: dinner
title: Category ID
type: string
- in: query
name: country
required: false
schema:
description: |
A country: an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Provide this parameter to ensure that the category exists for a particular country.
example: SE
title: Country
type: string
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagedFeaturedPlaylists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Category's Playlists
tags:
- Playlists
- Categories
x-spotify-docs-console-url: /console/get-category-playlists/?country=BR&amp;category_id=party&amp;limit=2
x-spotify-docs-endpoint-name: Get a Category's Playlists
x-spotify-docs-category: Browse
x-spotify-docs-display-name: category-playlists
/browse/featured-playlists:
get:
description: |
Get a list of Spotify featured playlists (shown, for example, on a Spotify player's 'Browse' tab).
operationId: get-featured-playlists
parameters:
- in: query
name: country
required: false
schema:
description: |
A country: an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Provide this parameter if you want the list of returned items to be relevant to a particular country. If omitted, the returned items will be relevant to all countries.
example: SE
title: Country
type: string
- in: query
name: locale
required: false
schema:
description: |
The desired language, consisting of a lowercase [ISO 639-1 language code](http://en.wikipedia.org/wiki/ISO_639-1) and an uppercase [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), joined by an underscore. For example: `es_MX`, meaning "Spanish (Mexico)". Provide this parameter if you want the results returned in a particular language (where available). <br/>
_**Note**: if `locale` is not supplied, or if the specified language is not available, all strings will be returned in the Spotify default language (American English). The `locale` parameter, combined with the `country` parameter, may give odd results if not carefully matched. For example `country=SE&locale=de_DE` will return a list of categories relevant to Sweden but as German language strings._
example: sv_SE
title: Locale
type: string
- in: query
name: timestamp
required: false
schema:
description: |
A timestamp in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601): `yyyy-MM-ddTHH:mm:ss`. Use this parameter to specify the user's local time to get results tailored for that specific date and time in the day. If not provided, the response defaults to the current UTC time. Example: "2014-10-23T09:00:00" for a user whose local time is 9AM. If there were no featured playlists (or there is no data) at the specified time, the response will revert to the current UTC time.
example: 2014-10-23T09:00:00
title: Timestamp
type: string
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagedFeaturedPlaylists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Featured Playlists
tags:
- Playlists
x-spotify-docs-console-url: /console/get-featured-playlists/?country=SE&amp;limit=2
x-spotify-docs-endpoint-name: Get All Featured Playlists
x-spotify-policy-list:
- $ref: "#/components/x-spotify-policy/MultipleIntegrations"
x-spotify-docs-category: Browse
x-spotify-docs-display-name: featured-playlists
/browse/new-releases:
get:
description: |
Get a list of new album releases featured in Spotify (shown, for example, on a Spotify players “Browse” tab).
operationId: get-new-releases
parameters:
- in: query
name: country
required: false
schema:
description: |
A country: an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Provide this parameter if you want the list of returned items to be relevant to a particular country. If omitted, the returned items will be relevant to all countries.
example: SE
title: Country
type: string
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagedAlbums"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get New Releases
tags:
- Albums
x-spotify-docs-console-url: /console/get-new-releases/?country=SE
x-spotify-docs-endpoint-name: Get All New Releases
x-spotify-policy-list:
- $ref: "#/components/x-spotify-policy/MultipleIntegrations"
x-spotify-docs-category: Browse
x-spotify-docs-display-name: new-releases
/chapters:
get:
description: |
Get Spotify catalog information for several chapters identified by their Spotify IDs.<br />
**Note: Chapters are only available for the US, UK, Ireland, New Zealand and Australia markets.**
operationId: get-several-chapters
parameters:
- $ref: "#/components/parameters/QueryChapterIds"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/ManyChapters"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Chapters
tags:
- Chapters
x-spotify-docs-console-url: /console/get-several-chapters/?ids=2i47HuOBSV2XaJNy0NCZXM,2GUbORsUnP1qVVlLwd9DzP
x-spotify-docs-endpoint-name: Get Several Chapters
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Chapters
x-spotify-docs-display-name: several-chapters
"/chapters/{id}":
get:
description: |
Get Spotify catalog information for a single chapter.<br />
**Note: Chapters are only available for the US, UK, Ireland, New Zealand and Australia markets.**
operationId: get-a-chapter
parameters:
- $ref: "#/components/parameters/PathChapterId"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/OneChapter"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get a Chapter
tags:
- Chapters
x-spotify-docs-console-url: /console/get-chapter/?id=2i47HuOBSV2XaJNy0NCZXM
x-spotify-docs-endpoint-name: Get a Chapter
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Chapters
x-spotify-docs-display-name: chapters
/episodes:
get:
description: |
Get Spotify catalog information for several episodes based on their Spotify IDs.
operationId: get-multiple-episodes
parameters:
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for the episodes. Maximum: 50 IDs.
example: 77o6BIVlYM3msb4MMIL1jH,0Q86acNRm6V9GYx55SXKwf
title: Ids
type: string
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/ManyEpisodes"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-position
summary: |
Get Several Episodes
tags:
- Episodes
x-spotify-docs-console-url: /console/get-several-episodes/?ids=77o6BIVlYM3msb4MMIL1jH,0Q86acNRm6V9GYx55SXKwf
x-spotify-docs-endpoint-name: Get Multiple Episodes
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Episodes
x-spotify-docs-display-name: several-episodes
"/episodes/{id}":
get:
description: |
Get Spotify catalog information for a single episode identified by its
unique Spotify ID.
operationId: get-an-episode
parameters:
- in: path
name: id
required: true
schema:
description: The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the episode.
example: 512ojhOuo1ktJprKbVcKyQ
title: Get an Episode
type: string
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/OneEpisode"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-position
summary: |
Get Episode
tags:
- Episodes
x-spotify-docs-console-url: /console/get-episode/?id=512ojhOuo1ktJprKbVcKyQ
x-spotify-docs-endpoint-name: Get an Episode
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Episodes
x-spotify-docs-display-name: episode
/markets:
get:
description: |
Get the list of markets where Spotify is available.
operationId: get-available-markets
responses:
"200":
content:
application/json:
schema:
properties:
markets:
example:
- CA
- BR
- IT
items:
type: string
type: array
type: object
description: A markets object with an array of country codes
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Available Markets
tags:
- Markets
x-spotify-docs-console-url: /console/get-available-markets/
x-spotify-docs-endpoint-name: Get Available Markets
x-spotify-docs-category: Markets
x-spotify-docs-display-name: available-markets
/me:
get:
description: |
Get detailed profile information about the current user (including the
current user's username).
operationId: get-current-users-profile
responses:
"200":
$ref: "#/components/responses/OnePrivateUser"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-private
- user-read-email
summary: |
Get Current User's Profile
tags:
- Users
x-spotify-docs-console-url: /console/get-current-user/
x-spotify-docs-endpoint-name: Get Current User's Profile
x-spotify-docs-category: Users Profile
x-spotify-docs-display-name: current-user
/me/albums:
delete:
description: |
Remove one or more albums from the current user's 'Your Music' library.
operationId: remove-albums-user
parameters:
- $ref: "#/components/parameters/QueryAlbumIds"
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `["4iV5W9uYEdYUVa79Axb7Rh", "1301WleyT98MSxVHPZCA6M"]`<br/>A maximum of 50 items can be specified in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
type: object
responses:
"200":
description: Album(s) have been removed from the library
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Remove Users' Saved Albums
tags:
- Albums
- Library
x-spotify-docs-console-url: /console/delete-current-user-saved-albums/?ids=07bYtmE3bPsLB6ZbmmFi8d%2C48JYNjh7GMie6NjqYHMmtT%2C27cZdqrQiKt3IT00338dws
x-spotify-docs-endpoint-name: Remove Albums for Current User
get:
description: |
Get a list of the albums saved in the current Spotify user's 'Your Music' library.
operationId: get-users-saved-albums
parameters:
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/PagingSavedAlbumObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Get User's Saved Albums
tags:
- Albums
- Library
x-spotify-docs-console-url: /console/get-current-user-saved-albums/?limit=1
x-spotify-docs-endpoint-name: Get User's Saved Albums
put:
description: |
Save one or more albums to the current user's 'Your Music' library.
operationId: save-albums-user
parameters:
- $ref: "#/components/parameters/QueryAlbumIds"
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `["4iV5W9uYEdYUVa79Axb7Rh", "1301WleyT98MSxVHPZCA6M"]`<br/>A maximum of 50 items can be specified in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
type: object
responses:
"200":
description: The album is saved
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Save Albums for Current User
tags:
- Albums
- Library
x-spotify-docs-console-url: /console/put-current-user-saved-albums/?ids=07bYtmE3bPsLB6ZbmmFi8d%2C48JYNjh7GMie6NjqYHMmtT%2C27cZdqrQiKt3IT00338dws
x-spotify-docs-endpoint-name: Save Albums for Current User
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-saved-albums
/me/albums/contains:
get:
description: |
Check if one or more albums is already saved in the current Spotify user's 'Your Music' library.
operationId: check-users-saved-albums
parameters:
- $ref: "#/components/parameters/QueryAlbumIds"
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Check User's Saved Albums
tags:
- Albums
- Library
x-spotify-docs-console-url: /console/get-current-user-contains-saved-albums/?ids=0pJJgBzj26qnE1nSQUxaB0%2C5ZAKzV4ZIa5Gt7z29OYHv0
x-spotify-docs-endpoint-name: Check User's Saved Albums
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-contains-saved-albums
/me/audiobooks:
delete:
description: |
Remove one or more audiobooks from the Spotify user's library.
operationId: remove-audiobooks-user
parameters:
- $ref: "#/components/parameters/QueryAudiobookIds"
responses:
"200":
description: Audiobook(s) have been removed from the library
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Remove User's Saved Audiobooks
tags:
- Audiobooks
- Library
x-spotify-docs-console-url: /console/delete-current-user-saved-audiobooks/?ids=07bYtmE3bPsLB6ZbmmFi8d%2C48JYNjh7GMie6NjqYHMmtT%2C27cZdqrQiKt3IT00338dws
x-spotify-docs-endpoint-name: Remove Audiobooks for Current User
get:
description: |
Get a list of the audiobooks saved in the current Spotify user's 'Your Music' library.
operationId: get-users-saved-audiobooks
parameters:
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSimplifiedAudiobookObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Get User's Saved Audiobooks
tags:
- Audiobooks
- Library
x-spotify-docs-console-url: /console/get-current-user-saved-audiobooks/?limit=1
x-spotify-docs-endpoint-name: Get User's Saved Audiobooks
put:
description: |
Save one or more audiobooks to the current Spotify user's library.
operationId: save-audiobooks-user
parameters:
- $ref: "#/components/parameters/QueryAudiobookIds"
responses:
"200":
description: Audiobook(s) are saved to the library
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Save Audiobooks for Current User
tags:
- Audiobooks
- Library
x-spotify-docs-console-url: /console/put-current-user-saved-audiobooks/?ids=07bYtmE3bPsLB6ZbmmFi8d%2C48JYNjh7GMie6NjqYHMmtT%2C27cZdqrQiKt3IT00338dws
x-spotify-docs-endpoint-name: Save Audiobooks for Current User
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-saved-audiobooks
/me/audiobooks/contains:
get:
description: |
Check if one or more audiobooks are already saved in the current Spotify user's library.
operationId: check-users-saved-audiobooks
parameters:
- $ref: "#/components/parameters/QueryAudiobookIds"
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Check User's Saved Audiobooks
tags:
- Audiobooks
- Library
x-spotify-docs-console-url: /console/get-current-user-contains-saved-audiobooks/?ids=0pJJgBzj26qnE1nSQUxaB0%2C5ZAKzV4ZIa5Gt7z29OYHv0
x-spotify-docs-endpoint-name: Check User's Saved Audiobooks
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-contains-saved-audiobooks
/me/episodes:
delete:
description: |
Remove one or more episodes from the current user's library.<br/>
This API endpoint is in __beta__ and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer).
operationId: remove-episodes-user
parameters:
- $ref: "#/components/parameters/QueryTrackIds"
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). <br/>A maximum of 50 items can be specified in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
type: object
responses:
"200":
description: Episode removed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Remove User's Saved Episodes
tags:
- Episodes
- Library
x-spotify-docs-console-url: /console/delete-current-user-saved-episodes/?ids=77o6BIVlYM3msb4MMIL1jH%2C0Q86acNRm6V9GYx55SXKwf
x-spotify-docs-endpoint-name: Remove User's Saved Episodes
get:
description: |
Get a list of the episodes saved in the current Spotify user's library.<br/>
This API endpoint is in __beta__ and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer).
operationId: get-users-saved-episodes
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSavedEpisodeObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
- user-read-playback-position
summary: |
Get User's Saved Episodes
tags:
- Episodes
- Library
x-spotify-docs-console-url: /console/get-current-user-saved-episodes/
x-spotify-docs-endpoint-name: Get User's Saved Episodes
put:
description: |
Save one or more episodes to the current user's library.<br/>
This API endpoint is in __beta__ and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer).
operationId: save-episodes-user
parameters:
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). Maximum: 50 IDs.
example: 77o6BIVlYM3msb4MMIL1jH,0Q86acNRm6V9GYx55SXKwf
title: Spotify Episodes IDs
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). <br/>A maximum of 50 items can be specified in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
required:
- uris
type: object
responses:
"200":
description: Episode saved
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Save Episodes for Current User
tags:
- Episodes
- Library
x-spotify-docs-console-url: /console/put-current-user-saved-episodes/?ids=77o6BIVlYM3msb4MMIL1jH%2C0Q86acNRm6V9GYx55SXKwf
x-spotify-docs-endpoint-name: Save Episodes for Current User
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-saved-episodes
/me/episodes/contains:
get:
description: |
Check if one or more episodes is already saved in the current Spotify user's 'Your Episodes' library.<br/>
This API endpoint is in __beta__ and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer)..
operationId: check-users-saved-episodes
parameters:
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for the episodes. Maximum: 50 IDs.
example: 77o6BIVlYM3msb4MMIL1jH,0Q86acNRm6V9GYx55SXKwf
title: Spotify Episode IDs
type: string
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Check User's Saved Episodes
tags:
- Episodes
- Library
x-spotify-docs-console-url: /console/get-current-user-contains-saved-episodes/?ids=77o6BIVlYM3msb4MMIL1jH%2C0Q86acNRm6V9GYx55SXKwf
x-spotify-docs-endpoint-name: Check User's Saved Episodes
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-contains-saved-episodes
/me/following:
delete:
description: |
Remove the current user as a follower of one or more artists or other Spotify users.
operationId: unfollow-artists-users
parameters:
- in: query
name: type
required: true
schema:
description: |
The ID type: either `artist` or `user`.
enum:
- artist
- user
example: artist
title: Item Type
type: string
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the artist or the user [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `ids=74ASZWbe4lXaubB36ztrGX,08td7MxkoHQkXnWAYD8d6Q`. A maximum of 50 IDs can be sent in one request.
example: 2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6
title: Spotify IDs
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the artist or user [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `{ids:["74ASZWbe4lXaubB36ztrGX", "08td7MxkoHQkXnWAYD8d6Q"]}`. A maximum of 50 IDs can be sent in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
type: object
responses:
"200":
description: Artist or user unfollowed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-follow-modify
summary: |
Unfollow Artists or Users
tags:
- Users
- Artists
- Library
x-spotify-docs-console-url: /console/delete-following/?type=user&amp;ids=exampleuser01
x-spotify-docs-endpoint-name: Unfollow Artists or Users
get:
description: |
Get the current user's followed artists.
operationId: get-followed
parameters:
- in: query
name: type
required: true
schema:
description: |
The ID type: currently only `artist` is supported.
enum:
- artist
example: artist
title: Item Type
type: string
- in: query
name: after
required: false
schema:
description: |
The last artist ID retrieved from the previous request.
example: 0I2XqVXqHScXjHhk6AYYRe
title: After
type: string
- in: query
name: limit
required: false
schema:
default: 20
description: |
The maximum number of items to return. Default: 20\. Minimum: 1\. Maximum: 50\.
example: 10
maximum: 50
minimum: 0
title: Limit
type: integer
responses:
"200":
$ref: "#/components/responses/CursorPagedArtists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-follow-read
summary: |
Get Followed Artists
tags:
- Users
- Library
- Artists
x-spotify-docs-console-url: /console/get-following/?type=artist&amp;limit=20
x-spotify-docs-endpoint-name: Get User's Followed Artists
put:
description: |
Add the current user as a follower of one or more artists or other Spotify users.
operationId: follow-artists-users
parameters:
- in: query
name: type
required: true
schema:
description: |
The ID type.
enum:
- artist
- user
example: artist
title: Item Type
type: string
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the artist or the user [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids).
A maximum of 50 IDs can be sent in one request.
example: 2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6
title: Spotify IDs
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the artist or user [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids).
For example: `{ids:["74ASZWbe4lXaubB36ztrGX", "08td7MxkoHQkXnWAYD8d6Q"]}`. A maximum of 50 IDs can be sent in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
required:
- ids
type: object
responses:
"204":
description: Artist or user followed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-follow-modify
summary: |
Follow Artists or Users
tags:
- Users
- Artists
- Library
x-spotify-docs-console-url: /console/put-following/?type=user&amp;ids=exampleuser01
x-spotify-docs-endpoint-name: Follow Artists or Users
x-spotify-docs-category: Follow
x-spotify-docs-display-name: following
/me/following/contains:
get:
description: |
Check to see if the current user is following one or more artists or other Spotify users.
operationId: check-current-user-follows
parameters:
- in: query
name: type
required: true
schema:
description: |
The ID type: either `artist` or `user`.
enum:
- artist
- user
example: artist
title: Item Type
type: string
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the artist or the user [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) to check. For example: `ids=74ASZWbe4lXaubB36ztrGX,08td7MxkoHQkXnWAYD8d6Q`. A maximum of 50 IDs can be sent in one request.
example: 2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6
title: Spotify IDs
type: string
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-follow-read
summary: |
Check If User Follows Artists or Users
tags:
- Users
- Artists
- Library
x-spotify-docs-console-url: /console/get-following-contains/?type=user&amp;ids=exampleuser01
x-spotify-docs-endpoint-name: Get Following State for Artists/Users
x-spotify-docs-category: Follow
x-spotify-docs-display-name: following-contains
/me/player:
get:
description: |
Get information about the users current playback state, including track or episode, progress, and active device.
operationId: get-information-about-the-users-current-playback
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryAdditionalTypes"
responses:
"200":
$ref: "#/components/responses/OneCurrentlyPlaying"
"204":
description: Playback not available or active
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-state
summary: |
Get Playback State
tags:
- Player
x-spotify-docs-console-url: /console/get-user-player/
x-spotify-docs-endpoint-name: Get Information About The User's Current Playback
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
put:
description: |
Transfer playback to a new device and determine if it should start playing.
operationId: transfer-a-users-playback
requestBody:
content:
application/json:
schema:
additionalProperties: true
example:
device_ids:
- 74ASZWbe4lXaubB36ztrGX
properties:
device_ids:
description: |
A JSON array containing the ID of the device on which playback should be started/transferred.<br/>For example:`{device_ids:["74ASZWbe4lXaubB36ztrGX"]}`<br/>_**Note**: Although an array is accepted, only a single device_id is currently supported. Supplying more than one will return `400 Bad Request`_
items:
type: string
type: array
play:
additionalProperties: true
description: |
**true**: ensure playback happens on new device.<br/>**false** or not provided: keep the current playback state.
type: boolean
required:
- device_ids
type: object
responses:
"204":
description: Playback transferred
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Transfer Playback
tags:
- Player
x-spotify-docs-console-url: /console/put-user-player
x-spotify-docs-endpoint-name: Transfer a User's Playback
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: user-player
/me/player/currently-playing:
get:
description: |
Get the object currently being played on the user's Spotify account.
operationId: get-the-users-currently-playing-track
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryAdditionalTypes"
responses:
"200":
$ref: "#/components/responses/OneCurrentlyPlayingTrack"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-currently-playing
summary: |
Get Currently Playing Track
tags:
- Player
x-spotify-docs-console-url: /console/get-users-currently-playing-track/
x-spotify-docs-endpoint-name: Get the User's Currently Playing Track
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: users-currently-playing-track
/me/player/devices:
get:
description: |
Get information about a users available devices.
operationId: get-a-users-available-devices
responses:
"200":
$ref: "#/components/responses/ManyDevices"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-state
summary: |
Get Available Devices
tags:
- Player
x-spotify-docs-console-url: /console/get-users-available-devices/
x-spotify-docs-endpoint-name: Get a User's Available Devices
x-spotify-docs-category: Player
x-spotify-docs-display-name: users-available-devices
/me/player/next:
post:
description: |
Skips to next track in the users queue.
operationId: skip-users-playback-to-next-track
parameters:
- in: query
name: device_id
required: false
schema:
description: The id of the device this command is targeting. If not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command sent
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Skip To Next
tags:
- Player
x-spotify-docs-console-url: /console/post-next/
x-spotify-docs-endpoint-name: Skip Users Playback To Next Track
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: next
/me/player/pause:
put:
description: |
Pause playback on the user's account.
operationId: pause-a-users-playback
parameters:
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Playback paused
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Pause Playback
tags:
- Player
x-spotify-docs-console-url: /console/put-pause/
x-spotify-docs-endpoint-name: Pause a User's Playback
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: pause
/me/player/play:
put:
description: |
Start a new context or resume current playback on the user's active device.
operationId: start-a-users-playback
parameters:
- in: query
name: device_id
required: false
schema:
description: The id of the device this command is targeting. If not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: true
example:
context_uri: spotify:album:5ht7ItJgpBH7W6vJ5BqpPr
offset:
position: 5
position_ms: 0
properties:
context_uri:
additionalProperties: true
description: |
Optional. Spotify URI of the context to play.
Valid contexts are albums, artists & playlists.
`{context_uri:"spotify:album:1Je1IMUlBXcx1Fz0WE7oPT"}`
type: string
offset:
additionalProperties: true
description: |
Optional. Indicates from where in the context playback should start. Only available when context_uri corresponds to an album or playlist object
"position" is zero based and cant be negative. Example: `"offset": {"position": 5}`
"uri" is a string representing the uri of the item to start at. Example: `"offset": {"uri": "spotify:track:1301WleyT98MSxVHPZCA6M"}`
type: object
position_ms:
additionalProperties: true
description: integer
type: integer
uris:
description: |
Optional. A JSON array of the Spotify track URIs to play.
For example: `{"uris": ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh", "spotify:track:1301WleyT98MSxVHPZCA6M"]}`
items:
type: string
type: array
type: object
responses:
"204":
description: Playback started
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Start/Resume Playback
tags:
- Player
x-spotify-docs-console-url: /console/put-play/
x-spotify-docs-endpoint-name: Start/Resume a User's Playback
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: play
/me/player/previous:
post:
description: |
Skips to previous track in the users queue.
operationId: skip-users-playback-to-previous-track
parameters:
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If
not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command sent
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Skip To Previous
tags:
- Player
x-spotify-docs-console-url: /console/post-previous/
x-spotify-docs-endpoint-name: Skip Users Playback To Previous Track
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: previous
/me/player/queue:
get:
description: |
Get the list of objects that make up the user's queue.
operationId: get-queue
responses:
"200":
$ref: "#/components/responses/Queue"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-state
summary: |
Get the User's Queue
tags:
- Player
x-spotify-docs-console-url: /console/get-queue/
x-spotify-docs-endpoint-name: Get the User's Queue
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
post:
description: |
Add an item to the end of the user's current playback queue.
operationId: add-to-queue
parameters:
- in: query
name: uri
required: true
schema:
description: |
The uri of the item to add to the queue. Must be a track or an episode uri.
example: spotify:track:4iV5W9uYEdYUVa79Axb7Rh
title: Spotify URI
type: string
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If
not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command received
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Add Item to Playback Queue
tags:
- Player
x-spotify-docs-console-url: /console/post-queue/
x-spotify-docs-endpoint-name: Add an item to queue
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: queue
/me/player/recently-played:
get:
description: |
Get tracks from the current user's recently played tracks.
_**Note**: Currently doesn't support podcast episodes._
operationId: get-recently-played
parameters:
- in: query
name: limit
required: false
schema:
default: 20
description: |
The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.
example: 10
maximum: 50
minimum: 0
title: Limit
type: integer
- in: query
name: after
required: false
schema:
description: |
A Unix timestamp in milliseconds. Returns all items
after (but not including) this cursor position. If `after` is specified, `before`
must not be specified.
example: 1484811043508
title: After
type: integer
- in: query
name: before
required: false
schema:
description: |
A Unix timestamp in milliseconds. Returns all items
before (but not including) this cursor position. If `before` is specified,
`after` must not be specified.
title: Before
type: integer
responses:
"200":
$ref: "#/components/responses/CursorPagedPlayHistory"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-recently-played
summary: |
Get Recently Played Tracks
tags:
- Player
x-spotify-docs-console-url: /console/get-recently-played/
x-spotify-docs-endpoint-name: Get Current User's Recently Played Tracks
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: recently-played
/me/player/repeat:
put:
description: |
Set the repeat mode for the user's playback. Options are repeat-track,
repeat-context, and off.
operationId: set-repeat-mode-on-users-playback
parameters:
- in: query
name: state
required: true
schema:
description: |
**track**, **context** or **off**.<br/>
**track** will repeat the current track.<br/>
**context** will repeat the current context.<br/>
**off** will turn repeat off.
example: context
title: State
type: string
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If
not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command sent
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Set Repeat Mode
tags:
- Player
x-spotify-docs-console-url: /console/put-repeat/
x-spotify-docs-endpoint-name: Set Repeat Mode On Users Playback
x-spotify-docs-category: Player
x-spotify-docs-display-name: repeat
/me/player/seek:
put:
description: |
Seeks to the given position in the users currently playing track.
operationId: seek-to-position-in-currently-playing-track
parameters:
- in: query
name: position_ms
required: true
schema:
description: |
The position in milliseconds to seek to. Must be a
positive number. Passing in a position that is greater than the length of
the track will cause the player to start playing the next song.
example: 25000
title: Position (ms)
type: integer
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If
not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command sent
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Seek To Position
tags:
- Player
x-spotify-docs-console-url: /console/put-seek/
x-spotify-docs-endpoint-name: Seek To Position In Currently Playing Track
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/playerPolicyList"
x-spotify-docs-category: Player
x-spotify-docs-display-name: seek
/me/player/shuffle:
put:
description: |
Toggle shuffle on or off for users playback.
operationId: toggle-shuffle-for-users-playback
parameters:
- in: query
name: state
required: true
schema:
description: |
**true** : Shuffle user's playback.<br/>
**false** : Do not shuffle user's playback.
example: true
title: State
type: boolean
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If
not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command sent
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Toggle Playback Shuffle
tags:
- Player
x-spotify-docs-console-url: /console/put-shuffle/?state=true
x-spotify-docs-endpoint-name: Toggle Shuffle For Users Playback
x-spotify-docs-category: Player
x-spotify-docs-display-name: shuffle
/me/player/volume:
put:
description: |
Set the volume for the users current playback device.
operationId: set-volume-for-users-playback
parameters:
- in: query
name: volume_percent
required: true
schema:
description: |
The volume to set. Must be a value from 0 to 100 inclusive.
example: 50
title: Volume %
type: integer
- in: query
name: device_id
required: false
schema:
description: |
The id of the device this command is targeting. If not supplied, the user's currently active device is the target.
example: 0d1841b0976bae2a3a310dd74c0f3df354899bc8
title: Device ID
type: string
responses:
"204":
description: Command sent
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-modify-playback-state
summary: |
Set Playback Volume
tags:
- Player
x-spotify-docs-console-url: /console/put-volume/
x-spotify-docs-endpoint-name: Set Volume For User's Playback
x-spotify-docs-category: Player
x-spotify-docs-display-name: volume
/me/playlists:
get:
description: |
Get a list of the playlists owned or followed by the current Spotify
user.
operationId: get-a-list-of-current-users-playlists
parameters:
- $ref: "#/components/parameters/QueryLimit"
- in: query
name: offset
required: false
schema:
default: 0
description: |
'The index of the first playlist to return. Default:
0 (the first object). Maximum offset: 100.000\. Use with `limit` to get the
next set of playlists.'
example: 5
title: Offset
type: integer
responses:
"200":
$ref: "#/components/responses/PagedPlaylists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-read-private
summary: |
Get Current User's Playlists
tags:
- Playlists
- Library
x-spotify-docs-console-url: /console/get-current-user-playlists/
x-spotify-docs-endpoint-name: Get a List of Current User's Playlists
x-spotify-docs-category: Playlists
x-spotify-docs-display-name: current-user-playlists
/me/shows:
delete:
description: |
Delete one or more shows from current Spotify user's library.
operationId: remove-shows-user
parameters:
- $ref: "#/components/parameters/QueryShowIds"
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
description: Show removed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Remove User's Saved Shows
tags:
- Shows
- Library
x-spotify-docs-console-url: /console/delete-current-user-saved-shows/?ids=5AvwZVawapvyhJUIx71pdJ%2C6ups0LMt1G8n81XLlkbsPo%2C5AvwZVawapvyhJUIx71pdJ
x-spotify-docs-endpoint-name: Remove User's Saved Shows
get:
description: |
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.
operationId: get-users-saved-shows
parameters:
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSavedShowObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Get User's Saved Shows
tags:
- Shows
- Library
x-spotify-docs-console-url: /console/get-current-user-saved-shows/
x-spotify-docs-endpoint-name: Get User's Saved Shows
put:
description: |
Save one or more shows to current Spotify user's library.
operationId: save-shows-user
parameters:
- $ref: "#/components/parameters/QueryShowIds"
responses:
"200":
description: Show saved
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Save Shows for Current User
tags:
- Shows
- Library
x-spotify-docs-console-url: /console/put-current-user-saved-shows/?ids=5AvwZVawapvyhJUIx71pdJ%2C6ups0LMt1G8n81XLlkbsPo%2C5AvwZVawapvyhJUIx71pdJ
x-spotify-docs-endpoint-name: Save Shows for Current User
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-saved-shows
/me/shows/contains:
get:
description: |
Check if one or more shows is already saved in the current Spotify user's library.
operationId: check-users-saved-shows
parameters:
- $ref: "#/components/parameters/QueryShowIds"
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Check User's Saved Shows
tags:
- Shows
- Library
x-spotify-docs-console-url: /console/get-current-user-contains-saved-shows/?ids=5AvwZVawapvyhJUIx71pdJ%2C6ups0LMt1G8n81XLlkbsPo%2C5AvwZVawapvyhJUIx71pdJ
x-spotify-docs-endpoint-name: Check User's Saved Shows
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-contains-saved-shows
"/me/top/{type}":
get:
description: |
Get the current user's top artists or tracks based on calculated affinity.
operationId: get-users-top-artists-and-tracks
parameters:
- in: path
name: type
required: true
schema:
description: |
The type of entity to return. Valid values: `artists` or `tracks`
enum:
- artists
- tracks
title: Type
type: string
- in: query
name: time_range
required: false
schema:
default: medium_term
description: |
Over what time frame the affinities are computed. Valid values: `long_term` (calculated from several years of data and including all new data as it becomes available), `medium_term` (approximately last 6 months), `short_term` (approximately last 4 weeks). Default: `medium_term`
example: medium_term
title: Time Range
type: string
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingArtistOrTrackObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-top-read
summary: |
Get User's Top Items
tags:
- Users
- Tracks
- Library
x-spotify-docs-console-url: /console/get-current-user-top-artists-and-tracks/?type=artists
x-spotify-docs-endpoint-name: Get a User's Top Artists and Tracks
x-spotify-docs-category: Personalization
x-spotify-docs-display-name: current-user-top-artists-and-tracks
/me/tracks:
delete:
description: |
Remove one or more tracks from the current user's 'Your Music' library.
operationId: remove-tracks-user
parameters:
- $ref: "#/components/parameters/QueryTrackIds"
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `["4iV5W9uYEdYUVa79Axb7Rh", "1301WleyT98MSxVHPZCA6M"]`<br/>A maximum of 50 items can be specified in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
type: object
responses:
"200":
description: Track removed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Remove User's Saved Tracks
tags:
- Tracks
- Library
x-spotify-docs-console-url: /console/delete-current-user-saved-tracks/?ids=7ouMYWpwJ422jRcDASZB7P%2C4VqPOruhp5EdPBeR92t6lQ%2C2takcwOaAZWiXQijPHIx7B
x-spotify-docs-endpoint-name: Remove User's Saved Tracks
get:
description: |
Get a list of the songs saved in the current Spotify user's 'Your Music' library.
operationId: get-users-saved-tracks
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSavedTrackObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Get User's Saved Tracks
tags:
- Tracks
- Library
x-spotify-docs-console-url: /console/get-current-user-saved-tracks/
x-spotify-docs-endpoint-name: Get User's Saved Tracks
put:
description: |
Save one or more tracks to the current user's 'Your Music' library.
operationId: save-tracks-user
parameters:
- $ref: "#/components/parameters/QueryTrackIds"
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
ids:
description: |
A JSON array of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `["4iV5W9uYEdYUVa79Axb7Rh", "1301WleyT98MSxVHPZCA6M"]`<br/>A maximum of 50 items can be specified in one request. _**Note**: if the `ids` parameter is present in the query string, any IDs listed here in the body will be ignored._
items:
type: string
type: array
required:
- uris
type: object
responses:
"200":
description: Track saved
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-modify
summary: |
Save Tracks for Current User
tags:
- Tracks
- Library
x-spotify-docs-console-url: /console/put-current-user-saved-tracks/?ids=7ouMYWpwJ422jRcDASZB7P%2C4VqPOruhp5EdPBeR92t6lQ%2C2takcwOaAZWiXQijPHIx7B
x-spotify-docs-endpoint-name: Save Tracks for User
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-saved-tracks
/me/tracks/contains:
get:
description: |
Check if one or more tracks is already saved in the current Spotify user's 'Your Music' library.
operationId: check-users-saved-tracks
parameters:
- $ref: "#/components/parameters/QueryTrackIds"
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-library-read
summary: |
Check User's Saved Tracks
tags:
- Tracks
- Library
x-spotify-docs-console-url: /console/get-current-user-contains-saved-tracks/?ids=0udZHhCi7p1YzMlvI4fXoK%2C3SF5puV5eb6bgRSxBeMOk9
x-spotify-docs-endpoint-name: Check User's Saved Tracks
x-spotify-docs-category: Library
x-spotify-docs-display-name: current-user-contains-saved-tracks
"/playlists/{playlist_id}":
get:
description: |
Get a playlist owned by a Spotify user.
operationId: get-playlist
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
- $ref: "#/components/parameters/QueryMarket"
- in: query
name: fields
required: false
schema:
description: |
Filters for the query: a comma-separated list of the
fields to return. If omitted, all fields are returned. For example, to get
just the playlist''s description and URI: `fields=description,uri`. A dot
separator can be used to specify non-reoccurring fields, while parentheses
can be used to specify reoccurring fields within objects. For example, to
get just the added date and user ID of the adder: `fields=tracks.items(added_at,added_by.id)`.
Use multiple parentheses to drill down into nested objects, for example: `fields=tracks.items(track(name,href,album(name,href)))`.
Fields can be excluded by prefixing them with an exclamation mark, for example:
`fields=tracks.items(track(name,href,album(!name,href)))`
example: items(added_by.id,track(name,href,album(name,href)))
title: Fields
type: string
- $ref: "#/components/parameters/QueryAdditionalTypes"
responses:
"200":
$ref: "#/components/responses/OnePlaylist"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Playlist
tags:
- Playlists
x-spotify-docs-console-url: /console/get-playlist/?playlist_id=59ZbFPES4DQwEjBpWHzrtC&amp;user_id=spotify
x-spotify-docs-endpoint-name: Get a Playlist
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
put:
description: |
Change a playlist's name and public/private state. (The user must, of
course, own the playlist.)
operationId: change-playlist-details
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
requestBody:
content:
application/json:
schema:
additionalProperties: true
example:
description: Updated playlist description
name: Updated Playlist Name
public: false
properties:
collaborative:
description: |
If `true`, the playlist will become collaborative and other users will be able to modify the playlist in their Spotify client. <br/>
_**Note**: You can only set `collaborative` to `true` on non-public playlists._
type: boolean
description:
description: |
Value for playlist description as displayed in Spotify Clients and in the Web API.
type: string
name:
description: |
The new name for the playlist, for example `"My New Playlist Title"`
type: string
public:
description: |
If `true` the playlist will be public, if `false` it will be private.
type: boolean
type: object
responses:
"200":
description: Playlist updated
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Change Playlist Details
tags:
- Playlists
- Library
x-spotify-docs-console-url: /console/put-playlist/
x-spotify-docs-endpoint-name: Change a Playlist's Details
x-spotify-docs-category: Playlists
x-spotify-docs-display-name: playlist
"/playlists/{playlist_id}/followers":
delete:
description: |
Remove the current user as a follower of a playlist.
operationId: unfollow-playlist
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
responses:
"200":
description: Playlist unfollowed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Unfollow Playlist
tags:
- Users
- Playlists
x-spotify-docs-console-url: /console/delete-playlist-followers/?playlist_id=2v3iNvBX8Ay1Gt2uXtUKUT&amp;user_id=jmperezperez
x-spotify-docs-endpoint-name: Unfollow Playlist
put:
description: |
Add the current user as a follower of a playlist.
operationId: follow-playlist
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
requestBody:
content:
application/json:
schema:
additionalProperties: true
example:
public: false
properties:
public:
description: |
Defaults to `true`. If `true` the playlist will be included in user's public playlists, if `false` it will remain private.
type: boolean
type: object
responses:
"200":
description: Playlist followed
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Follow Playlist
tags:
- Users
- Playlists
x-spotify-docs-console-url: /console/put-playlist-followers/?playlist_id=2v3iNvBX8Ay1Gt2uXtUKUT&amp;body-json=%7B%0D%0A++%22public%22%3A+true%0D%0A%7D&amp;user_id=jmperezperez
x-spotify-docs-endpoint-name: Follow a Playlist
x-spotify-docs-category: Follow
x-spotify-docs-display-name: playlist-followers
"/playlists/{playlist_id}/followers/contains":
get:
description: |
Check to see if one or more Spotify users are following a specified playlist.
operationId: check-if-user-follows-playlist
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
- in: query
name: ids
required: true
schema:
description: |
A comma-separated list of [Spotify User IDs](/documentation/web-api/concepts/spotify-uris-ids) ; the ids of the users that you want to check to see if they follow the playlist. Maximum: 5 ids.
example: jmperezperez,thelinmichael,wizzler
title: Spotify user IDs
type: string
responses:
"200":
$ref: "#/components/responses/ArrayOfBooleans"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Check if Users Follow Playlist
tags:
- Users
- Playlists
x-spotify-docs-console-url: /console/get-playlist-followers-contains/?ids=possan,elogain&amp;user_id=jmperezperez&amp;playlist_id=2v3iNvBX8Ay1Gt2uXtUKUT
x-spotify-docs-endpoint-name: Check if Users Follow a Playlist
x-spotify-docs-category: Follow
x-spotify-docs-display-name: playlist-followers-contains
"/playlists/{playlist_id}/images":
get:
description: |
Get the current image associated with a specific playlist.
operationId: get-playlist-cover
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
responses:
"200":
$ref: "#/components/responses/ArrayOfImages"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Playlist Cover Image
tags:
- Playlists
x-spotify-docs-console-url: /console/get-playlist-images?playlist_id=3cEYpjA9oz9GiPac4AsH4n
x-spotify-docs-endpoint-name: Get a Playlist Cover Image
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
put:
description: |
Replace the image used to represent a specific playlist.
operationId: upload-custom-playlist-cover
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
requestBody:
content:
image/jpeg:
schema:
description: Base64 encoded JPEG image data, maximum payload size is 256 KB.
example: /9j/2wCEABoZGSccJz4lJT5CLy8vQkc9Ozs9R0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0cBHCcnMyYzPSYmPUc9Mj1HR0dEREdHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR//dAAQAAf/uAA5BZG9iZQBkwAAAAAH/wAARCAABAAEDACIAAREBAhEB/8QASwABAQAAAAAAAAAAAAAAAAAAAAYBAQAAAAAAAAAAAAAAAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAARAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwAAARECEQA/AJgAH//Z
format: byte
type: string
responses:
"202":
description: Image uploaded
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- ugc-image-upload
- playlist-modify-public
- playlist-modify-private
summary: |
Add Custom Playlist Cover Image
tags:
- Playlists
x-spotify-docs-console-url: /console/put-playlist-images?playlist_id=3cEYpjA9oz9GiPac4AsH4n
x-spotify-docs-endpoint-name: Upload a Custom Playlist Cover Image
x-spotify-docs-category: Playlists
x-spotify-docs-display-name: playlist-images
"/playlists/{playlist_id}/tracks":
delete:
description: |
Remove one or more items from a user's playlist.
operationId: remove-tracks-playlist
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
requestBody:
content:
application/json:
schema:
properties:
snapshot_id:
description: |
The playlist's snapshot ID against which you want to make the changes.
The API will validate that the specified items exist and in the specified positions and make the changes,
even if more recent changes have been made to the playlist.
type: string
tracks:
description: |
An array of objects containing [Spotify URIs](/documentation/web-api/concepts/spotify-uris-ids) of the tracks or episodes to remove.
For example: `{ "tracks": [{ "uri": "spotify:track:4iV5W9uYEdYUVa79Axb7Rh" },{ "uri": "spotify:track:1301WleyT98MSxVHPZCA6M" }] }`. A maximum of 100 objects can be sent at once.
items:
properties:
uri:
description: Spotify URI
type: string
type: object
type: array
required:
- tracks
type: object
responses:
"200":
$ref: "#/components/responses/PlaylistSnapshotId"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Remove Playlist Items
tags:
- Playlists
- Tracks
x-spotify-docs-console-url: /console/delete-playlist-tracks/
x-spotify-docs-endpoint-name: Remove Items from a Playlist
get:
description: |
Get full details of the items of a playlist owned by a Spotify user.
operationId: get-playlists-tracks
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
- $ref: "#/components/parameters/QueryMarket"
- in: query
name: fields
required: false
schema:
description: |
Filters for the query: a comma-separated list of the
fields to return. If omitted, all fields are returned. For example, to get
just the total number of items and the request limit:<br/>`fields=total,limit`<br/>A
dot separator can be used to specify non-reoccurring fields, while parentheses
can be used to specify reoccurring fields within objects. For example, to
get just the added date and user ID of the adder:<br/>`fields=items(added_at,added_by.id)`<br/>Use
multiple parentheses to drill down into nested objects, for example:<br/>`fields=items(track(name,href,album(name,href)))`<br/>Fields
can be excluded by prefixing them with an exclamation mark, for example:<br/>`fields=items.track.album(!external_urls,images)`
example: items(added_by.id,track(name,href,album(name,href)))
title: Fields
type: string
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
- $ref: "#/components/parameters/QueryAdditionalTypes"
responses:
"200":
$ref: "#/components/responses/PagingPlaylistTrackObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-read-private
summary: |
Get Playlist Items
tags:
- Playlists
- Tracks
x-spotify-docs-console-url: /console/get-playlist-tracks/?playlist_id=21THa8j9TaSGuXYNBU5tsC&amp;user_id=spotify_espa%C3%B1a
x-spotify-docs-endpoint-name: Get a Playlist's Items
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
post:
description: |
Add one or more items to a user's playlist.
operationId: add-tracks-to-playlist
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
- in: query
name: position
required: false
schema:
description: |
The position to insert the items, a zero-based index. For example, to insert the items in the first position: `position=0`; to insert the items in the third position: `position=2`. If omitted, the items will be appended to the playlist. Items are added in the order they are listed in the query string or request body.
example: 0
title: Position (append by default)
type: integer
- in: query
name: uris
required: false
schema:
description: |
A comma-separated list of [Spotify URIs](/documentation/web-api/concepts/spotify-uris-ids) to add, can be track or episode URIs. For example:<br/>`uris=spotify:track:4iV5W9uYEdYUVa79Axb7Rh, spotify:track:1301WleyT98MSxVHPZCA6M, spotify:episode:512ojhOuo1ktJprKbVcKyQ`<br/>A maximum of 100 items can be added in one request. <br/>
_**Note**: it is likely that passing a large number of item URIs as a query parameter will exceed the maximum length of the request URI. When adding a large number of items, it is recommended to pass them in the request body, see below._
example: spotify:track:4iV5W9uYEdYUVa79Axb7Rh,spotify:track:1301WleyT98MSxVHPZCA6M
title: Spotify Track URIs
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: true
properties:
position:
description: |
The position to insert the items, a zero-based index. For example, to insert the items in the first position: `position=0` ; to insert the items in the third position: `position=2`. If omitted, the items will be appended to the playlist. Items are added in the order they appear in the uris array. For example: `{"uris": ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh","spotify:track:1301WleyT98MSxVHPZCA6M"], "position": 3}`
type: integer
uris:
description: |
A JSON array of the [Spotify URIs](/documentation/web-api/concepts/spotify-uris-ids) to add. For example: `{"uris": ["spotify:track:4iV5W9uYEdYUVa79Axb7Rh","spotify:track:1301WleyT98MSxVHPZCA6M", "spotify:episode:512ojhOuo1ktJprKbVcKyQ"]}`<br/>A maximum of 100 items can be added in one request. _**Note**: if the `uris` parameter is present in the query string, any URIs listed here in the body will be ignored._
items:
type: string
type: array
type: object
responses:
"201":
$ref: "#/components/responses/PlaylistSnapshotId"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Add Items to Playlist
tags:
- Playlists
- Tracks
x-spotify-docs-console-url: /console/post-playlist-tracks/
x-spotify-docs-endpoint-name: Add Items to a Playlist
put:
description: |
Either reorder or replace items in a playlist depending on the request's parameters.
To reorder items, include `range_start`, `insert_before`, `range_length` and `snapshot_id` in the request's body.
To replace items, include `uris` as either a query parameter or in the request's body.
Replacing items in a playlist will overwrite its existing items. This operation can be used for replacing or clearing items in a playlist.
<br/>
**Note**: Replace and reorder are mutually exclusive operations which share the same endpoint, but have different parameters.
These operations can't be applied together in a single request.
operationId: reorder-or-replace-playlists-tracks
parameters:
- $ref: "#/components/parameters/PathPlaylistId"
- in: query
name: uris
required: false
schema:
description: |
A comma-separated list of [Spotify URIs](/documentation/web-api/concepts/spotify-uris-ids) to set, can be track or episode URIs. For example: `uris=spotify:track:4iV5W9uYEdYUVa79Axb7Rh,spotify:track:1301WleyT98MSxVHPZCA6M,spotify:episode:512ojhOuo1ktJprKbVcKyQ`<br/>A maximum of 100 items can be set in one request.
title: Spotify Track URIs
type: string
requestBody:
content:
application/json:
schema:
additionalProperties: true
example:
insert_before: 3
range_length: 2
range_start: 1
properties:
insert_before:
description: |
The position where the items should be inserted.<br/>To reorder the items to the end of the playlist, simply set _insert_before_ to the position after the last item.<br/>Examples:<br/>To reorder the first item to the last position in a playlist with 10 items, set _range_start_ to 0, and _insert_before_ to 10.<br/>To reorder the last item in a playlist with 10 items to the start of the playlist, set _range_start_ to 9, and _insert_before_ to 0.
type: integer
range_length:
description: |
The amount of items to be reordered. Defaults to 1 if not set.<br/>The range of items to be reordered begins from the _range_start_ position, and includes the _range_length_ subsequent items.<br/>Example:<br/>To move the items at index 9-10 to the start of the playlist, _range_start_ is set to 9, and _range_length_ is set to 2.
type: integer
range_start:
description: |
The position of the first item to be reordered.
type: integer
snapshot_id:
description: |
The playlist's snapshot ID against which you want to make the changes.
type: string
uris:
items:
type: string
type: array
type: object
responses:
"200":
$ref: "#/components/responses/PlaylistSnapshotId"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Update Playlist Items
tags:
- Playlists
- Tracks
x-spotify-docs-console-url: /console/put-playlist-tracks/
x-spotify-docs-endpoint-name: Reorder or Replace a Playlist's Items
x-spotify-docs-category: Playlists
x-spotify-docs-display-name: playlist-tracks
/recommendations:
get:
description: |
Recommendations are generated based on the available information for a given seed entity and matched against similar artists and tracks. If there is sufficient information about the provided seeds, a list of tracks will be returned together with pool size details.
For artists and tracks that are very new or obscure there might not be enough data to generate a list of tracks.
operationId: get-recommendations
parameters:
- in: query
name: limit
required: false
schema:
default: 20
description: |
The target size of the list of recommended tracks. For seeds with unusually small pools or when highly restrictive filtering is applied, it may be impossible to generate the requested number of recommended tracks. Debugging information for such cases is available in the response. Default: 20\. Minimum: 1\. Maximum: 100.
example: 10
maximum: 100
minimum: 1
title: Limit
type: integer
- $ref: "#/components/parameters/QueryMarket"
- in: query
name: seed_artists
required: true
schema:
description: |
A comma separated list of [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for seed artists. Up to 5 seed values may be provided in any combination of `seed_artists`, `seed_tracks` and `seed_genres`.
example: 4NHQUGzhtTLFvgF5SZesLK
title: Spotify Artist ID Seeds
type: string
- in: query
name: seed_genres
required: true
schema:
description: |
A comma separated list of any genres in the set of [available genre seeds](#available-genre-seeds). Up to 5 seed values may be provided in any combination of `seed_artists`, `seed_tracks` and `seed_genres`.
example: classical,country
title: Genres Seeds
type: string
- in: query
name: seed_tracks
required: true
schema:
description: |
A comma separated list of [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for a seed track. Up to 5 seed values may be provided in any combination of `seed_artists`, `seed_tracks` and `seed_genres`.
example: 0c6xIDDpzE81m2q797ordA
title: Spotify Track ID Seeds
type: string
- in: query
name: min_acousticness
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Acousticness
type: number
- in: query
name: max_acousticness
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Acousticness
type: number
- in: query
name: target_acousticness
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Acousticness
type: number
- in: query
name: min_danceability
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Danceability
type: number
- in: query
name: max_danceability
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Danceability
type: number
- in: query
name: target_danceability
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Danceability
type: number
- in: query
name: min_duration_ms
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
title: Min. Duration (ms)
type: integer
- in: query
name: max_duration_ms
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
title: Max. Duration (ms)
type: integer
- in: query
name: target_duration_ms
required: false
schema:
description: Target duration of the track (ms)
title: Target Duration (ms)
type: integer
- in: query
name: min_energy
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Energy
type: number
- in: query
name: max_energy
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Energy
type: number
- in: query
name: target_energy
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Energy
type: number
- in: query
name: min_instrumentalness
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Instrumentalness
type: number
- in: query
name: max_instrumentalness
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Instrumentalness
type: number
- in: query
name: target_instrumentalness
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Instrumentalness
type: number
- in: query
name: min_key
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 11
minimum: 0
title: Min. Key
type: integer
- in: query
name: max_key
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 11
minimum: 0
title: Max. Key
type: integer
- in: query
name: target_key
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 11
minimum: 0
title: Target Key
type: integer
- in: query
name: min_liveness
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Liveness
type: number
- in: query
name: max_liveness
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Liveness
type: number
- in: query
name: target_liveness
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Liveness
type: number
- in: query
name: min_loudness
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
title: Min. Loudness
type: number
- in: query
name: max_loudness
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
title: Max. Loudness
type: number
- in: query
name: target_loudness
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
title: Target Loudness
type: number
- in: query
name: min_mode
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Mode
type: integer
- in: query
name: max_mode
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Mode
type: integer
- in: query
name: target_mode
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Mode
type: integer
- in: query
name: min_popularity
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 100
minimum: 0
title: Min. Popularity
type: integer
- in: query
name: max_popularity
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 100
minimum: 0
title: Max. Popularity
type: integer
- in: query
name: target_popularity
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 100
minimum: 0
title: Target Popularity
type: integer
- in: query
name: min_speechiness
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Speechiness
type: number
- in: query
name: max_speechiness
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Speechiness
type: number
- in: query
name: target_speechiness
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Speechiness
type: number
- in: query
name: min_tempo
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
title: Min. Tempo
type: number
- in: query
name: max_tempo
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
title: Max. Tempo
type: number
- in: query
name: target_tempo
required: false
schema:
description: Target tempo (BPM)
title: Target Tempo
type: number
- in: query
name: min_time_signature
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 11
title: Min. Time Signature
type: integer
- in: query
name: max_time_signature
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
title: Max. Time Signature
type: integer
- in: query
name: target_time_signature
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
title: Target Time Signature
type: integer
- in: query
name: min_valence
required: false
schema:
description: |
For each tunable track attribute, a hard floor on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `min_tempo=140` would restrict results to only those tracks with a tempo of greater than 140 beats per minute.
maximum: 1
minimum: 0
title: Min. Valence
type: number
- in: query
name: max_valence
required: false
schema:
description: |
For each tunable track attribute, a hard ceiling on the selected track attributes value can be provided. See tunable track attributes below for the list of available options. For example, `max_instrumentalness=0.35` would filter out most tracks that are likely to be instrumental.
maximum: 1
minimum: 0
title: Max. Valence
type: number
- in: query
name: target_valence
required: false
schema:
description: |
For each of the tunable track attributes (below) a target value may be provided. Tracks with the attribute values nearest to the target values will be preferred. For example, you might request `target_energy=0.6` and `target_danceability=0.8`. All target values will be weighed equally in ranking results.
maximum: 1
minimum: 0
title: Target Valence
type: number
responses:
"200":
$ref: "#/components/responses/OneRecommendations"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Recommendations
tags:
- Tracks
x-spotify-docs-console-url: /console/get-recommendations/?seed_artists=4NHQUGzhtTLFvgF5SZesLK&amp;seed_tracks=0c6xIDDpzE81m2q797ordA&amp;min_energy=0.4&amp;min_popularity=50&amp;market=US
x-spotify-docs-endpoint-name: Get Recommendations
x-spotify-docs-category: Browse
x-spotify-docs-display-name: recommendations
/recommendations/available-genre-seeds:
get:
description: |
Retrieve a list of available genres seed parameter values for [recommendations](/documentation/web-api/reference/get-recommendations).
operationId: get-recommendation-genres
responses:
"200":
$ref: "#/components/responses/ManyGenres"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Available Genre Seeds
tags:
- Genres
x-spotify-docs-console-url: /console/get-available-genre-seeds/
x-spotify-docs-endpoint-name: Get Recommendation Genres
x-spotify-docs-category: Browse
x-spotify-docs-display-name: available-genre-seeds
/search:
get:
description: |
Get Spotify catalog information about albums, artists, playlists, tracks, shows, episodes or audiobooks
that match a keyword string.<br />
**Note: Audiobooks are only available for the US, UK, Ireland, New Zealand and Australia markets.**
operationId: search
parameters:
- in: query
name: q
required: true
schema:
description: |
Your search query.
You can narrow down your search using field filters. The available filters are `album`, `artist`, `track`, `year`, `upc`, `tag:hipster`, `tag:new`, `isrc`, and `genre`. Each field filter only applies to certain result types.
The `artist` and `year` filters can be used while searching albums, artists and tracks. You can filter on a single `year` or a range (e.g. 1955-1960).<br />
The `album` filter can be used while searching albums and tracks.<br />
The `genre` filter can be used while searching artists and tracks.<br />
The `isrc` and `track` filters can be used while searching tracks.<br />
The `upc`, `tag:new` and `tag:hipster` filters can only be used while searching albums. The `tag:new` filter will return albums released in the past two weeks and `tag:hipster` can be used to return only albums with the lowest 10% popularity.<br />
example: remaster%20track:Doxy%20artist:Miles%20Davis
title: Query
type: string
- explode: false
in: query
name: type
required: true
schema:
description: |
A comma-separated list of item types to search across. Search results include hits
from all the specified item types. For example: `q=abacab&type=album,track` returns
both albums and tracks matching "abacab".
items:
enum:
- album
- artist
- playlist
- track
- show
- episode
- audiobook
type: string
title: Item type
type: array
- $ref: "#/components/parameters/QueryMarket"
- in: query
name: limit
required: false
schema:
default: 20
description: |
The maximum number of results to return in each item type.
example: 10
maximum: 50
minimum: 0
title: Limit
type: integer
- in: query
name: offset
required: false
schema:
default: 0
description: |
The index of the first result to return. Use
with limit to get the next page of search results.
example: 5
maximum: 1000
minimum: 0
title: Offset
type: integer
- in: query
name: include_external
required: false
schema:
description: |
If `include_external=audio` is specified it signals that the client can play externally hosted audio content, and marks
the content as playable in the response. By default externally hosted audio content is marked as unplayable in the response.
enum:
- audio
title: Include External
type: string
responses:
"200":
$ref: "#/components/responses/SearchItems"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Search for Item
tags:
- Search
x-spotify-docs-console-url: /console/get-search-item/?q=tania+bowra&amp;type=artist
x-spotify-docs-endpoint-name: Search for an Item
x-spotify-docs-category: Search
x-spotify-docs-display-name: search-item
/shows:
get:
description: |
Get Spotify catalog information for several shows based on their Spotify IDs.
operationId: get-multiple-shows
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryShowIds"
responses:
"200":
$ref: "#/components/responses/ManySimplifiedShows"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Shows
tags:
- Shows
x-spotify-docs-console-url: /console/get-several-shows/?ids=5CfCWKI5pZ28U0uOzXkDHe,5as3aKmN2k11yfDDDSrvaZ
x-spotify-docs-endpoint-name: Get Multiple Shows
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Shows
x-spotify-docs-display-name: several-shows
"/shows/{id}":
get:
description: |
Get Spotify catalog information for a single show identified by its
unique Spotify ID.
operationId: get-a-show
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/PathShowId"
responses:
"200":
$ref: "#/components/responses/OneShow"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-position
summary: |
Get Show
tags:
- Shows
x-spotify-docs-console-url: /console/get-show/?id=38bS44xjbVVZ3No3ByF1dJ
x-spotify-docs-endpoint-name: Get a Show
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Shows
x-spotify-docs-display-name: show
"/shows/{id}/episodes":
get:
description: |
Get Spotify catalog information about an shows episodes. Optional parameters can be used to limit the number of episodes returned.
operationId: get-a-shows-episodes
parameters:
- $ref: "#/components/parameters/PathShowId"
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryLimit"
- $ref: "#/components/parameters/QueryOffset"
responses:
"200":
$ref: "#/components/responses/PagingSimplifiedEpisodeObject"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- user-read-playback-position
summary: |
Get Show Episodes
tags:
- Shows
- Episodes
x-spotify-docs-console-url: /console/get-show-episodes/
x-spotify-docs-endpoint-name: Get a Show's Episodes
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Shows
x-spotify-docs-display-name: show-episodes
/tracks:
get:
description: |
Get Spotify catalog information for multiple tracks based on their Spotify IDs.
operationId: get-several-tracks
parameters:
- $ref: "#/components/parameters/QueryMarket"
- $ref: "#/components/parameters/QueryTrackIds"
responses:
"200":
$ref: "#/components/responses/ManyTracks"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Several Tracks
tags:
- Tracks
x-spotify-docs-console-url: /console/get-several-tracks/?ids=3n3Ppam7vgaVa1iaRUc9Lp,3twNvmDtFQtAd5gMKedhLD
x-spotify-docs-endpoint-name: Get Several Tracks
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Tracks
x-spotify-docs-display-name: several-tracks
"/tracks/{id}":
get:
description: |
Get Spotify catalog information for a single track identified by its
unique Spotify ID.
operationId: get-track
parameters:
- in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids)
for the track.
example: 11dFghVXANMlKmJXsNCbNl
title: Spotify Track ID
type: string
- $ref: "#/components/parameters/QueryMarket"
responses:
"200":
$ref: "#/components/responses/OneTrack"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get Track
tags:
- Tracks
x-spotify-docs-console-url: /console/get-track/?id=3n3Ppam7vgaVa1iaRUc9Lp
x-spotify-docs-endpoint-name: Get a Track
x-spotify-policy-list:
$ref: "#/components/x-spotify-policy/metadataPolicyList"
x-spotify-docs-category: Tracks
x-spotify-docs-display-name: track
"/users/{user_id}":
get:
description: |
Get public profile information about a Spotify user.
operationId: get-users-profile
parameters:
- $ref: "#/components/parameters/PathUserId"
responses:
"200":
$ref: "#/components/responses/OnePublicUser"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0: []
summary: |
Get User's Profile
tags:
- Users
x-spotify-docs-console-url: /console/get-users-profile/?user_id=wizzler
x-spotify-docs-endpoint-name: Get a User's Profile
x-spotify-docs-category: Users Profile
x-spotify-docs-display-name: users-profile
"/users/{user_id}/playlists":
get:
description: |
Get a list of the playlists owned or followed by a Spotify user.
operationId: get-list-users-playlists
parameters:
- $ref: "#/components/parameters/PathUserId"
- $ref: "#/components/parameters/QueryLimit"
- in: query
name: offset
required: false
schema:
default: 0
description: |
The index of the first playlist to return. Default:
0 (the first object). Maximum offset: 100.000\. Use with `limit` to get the
next set of playlists.
example: 5
title: Offset
type: integer
responses:
"200":
$ref: "#/components/responses/PagedPlaylists"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-read-private
- playlist-read-collaborative
summary: |
Get User's Playlists
tags:
- Playlists
- Users
x-spotify-docs-console-url: /console/get-playlists/?user_id=wizzler
x-spotify-docs-endpoint-name: Get a List of a User's Playlists
post:
description: |
Create a playlist for a Spotify user. (The playlist will be empty until
you [add tracks](/documentation/web-api/reference/add-tracks-to-playlist).)
operationId: create-playlist
parameters:
- $ref: "#/components/parameters/PathUserId"
requestBody:
content:
application/json:
schema:
additionalProperties: true
example:
description: New playlist description
name: New Playlist
public: false
properties:
collaborative:
description: |
Defaults to `false`. If `true` the playlist will be collaborative. _**Note**: to create a collaborative playlist you must also set `public` to `false`. To create collaborative playlists you must have granted `playlist-modify-private` and `playlist-modify-public` [scopes](/documentation/web-api/concepts/scopes/#list-of-scopes)._
type: boolean
description:
description: |
value for playlist description as displayed in Spotify Clients and in the Web API.
type: string
name:
description: |
The name for the new playlist, for example `"Your Coolest Playlist"`. This name does not need to be unique; a user may have several playlists with the same name.
type: string
public:
description: |
Defaults to `true`. If `true` the playlist will be public, if `false` it will be private. To be able to create private playlists, the user must have granted the `playlist-modify-private` [scope](/documentation/web-api/concepts/scopes/#list-of-scopes)
type: boolean
required:
- name
type: object
responses:
"201":
$ref: "#/components/responses/OnePlaylist"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/TooManyRequests"
security:
- oauth_2_0:
- playlist-modify-public
- playlist-modify-private
summary: |
Create Playlist
tags:
- Playlists
- Library
x-spotify-docs-console-url: /console/post-playlists/
x-spotify-docs-endpoint-name: Create a Playlist
x-spotify-docs-category: Playlists
x-spotify-docs-display-name: playlists
components:
parameters:
PathAlbumId:
in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) of the album.
example: 4aawyAB9vmqN3uQ7FjRGTy
title: Spotify Album ID
type: string
PathArtistId:
in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) of the artist.
example: 0TnOYISbd1XYRBk9myaseg
title: Spotify Artist ID
type: string
PathAudiobookId:
in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids)
for the audiobook.
example: 7iHfbu1YPACw6oZPAFJtqe
title: Spotify Audiobook ID
type: string
PathChapterId:
in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids)
for the chapter.
example: 0D5wENdkdwbqlrHoaJ9g29
title: Spotify Chapter ID
type: string
PathPlaylistId:
in: path
name: playlist_id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) of the playlist.
example: 3cEYpjA9oz9GiPac4AsH4n
title: Playlist ID
type: string
PathShowId:
in: path
name: id
required: true
schema:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids)
for the show.
example: 38bS44xjbVVZ3No3ByF1dJ
title: Spotify Show ID
type: string
PathUserId:
in: path
name: user_id
required: true
schema:
description: |
The user's [Spotify user ID](/documentation/web-api/concepts/spotify-uris-ids).
example: smedjan
title: User ID
type: string
QueryAdditionalTypes:
in: query
name: additional_types
required: false
schema:
description: |
A comma-separated list of item types that your client supports besides the default `track` type. Valid types are: `track` and `episode`.<br/>
_**Note**: This parameter was introduced to allow existing clients to maintain their current behaviour and might be deprecated in the future._<br/>
In addition to providing this parameter, make sure that your client properly handles cases of new types in the future by checking against the `type` field of each object.
title: Additional Types
type: string
QueryAlbumIds:
in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for the albums. Maximum: 20 IDs.
example: 382ObEPsp2rxGrnsizN5TX,1A2GTWGtFfWp7KSQTwWOyo,2noRn2Aes5aoNVsU6iWThc
title: Spotify Album IDs
type: string
QueryAudiobookIds:
in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `ids=18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ`. Maximum: 50 IDs.
example: 18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ,7iHfbu1YPACw6oZPAFJtqe
title: Spotify Audiobook IDs
type: string
QueryChapterIds:
in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `ids=0IsXVP0JmcB2adSE338GkK,3ZXb8FKZGU0EHALYX6uCzU`. Maximum: 50 IDs.
example: 0IsXVP0JmcB2adSE338GkK,3ZXb8FKZGU0EHALYX6uCzU,0D5wENdkdwbqlrHoaJ9g29
title: Spotify Chapter IDs
type: string
QueryIncludeGroups:
in: query
name: include_groups
required: false
schema:
description: |
A comma-separated list of keywords that will be used to filter the response. If not supplied, all album types will be returned. <br/>
Valid values are:<br/>- `album`<br/>- `single`<br/>- `appears_on`<br/>- `compilation`<br/>For example: `include_groups=album,single`.
example: single,appears_on
title: Groups to include (single, album, appears_on, compilation)
type: string
QueryLimit:
in: query
name: limit
required: false
schema:
default: 20
description: |
The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.
example: 10
maximum: 50
minimum: 0
title: Limit
type: integer
QueryMarket:
in: query
name: market
required: false
schema:
description: |
An [ISO 3166-1 alpha-2 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
If a country code is specified, only content that is available in that market will be returned.<br/>
If a valid user access token is specified in the request header, the country associated with
the user account will take priority over this parameter.<br/>
_**Note**: If neither market or user country are provided, the content is considered unavailable for the client._<br/>
Users can view the country that is associated with their account in the [account settings](https://www.spotify.com/se/account/overview/).
example: ES
title: Market
type: string
QueryOffset:
in: query
name: offset
required: false
schema:
default: 0
description: |
The index of the first item to return. Default: 0 (the first item). Use with limit to get the next set of items.
example: 5
title: Offset
type: integer
QueryShowIds:
in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids) for the shows. Maximum: 50 IDs.
example: 5CfCWKI5pZ28U0uOzXkDHe,5as3aKmN2k11yfDDDSrvaZ
title: Ids
type: string
QueryTrackIds:
in: query
name: ids
required: true
schema:
description: |
A comma-separated list of the [Spotify IDs](/documentation/web-api/concepts/spotify-uris-ids). For example: `ids=4iV5W9uYEdYUVa79Axb7Rh,1301WleyT98MSxVHPZCA6M`. Maximum: 50 IDs.
example: 7ouMYWpwJ422jRcDASZB7P,4VqPOruhp5EdPBeR92t6lQ,2takcwOaAZWiXQijPHIx7B
title: Spotify Track IDs
type: string
responses:
ArrayOfBooleans:
content:
application/json:
schema:
example:
- false
- true
items:
type: boolean
type: array
description: Array of booleans
ArrayOfImages:
content:
application/json:
schema:
items:
$ref: "#/components/schemas/ImageObject"
type: array
description: A set of images
BadRequest:
content:
application/json:
schema:
properties:
error:
$ref: "#/components/schemas/ErrorObject"
required:
- error
type: object
description: |
The request contains malformed data in path, query parameters, or body.
CursorPagedArtists:
content:
application/json:
schema:
properties:
artists:
$ref: "#/components/schemas/CursorPagingSimplifiedArtistObject"
required:
- artists
type: object
description: A paged set of artists
CursorPagedPlayHistory:
content:
application/json:
schema:
$ref: "#/components/schemas/CursorPagingPlayHistoryObject"
description: A paged set of tracks
Forbidden:
content:
application/json:
schema:
properties:
error:
$ref: "#/components/schemas/ErrorObject"
required:
- error
type: object
description: |
Bad OAuth request (wrong consumer key, bad nonce, expired
timestamp...). Unfortunately, re-authenticating the user won't help here.
ManyAlbums:
content:
application/json:
schema:
properties:
albums:
items:
$ref: "#/components/schemas/AlbumObject"
type: array
required:
- albums
type: object
description: A set of albums
ManyArtists:
content:
application/json:
schema:
properties:
artists:
items:
$ref: "#/components/schemas/ArtistObject"
type: array
required:
- artists
type: object
description: A set of artists
ManyAudioFeatures:
content:
application/json:
schema:
properties:
audio_features:
items:
$ref: "#/components/schemas/AudioFeaturesObject"
type: array
required:
- audio_features
type: object
description: A set of audio features
ManyAudiobooks:
content:
application/json:
schema:
properties:
audiobooks:
items:
$ref: "#/components/schemas/AudiobookObject"
type: array
required:
- audiobooks
type: object
description: A set of audiobooks
ManyChapters:
content:
application/json:
schema:
properties:
chapters:
items:
$ref: "#/components/schemas/ChapterObject"
type: array
required:
- chapters
type: object
description: A set of chapters
ManyDevices:
content:
application/json:
schema:
properties:
devices:
items:
$ref: "#/components/schemas/DeviceObject"
type: array
required:
- devices
type: object
description: A set of devices
ManyEpisodes:
content:
application/json:
schema:
properties:
episodes:
items:
$ref: "#/components/schemas/EpisodeObject"
type: array
required:
- episodes
type: object
description: A set of episodes
ManyGenres:
content:
application/json:
schema:
properties:
genres:
example:
- alternative
- samba
items:
type: string
type: array
required:
- genres
type: object
description: A set of genres
ManySimplifiedShows:
content:
application/json:
schema:
properties:
shows:
items:
$ref: "#/components/schemas/SimplifiedShowObject"
type: array
required:
- shows
type: object
description: A set of shows
ManyTracks:
content:
application/json:
schema:
properties:
tracks:
items:
$ref: "#/components/schemas/TrackObject"
type: array
required:
- tracks
type: object
description: A set of tracks
NotFound:
content:
application/json:
schema:
properties:
error:
$ref: "#/components/schemas/ErrorObject"
required:
- error
type: object
description: |
The requested resource cannot be found.
OneAlbum:
content:
application/json:
schema:
$ref: "#/components/schemas/AlbumObject"
description: An album
OneArtist:
content:
application/json:
schema:
$ref: "#/components/schemas/ArtistObject"
description: An artist
OneAudioAnalysis:
content:
application/json:
schema:
$ref: "#/components/schemas/AudioAnalysisObject"
description: Audio analysis for one track
OneAudioFeatures:
content:
application/json:
schema:
$ref: "#/components/schemas/AudioFeaturesObject"
description: Audio features for one track
OneAudiobook:
content:
application/json:
schema:
$ref: "#/components/schemas/AudiobookObject"
description: An Audiobook
OneCategory:
content:
application/json:
schema:
$ref: "#/components/schemas/CategoryObject"
description: A category
OneChapter:
content:
application/json:
schema:
$ref: "#/components/schemas/ChapterObject"
description: A Chapter
OneCurrentlyPlaying:
content:
application/json:
schema:
$ref: "#/components/schemas/CurrentlyPlayingContextObject"
description: Information about playback
OneCurrentlyPlayingTrack:
content:
application/json:
schema:
$ref: "#/components/schemas/CurrentlyPlayingContextObject"
description: Information about the currently playing track
OneEpisode:
content:
application/json:
schema:
$ref: "#/components/schemas/EpisodeObject"
description: An episode
OnePlaylist:
content:
application/json:
schema:
$ref: "#/components/schemas/PlaylistObject"
description: A playlist
OnePrivateUser:
content:
application/json:
schema:
$ref: "#/components/schemas/PrivateUserObject"
description: A user
OnePublicUser:
content:
application/json:
schema:
$ref: "#/components/schemas/PublicUserObject"
description: A user
OneRecommendations:
content:
application/json:
schema:
$ref: "#/components/schemas/RecommendationsObject"
description: A set of recommendations
OneShow:
content:
application/json:
schema:
$ref: "#/components/schemas/ShowObject"
description: A show
OneTrack:
content:
application/json:
schema:
$ref: "#/components/schemas/TrackObject"
description: A track
PagedAlbums:
content:
application/json:
schema:
properties:
albums:
$ref: "#/components/schemas/PagingSimplifiedAlbumObject"
required:
- albums
type: object
description: A paged set of albums
PagedCategories:
content:
application/json:
schema:
properties:
categories:
$ref: "#/components/schemas/PagingObject"
required:
- categories
type: object
description: A paged set of categories
PagedFeaturedPlaylists:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingFeaturedPlaylistObject"
description: A paged set of playlists
PagedPlaylists:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingPlaylistObject"
description: A paged set of playlists
PagingArtistOrTrackObject:
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
discriminator:
propertyName: type
oneOf:
- $ref: "#/components/schemas/ArtistObject"
- $ref: "#/components/schemas/TrackObject"
type: object
type: array
type: object
type: object
description: Pages of artists or tracks
PagingPlaylistTrackObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingPlaylistTrackObject"
description: Pages of tracks
PagingSavedAlbumObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSavedAlbumObject"
description: Pages of albums
PagingSavedEpisodeObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSavedEpisodeObject"
description: Pages of episodes
PagingSavedShowObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSavedShowObject"
description: Pages of shows
PagingSavedTrackObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSavedTrackObject"
description: Pages of tracks
PagingSimplifiedAlbumObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedAlbumObject"
description: Pages of albums
PagingSimplifiedArtistObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedArtistObject"
description: Pages of artists
PagingSimplifiedAudiobookObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedAudiobookObject"
description: Pages of audiobooks
PagingSimplifiedChapterObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedChapterObject"
description: Pages of chapters
PagingSimplifiedEpisodeObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedEpisodeObject"
description: Pages of episodes
PagingSimplifiedShowObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedShowObject"
description: Pages of shows
PagingSimplifiedTrackObject:
content:
application/json:
schema:
$ref: "#/components/schemas/PagingSimplifiedTrackObject"
description: Pages of tracks
PlaylistSnapshotId:
content:
application/json:
schema:
properties:
snapshot_id:
example: abc
type: string
type: object
description: A snapshot ID for the playlist
Queue:
content:
application/json:
schema:
$ref: "#/components/schemas/QueueObject"
description: Information about the queue
SearchItems:
content:
application/json:
schema:
properties:
albums:
$ref: "#/components/schemas/PagingSimplifiedAlbumObject"
artists:
$ref: "#/components/schemas/PagingArtistObject"
audiobooks:
$ref: "#/components/schemas/PagingSimplifiedAudiobookObject"
episodes:
$ref: "#/components/schemas/PagingSimplifiedEpisodeObject"
playlists:
$ref: "#/components/schemas/PagingPlaylistObject"
shows:
$ref: "#/components/schemas/PagingSimplifiedShowObject"
tracks:
$ref: "#/components/schemas/PagingTrackObject"
type: object
description: Search response
TooManyRequests:
content:
application/json:
schema:
properties:
error:
$ref: "#/components/schemas/ErrorObject"
required:
- error
type: object
description: |
The app has exceeded its rate limits.
Unauthorized:
content:
application/json:
schema:
properties:
error:
$ref: "#/components/schemas/ErrorObject"
required:
- error
type: object
description: |
Bad or expired token. This can happen if the user revoked a token or
the access token has expired. You should re-authenticate the user.
schemas:
AlbumBase:
properties:
album_type:
description: |
The type of the album.
enum:
- album
- single
- compilation
example: compilation
type: string
available_markets:
description: |
The markets in which the album is available: [ISO 3166-1 alpha-2 country codes](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). _**NOTE**: an album is considered available in a market when at least 1 of its tracks is available in that market._
example:
- CA
- BR
- IT
items:
type: string
type: array
copyrights:
description: |
The copyright statements of the album.
items:
$ref: "#/components/schemas/CopyrightObject"
type: array
external_ids:
allOf:
- $ref: "#/components/schemas/ExternalIdObject"
description: |
Known external IDs for the album.
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this album.
genres:
description: |
A list of the genres the album is associated with. If not yet classified, the array is empty.
example:
- Egg punk
- Noise rock
items:
type: string
type: array
href:
description: |
A link to the Web API endpoint providing full details of the album.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the album.
example: 2up3OPMp9Tb4dAKM2erWXQ
type: string
images:
description: |
The cover art for the album in various sizes, widest first.
items:
$ref: "#/components/schemas/ImageObject"
type: array
label:
description: |
The label associated with the album.
type: string
name:
description: |
The name of the album. In case of an album takedown, the value may be an empty string.
type: string
popularity:
description: |
The popularity of the album. The value will be between 0 and 100, with 100 being the most popular.
type: integer
release_date:
description: |
The date the album was first released.
example: 1981-12
type: string
release_date_precision:
description: |
The precision with which `release_date` value is known.
enum:
- year
- month
- day
example: year
type: string
restrictions:
allOf:
- $ref: "#/components/schemas/AlbumRestrictionObject"
description: |
Included in the response when a content restriction is applied.
total_tracks:
description: The number of tracks in the album.
example: 9
type: integer
type:
description: |
The object type.
enum:
- album
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the album.
example: spotify:album:2up3OPMp9Tb4dAKM2erWXQ
type: string
required:
- album_type
- total_tracks
- available_markets
- external_urls
- href
- id
- images
- name
- release_date
- release_date_precision
- type
- uri
type: object
AlbumObject:
allOf:
- $ref: "#/components/schemas/AlbumBase"
- properties:
artists:
description: |
The artists of the album. Each artist object includes a link in `href` to more detailed information about the artist.
items:
$ref: "#/components/schemas/ArtistObject"
type: array
tracks:
$ref: "#/components/schemas/PagingSimplifiedTrackObject"
description: |
The tracks of the album.
type: object
x-spotify-docs-type: AlbumObject
AlbumRestrictionObject:
properties:
reason:
description: |
The reason for the restriction. Albums may be restricted if the content is not available in a given market, to the user's subscription type, or when the user's account is set to not play explicit content.
Additional reasons may be added in the future.
enum:
- market
- product
- explicit
type: string
type: object
x-spotify-docs-type: AlbumRestrictionObject
ArtistObject:
properties:
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this artist.
followers:
allOf:
- $ref: "#/components/schemas/FollowersObject"
description: |
Information about the followers of the artist.
genres:
description: |
A list of the genres the artist is associated with. If not yet classified, the array is empty.
example:
- Prog rock
- Grunge
items:
type: string
type: array
href:
description: |
A link to the Web API endpoint providing full details of the artist.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the artist.
type: string
images:
description: |
Images of the artist in various sizes, widest first.
items:
$ref: "#/components/schemas/ImageObject"
type: array
name:
description: |
The name of the artist.
type: string
popularity:
description: |
The popularity of the artist. The value will be between 0 and 100, with 100 being the most popular. The artist's popularity is calculated from the popularity of all the artist's tracks.
type: integer
type:
description: |
The object type.
enum:
- artist
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the artist.
type: string
type: object
x-spotify-docs-type: ArtistObject
AudioAnalysisObject:
properties:
bars:
description: The time intervals of the bars throughout the track. A bar (or measure) is a segment of time defined as a given number of beats.
items:
$ref: "#/components/schemas/TimeIntervalObject"
type: array
beats:
description: The time intervals of beats throughout the track. A beat is the basic time unit of a piece of music; for example, each tick of a metronome. Beats are typically multiples of tatums.
items:
$ref: "#/components/schemas/TimeIntervalObject"
type: array
meta:
properties:
analysis_time:
description: The amount of time taken to analyze this track.
example: 6.93906
type: number
analyzer_version:
description: The version of the Analyzer used to analyze this track.
example: 4.0.0
type: string
detailed_status:
description: A detailed status code for this track. If analysis data is missing, this code may explain why.
example: OK
type: string
input_process:
description: The method used to read the track's audio data.
example: libvorbisfile L+R 44100->22050
type: string
platform:
description: The platform used to read the track's audio data.
example: Linux
type: string
status_code:
description: The return code of the analyzer process. 0 if successful, 1 if any errors occurred.
example: 0
type: integer
timestamp:
description: The Unix timestamp (in seconds) at which this track was analyzed.
example: 1495193577
type: integer
type: object
sections:
description: Sections are defined by large variations in rhythm or timbre, e.g. chorus, verse, bridge, guitar solo, etc. Each section contains its own descriptions of tempo, key, mode, time_signature, and loudness.
items:
$ref: "#/components/schemas/SectionObject"
type: array
segments:
description: Each segment contains a roughly conisistent sound throughout its duration.
items:
$ref: "#/components/schemas/SegmentObject"
type: array
tatums:
description: A tatum represents the lowest regular pulse train that a listener intuitively infers from the timing of perceived musical events (segments).
items:
$ref: "#/components/schemas/TimeIntervalObject"
type: array
track:
properties:
analysis_channels:
description: The number of channels used for analysis. If 1, all channels are summed together to mono before analysis.
example: 1
type: integer
analysis_sample_rate:
description: The sample rate used to decode and analyze this track. May differ from the actual sample rate of this track available on Spotify.
example: 22050
type: integer
code_version:
description: A version number for the Echo Nest Musical Fingerprint format used in the codestring field.
example: 3.15
type: number
codestring:
description: An [Echo Nest Musical Fingerprint (ENMFP)](https://academiccommons.columbia.edu/doi/10.7916/D8Q248M4) codestring for this track.
type: string
duration:
description: Length of the track in seconds.
example: 207.95985
type: number
echoprint_version:
description: A version number for the EchoPrint format used in the echoprintstring field.
example: 4.15
type: number
echoprintstring:
description: An [EchoPrint](https://github.com/spotify/echoprint-codegen) codestring for this track.
type: string
end_of_fade_in:
description: The time, in seconds, at which the track's fade-in period ends. If the track has no fade-in, this will be 0.0.
example: 0
type: number
key:
$ref: "#/components/schemas/Key"
key_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the `key`.
example: 0.408
maximum: 1
minimum: 0
type: number
loudness:
$ref: "#/components/schemas/Loudness"
mode:
$ref: "#/components/schemas/Mode"
mode_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the `mode`.
example: 0.485
maximum: 1
minimum: 0
type: number
num_samples:
description: The exact number of audio samples analyzed from this track. See also `analysis_sample_rate`.
example: 4585515
type: integer
offset_seconds:
description: An offset to the start of the region of the track that was analyzed. (As the entire track is analyzed, this should always be 0.)
example: 0
type: integer
rhythm_version:
description: A version number for the Rhythmstring used in the rhythmstring field.
example: 1
type: number
rhythmstring:
description: A Rhythmstring for this track. The format of this string is similar to the Synchstring.
type: string
sample_md5:
description: This field will always contain the empty string.
type: string
start_of_fade_out:
description: The time, in seconds, at which the track's fade-out period starts. If the track has no fade-out, this should match the track's length.
example: 201.13705
type: number
synch_version:
description: A version number for the Synchstring used in the synchstring field.
example: 1
type: number
synchstring:
description: A [Synchstring](https://github.com/echonest/synchdata) for this track.
type: string
tempo:
$ref: "#/components/schemas/Tempo"
tempo_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the `tempo`.
example: 0.73
maximum: 1
minimum: 0
type: number
time_signature:
$ref: "#/components/schemas/TimeSignature"
time_signature_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the `time_signature`.
example: 0.994
maximum: 1
minimum: 0
type: number
window_seconds:
description: The length of the region of the track was analyzed, if a subset of the track was analyzed. (As the entire track is analyzed, this should always be 0.)
example: 0
type: integer
type: object
type: object
x-spotify-docs-type: AudioAnalysisObject
AudioFeaturesObject:
properties:
acousticness:
description: |
A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic.
example: 0.00242
format: float
maximum: 1
minimum: 0
type: number
x-spotify-docs-type: Float
analysis_url:
description: |
A URL to access the full audio analysis of this track. An access token is required to access this data.
example: |
https://api.spotify.com/v1/audio-analysis/2takcwOaAZWiXQijPHIx7B
type: string
danceability:
description: |
Danceability describes how suitable a track is for dancing based on a combination of musical elements including tempo, rhythm stability, beat strength, and overall regularity. A value of 0.0 is least danceable and 1.0 is most danceable.
example: 0.585
format: float
type: number
x-spotify-docs-type: Float
duration_ms:
description: |
The duration of the track in milliseconds.
example: 237040
type: integer
energy:
description: |
Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity. Typically, energetic tracks feel fast, loud, and noisy. For example, death metal has high energy, while a Bach prelude scores low on the scale. Perceptual features contributing to this attribute include dynamic range, perceived loudness, timbre, onset rate, and general entropy.
example: 0.842
format: float
type: number
x-spotify-docs-type: Float
id:
description: |
The Spotify ID for the track.
example: 2takcwOaAZWiXQijPHIx7B
type: string
instrumentalness:
description: |
Predicts whether a track contains no vocals. "Ooh" and "aah" sounds are treated as instrumental in this context. Rap or spoken word tracks are clearly "vocal". The closer the instrumentalness value is to 1.0, the greater likelihood the track contains no vocal content. Values above 0.5 are intended to represent instrumental tracks, but confidence is higher as the value approaches 1.0.
example: 0.00686
format: float
type: number
x-spotify-docs-type: Float
key:
$ref: "#/components/schemas/Key"
liveness:
description: |
Detects the presence of an audience in the recording. Higher liveness values represent an increased probability that the track was performed live. A value above 0.8 provides strong likelihood that the track is live.
example: 0.0866
format: float
type: number
x-spotify-docs-type: Float
loudness:
$ref: "#/components/schemas/Loudness"
mode:
$ref: "#/components/schemas/Mode"
speechiness:
description: |
Speechiness detects the presence of spoken words in a track. The more exclusively speech-like the recording (e.g. talk show, audio book, poetry), the closer to 1.0 the attribute value. Values above 0.66 describe tracks that are probably made entirely of spoken words. Values between 0.33 and 0.66 describe tracks that may contain both music and speech, either in sections or layered, including such cases as rap music. Values below 0.33 most likely represent music and other non-speech-like tracks.
example: 0.0556
format: float
type: number
x-spotify-docs-type: Float
tempo:
$ref: "#/components/schemas/Tempo"
time_signature:
$ref: "#/components/schemas/TimeSignature"
track_href:
description: |
A link to the Web API endpoint providing full details of the track.
example: |
https://api.spotify.com/v1/tracks/2takcwOaAZWiXQijPHIx7B
type: string
type:
description: |
The object type.
enum:
- audio_features
type: string
uri:
description: |
The Spotify URI for the track.
example: spotify:track:2takcwOaAZWiXQijPHIx7B
type: string
valence:
description: |
A measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track. Tracks with high valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low valence sound more negative (e.g. sad, depressed, angry).
example: 0.428
format: float
maximum: 1
minimum: 0
type: number
x-spotify-docs-type: Float
type: object
x-spotify-docs-type: AudioFeaturesObject
AudiobookBase:
properties:
authors:
description: |
The author(s) for the audiobook.
items:
$ref: "#/components/schemas/AuthorObject"
type: array
available_markets:
description: |
A list of the countries in which the audiobook can be played, identified by their [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.
items:
type: string
type: array
copyrights:
description: |
The copyright statements of the audiobook.
items:
$ref: "#/components/schemas/CopyrightObject"
type: array
description:
description: |
A description of the audiobook. HTML tags are stripped away from this field, use `html_description` field in case HTML tags are needed.
type: string
edition:
description: |
The edition of the audiobook.
example: Unabridged
type: string
explicit:
description: |
Whether or not the audiobook has explicit content (true = yes it does; false = no it does not OR unknown).
type: boolean
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
External URLs for this audiobook.
href:
description: |
A link to the Web API endpoint providing full details of the audiobook.
type: string
html_description:
description: |
A description of the audiobook. This field may contain HTML tags.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the audiobook.
type: string
images:
description: |
The cover art for the audiobook in various sizes, widest first.
items:
$ref: "#/components/schemas/ImageObject"
type: array
languages:
description: |
A list of the languages used in the audiobook, identified by their [ISO 639](https://en.wikipedia.org/wiki/ISO_639) code.
items:
type: string
type: array
media_type:
description: |
The media type of the audiobook.
type: string
name:
description: |
The name of the audiobook.
type: string
narrators:
description: |
The narrator(s) for the audiobook.
items:
$ref: "#/components/schemas/NarratorObject"
type: array
publisher:
description: |
The publisher of the audiobook.
type: string
total_chapters:
description: |
The number of chapters in this audiobook.
type: integer
type:
description: |
The object type.
enum:
- audiobook
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the audiobook.
type: string
required:
- authors
- available_markets
- copyrights
- description
- explicit
- external_urls
- href
- html_description
- id
- images
- languages
- media_type
- name
- narrators
- publisher
- total_chapters
- type
- uri
type: object
AudiobookObject:
allOf:
- $ref: "#/components/schemas/AudiobookBase"
- properties:
chapters:
allOf:
- $ref: "#/components/schemas/PagingSimplifiedChapterObject"
description: |
The chapters of the audiobook.
type: object
required:
- chapters
type: object
x-spotify-docs-type: AudiobookObject
AuthorObject:
properties:
name:
description: |
The name of the author.
type: string
type: object
x-spotify-docs-type: AuthorObject
CategoryObject:
properties:
href:
description: |
A link to the Web API endpoint returning full details of the category.
type: string
icons:
description: |
The category icon, in various sizes.
items:
$ref: "#/components/schemas/ImageObject"
type: array
id:
description: |
The [Spotify category ID](/documentation/web-api/concepts/spotify-uris-ids) of the category.
example: equal
type: string
name:
description: |
The name of the category.
example: EQUAL
type: string
required:
- href
- icons
- id
- name
type: object
x-spotify-docs-type: CategoryObject
ChapterBase:
properties:
audio_preview_url:
description: |
A URL to a 30 second preview (MP3 format) of the episode. `null` if not available.
example: https://p.scdn.co/mp3-preview/2f37da1d4221f40b9d1a98cd191f4d6f1646ad17
type: string
x-spotify-policy-list:
- $ref: "#/components/x-spotify-policy/StandalonePreview"
available_markets:
description: |
A list of the countries in which the chapter can be played, identified by their [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.
items:
type: string
type: array
chapter_number:
description: |
The number of the chapter
example: 1
type: integer
description:
description: |
A description of the episode. HTML tags are stripped away from this field, use `html_description` field in case HTML tags are needed.
example: |
A Spotify podcast sharing fresh insights on important topics of the moment—in a way only Spotify can. Youll hear from experts in the music, podcast and tech industries as we discover and uncover stories about our work and the world around us.
type: string
duration_ms:
description: |
The episode length in milliseconds.
example: 1686230
type: integer
explicit:
description: |
Whether or not the episode has explicit content (true = yes it does; false = no it does not OR unknown).
type: boolean
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
External URLs for this episode.
href:
description: |
A link to the Web API endpoint providing full details of the episode.
example: https://api.spotify.com/v1/episodes/5Xt5DXGzch68nYYamXrNxZ
type: string
html_description:
description: |
A description of the episode. This field may contain HTML tags.
example: |
<p>A Spotify podcast sharing fresh insights on important topics of the moment—in a way only Spotify can. Youll hear from experts in the music, podcast and tech industries as we discover and uncover stories about our work and the world around us.</p>
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the episode.
example: 5Xt5DXGzch68nYYamXrNxZ
type: string
images:
description: |
The cover art for the episode in various sizes, widest first.
items:
$ref: "#/components/schemas/ImageObject"
type: array
is_playable:
description: |
True if the episode is playable in the given market. Otherwise false.
type: boolean
languages:
description: |
A list of the languages used in the episode, identified by their [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639) code.
example:
- fr
- en
items:
type: string
type: array
name:
description: |
The name of the episode.
example: |
Starting Your Own Podcast: Tips, Tricks, and Advice From Anchor Creators
type: string
release_date:
description: |
The date the episode was first released, for example `"1981-12-15"`. Depending on the precision, it might be shown as `"1981"` or `"1981-12"`.
example: 1981-12-15
type: string
release_date_precision:
description: |
The precision with which `release_date` value is known.
enum:
- year
- month
- day
example: day
type: string
restrictions:
allOf:
- $ref: "#/components/schemas/ChapterRestrictionObject"
description: |
Included in the response when a content restriction is applied.
resume_point:
allOf:
- $ref: "#/components/schemas/ResumePointObject"
description: |
The user's most recent position in the episode. Set if the supplied access token is a user token and has the scope 'user-read-playback-position'.
type:
description: |
The object type.
enum:
- episode
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the episode.
example: spotify:episode:0zLhl3WsOCQHbe1BPTiHgr
type: string
required:
- audio_preview_url
- chapter_number
- description
- html_description
- duration_ms
- explicit
- external_urls
- href
- id
- images
- is_playable
- languages
- name
- release_date
- release_date_precision
- resume_point
- type
- uri
type: object
ChapterObject:
allOf:
- $ref: "#/components/schemas/ChapterBase"
- properties:
audiobook:
$ref: "#/components/schemas/SimplifiedAudiobookObject"
description: |
The audiobook for which the chapter belongs.
required:
- audiobook
type: object
type: object
x-spotify-docs-type: ChapterObject
ChapterRestrictionObject:
properties:
reason:
description: |
The reason for the restriction. Supported values:
- `market` - The content item is not available in the given market.
- `product` - The content item is not available for the user's subscription type.
- `explicit` - The content item is explicit and the user's account is set to not play explicit content.
- `payment_required` - Payment is required to play the content item.
Additional reasons may be added in the future.
**Note**: If you use this field, make sure that your application safely handles unknown values.
type: string
type: object
x-spotify-docs-type: ChapterRestrictionObject
ContextObject:
properties:
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: External URLs for this context.
href:
description: A link to the Web API endpoint providing full details of the track.
type: string
type:
description: |
The object type, e.g. "artist", "playlist", "album", "show".
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the context.
type: string
type: object
x-spotify-docs-type: ContextObject
CopyrightObject:
properties:
text:
description: |
The copyright text for this content.
type: string
type:
description: |
The type of copyright: `C` = the copyright, `P` = the sound recording (performance) copyright.
type: string
type: object
x-spotify-docs-type: CopyrightObject
CurrentlyPlayingContextObject:
properties:
actions:
allOf:
- $ref: "#/components/schemas/DisallowsObject"
description: |
Allows to update the user interface based on which playback actions are available within the current context.
context:
allOf:
- $ref: "#/components/schemas/ContextObject"
description: A Context Object. Can be `null`.
currently_playing_type:
description: |
The object type of the currently playing item. Can be one of `track`, `episode`, `ad` or `unknown`.
type: string
device:
allOf:
- $ref: "#/components/schemas/DeviceObject"
description: |
The device that is currently active.
is_playing:
description: If something is currently playing, return `true`.
type: boolean
item:
description: The currently playing track or episode. Can be `null`.
discriminator:
propertyName: type
oneOf:
- $ref: "#/components/schemas/TrackObject"
- $ref: "#/components/schemas/EpisodeObject"
x-spotify-docs-type: TrackObject | EpisodeObject
progress_ms:
description: Progress into the currently playing track or episode. Can be `null`.
type: integer
repeat_state:
description: off, track, context
type: string
shuffle_state:
description: If shuffle is on or off.
type: boolean
timestamp:
description: Unix Millisecond Timestamp when data was fetched.
type: integer
type: object
x-spotify-docs-type: CurrentlyPlayingContextObject
CurrentlyPlayingObject:
properties:
context:
allOf:
- $ref: "#/components/schemas/ContextObject"
description: A Context Object. Can be `null`.
currently_playing_type:
description: |
The object type of the currently playing item. Can be one of `track`, `episode`, `ad` or `unknown`.
type: string
is_playing:
description: If something is currently playing, return `true`.
type: boolean
item:
description: The currently playing track or episode. Can be `null`.
discriminator:
propertyName: type
oneOf:
- $ref: "#/components/schemas/TrackObject"
- $ref: "#/components/schemas/EpisodeObject"
x-spotify-docs-type: TrackObject | EpisodeObject
progress_ms:
description: Progress into the currently playing track or episode. Can be `null`.
type: integer
timestamp:
description: Unix Millisecond Timestamp when data was fetched
type: integer
type: object
x-spotify-docs-type: CurrentlyPlayingObject
CursorObject:
properties:
after:
description: The cursor to use as key to find the next page of items.
type: string
before:
description: The cursor to use as key to find the previous page of items.
type: string
type: object
x-spotify-docs-type: CursorObject
CursorPagingObject:
properties:
cursors:
allOf:
- $ref: "#/components/schemas/CursorObject"
description: The cursors used to find the next set of items.
href:
description: A link to the Web API endpoint returning the full result of the request.
type: string
limit:
description: The maximum number of items in the response (as set in the query or by default).
type: integer
next:
description: URL to the next page of items. ( `null` if none)
type: string
total:
description: The total number of items available to return.
type: integer
type: object
x-spotify-docs-type: CursorPagingObject
CursorPagingPlayHistoryObject:
allOf:
- $ref: "#/components/schemas/CursorPagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/PlayHistoryObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingTrackObject
CursorPagingSimplifiedArtistObject:
allOf:
- $ref: "#/components/schemas/CursorPagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/ArtistObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingArtistObject
DeviceObject:
properties:
id:
description: The device ID.
nullable: true
type: string
is_active:
description: If this device is the currently active device.
type: boolean
is_private_session:
description: If this device is currently in a private session.
type: boolean
is_restricted:
description: Whether controlling this device is restricted. At present if this is "true" then no Web API commands will be accepted by this device.
type: boolean
name:
description: A human-readable name for the device. Some devices have a name that the user can configure (e.g. \"Loudest speaker\") and some devices have a generic name associated with the manufacturer or device model.
example: Kitchen speaker
type: string
type:
description: Device type, such as "computer", "smartphone" or "speaker".
example: computer
type: string
volume_percent:
description: The current volume in percent.
example: 59
maximum: 100
minimum: 0
nullable: true
type: integer
type: object
x-spotify-docs-type: DeviceObject
DevicesObject:
properties:
devices:
description: A list of 0..n Device objects
items:
$ref: "#/components/schemas/DeviceObject"
type: array
type: object
x-spotify-docs-type: DevicesObject
DisallowsObject:
properties:
interrupting_playback:
description: Interrupting playback. Optional field.
type: boolean
pausing:
description: Pausing. Optional field.
type: boolean
resuming:
description: Resuming. Optional field.
type: boolean
seeking:
description: Seeking playback location. Optional field.
type: boolean
skipping_next:
description: Skipping to the next context. Optional field.
type: boolean
skipping_prev:
description: Skipping to the previous context. Optional field.
type: boolean
toggling_repeat_context:
description: Toggling repeat context flag. Optional field.
type: boolean
toggling_repeat_track:
description: Toggling repeat track flag. Optional field.
type: boolean
toggling_shuffle:
description: Toggling shuffle flag. Optional field.
type: boolean
transferring_playback:
description: Transfering playback between devices. Optional field.
type: boolean
type: object
x-spotify-docs-type: DisallowsObject
EpisodeBase:
properties:
audio_preview_url:
description: |
A URL to a 30 second preview (MP3 format) of the episode. `null` if not available.
example: https://p.scdn.co/mp3-preview/2f37da1d4221f40b9d1a98cd191f4d6f1646ad17
type: string
x-spotify-policy-list:
- $ref: "#/components/x-spotify-policy/StandalonePreview"
description:
description: |
A description of the episode. HTML tags are stripped away from this field, use `html_description` field in case HTML tags are needed.
example: |
A Spotify podcast sharing fresh insights on important topics of the moment—in a way only Spotify can. Youll hear from experts in the music, podcast and tech industries as we discover and uncover stories about our work and the world around us.
type: string
duration_ms:
description: |
The episode length in milliseconds.
example: 1686230
type: integer
explicit:
description: |
Whether or not the episode has explicit content (true = yes it does; false = no it does not OR unknown).
type: boolean
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
External URLs for this episode.
href:
description: |
A link to the Web API endpoint providing full details of the episode.
example: https://api.spotify.com/v1/episodes/5Xt5DXGzch68nYYamXrNxZ
type: string
html_description:
description: |
A description of the episode. This field may contain HTML tags.
example: |
<p>A Spotify podcast sharing fresh insights on important topics of the moment—in a way only Spotify can. Youll hear from experts in the music, podcast and tech industries as we discover and uncover stories about our work and the world around us.</p>
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the episode.
example: 5Xt5DXGzch68nYYamXrNxZ
type: string
images:
description: |
The cover art for the episode in various sizes, widest first.
items:
$ref: "#/components/schemas/ImageObject"
type: array
is_externally_hosted:
description: |
True if the episode is hosted outside of Spotify's CDN.
type: boolean
is_playable:
description: |
True if the episode is playable in the given market. Otherwise false.
type: boolean
language:
deprecated: true
description: |
The language used in the episode, identified by a [ISO 639](https://en.wikipedia.org/wiki/ISO_639) code. This field is deprecated and might be removed in the future. Please use the `languages` field instead.
example: en
type: string
languages:
description: |
A list of the languages used in the episode, identified by their [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639) code.
example:
- fr
- en
items:
type: string
type: array
name:
description: |
The name of the episode.
example: |
Starting Your Own Podcast: Tips, Tricks, and Advice From Anchor Creators
type: string
release_date:
description: |
The date the episode was first released, for example `"1981-12-15"`. Depending on the precision, it might be shown as `"1981"` or `"1981-12"`.
example: 1981-12-15
type: string
release_date_precision:
description: |
The precision with which `release_date` value is known.
enum:
- year
- month
- day
example: day
type: string
restrictions:
allOf:
- $ref: "#/components/schemas/EpisodeRestrictionObject"
description: |
Included in the response when a content restriction is applied.
resume_point:
allOf:
- $ref: "#/components/schemas/ResumePointObject"
description: |
The user's most recent position in the episode. Set if the supplied access token is a user token and has the scope 'user-read-playback-position'.
type:
description: |
The object type.
enum:
- episode
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the episode.
example: spotify:episode:0zLhl3WsOCQHbe1BPTiHgr
type: string
required:
- audio_preview_url
- description
- html_description
- duration_ms
- explicit
- external_urls
- href
- id
- images
- is_externally_hosted
- is_playable
- languages
- name
- release_date
- release_date_precision
- resume_point
- type
- uri
type: object
EpisodeObject:
allOf:
- $ref: "#/components/schemas/EpisodeBase"
- properties:
show:
$ref: "#/components/schemas/SimplifiedShowObject"
description: |
The show on which the episode belongs.
required:
- show
type: object
type: object
x-spotify-docs-type: EpisodeObject
EpisodeRestrictionObject:
properties:
reason:
description: |
The reason for the restriction. Supported values:
- `market` - The content item is not available in the given market.
- `product` - The content item is not available for the user's subscription type.
- `explicit` - The content item is explicit and the user's account is set to not play explicit content.
Additional reasons may be added in the future.
**Note**: If you use this field, make sure that your application safely handles unknown values.
type: string
type: object
x-spotify-docs-type: EpisodeRestrictionObject
ErrorObject:
properties:
message:
description: |
A short description of the cause of the error.
type: string
status:
description: |
The HTTP status code (also returned in the response header; see [Response Status Codes](/documentation/web-api/concepts/api-calls#response-status-codes) for more information).
maximum: 599
minimum: 400
type: integer
required:
- status
- message
type: object
x-spotify-docs-type: ErrorObject
ExplicitContentSettingsObject:
properties:
filter_enabled:
description: |
When `true`, indicates that explicit content should not be played.
type: boolean
filter_locked:
description: |
When `true`, indicates that the explicit content setting is locked and can't be changed by the user.
type: boolean
type: object
x-spotify-docs-type: ExplicitContentSettingsObject
ExternalIdObject:
properties:
ean:
description: |
[International Article Number](http://en.wikipedia.org/wiki/International_Article_Number_%28EAN%29)
type: string
isrc:
description: |
[International Standard Recording Code](http://en.wikipedia.org/wiki/International_Standard_Recording_Code)
type: string
upc:
description: |
[Universal Product Code](http://en.wikipedia.org/wiki/Universal_Product_Code)
type: string
type: object
x-spotify-docs-type: ExternalIdObject
ExternalUrlObject:
properties:
spotify:
description: |
The [Spotify URL](/documentation/web-api/concepts/spotify-uris-ids) for the object.
type: string
type: object
x-spotify-docs-type: ExternalUrlObject
FollowersObject:
properties:
href:
description: |
This will always be set to null, as the Web API does not support it at the moment.
nullable: true
type: string
total:
description: |
The total number of followers.
type: integer
type: object
x-spotify-docs-type: FollowersObject
ImageObject:
properties:
height:
description: |
The image height in pixels.
example: 300
nullable: true
type: integer
url:
description: |
The source URL of the image.
example: |
https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228
type: string
width:
description: |
The image width in pixels.
example: 300
nullable: true
type: integer
required:
- url
- height
- width
type: object
x-spotify-docs-type: ImageObject
Key:
description: |
The key the track is in. Integers map to pitches using standard [Pitch Class notation](https://en.wikipedia.org/wiki/Pitch_class). E.g. 0 = C, 1 = C♯/D♭, 2 = D, and so on. If no key was detected, the value is -1.
example: 9
maximum: 11
minimum: -1
type: integer
LinkedTrackObject:
properties:
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this track.
href:
description: |
A link to the Web API endpoint providing full details of the track.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the track.
type: string
type:
description: |
The object type: "track".
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the track.
type: string
type: object
x-spotify-docs-type: LinkedTrackObject
Loudness:
description: |
The overall loudness of a track in decibels (dB). Loudness values are averaged across the entire track and are useful for comparing relative loudness of tracks. Loudness is the quality of a sound that is the primary psychological correlate of physical strength (amplitude). Values typically range between -60 and 0 db.
example: -5.883
format: float
type: number
x-spotify-docs-type: Float
Mode:
description: |
Mode indicates the modality (major or minor) of a track, the type of scale from which its melodic content is derived. Major is represented by 1 and minor is 0.
example: 0
type: integer
NarratorObject:
properties:
name:
description: |
The name of the Narrator.
type: string
type: object
x-spotify-docs-type: NarratorObject
PagingArtistObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/ArtistObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingArtistObject
PagingFeaturedPlaylistObject:
properties:
message:
type: string
playlists:
$ref: "#/components/schemas/PagingPlaylistObject"
type: object
x-spotify-docs-type: PagingFeaturedPlaylistObject
PagingObject:
properties:
href:
description: |
A link to the Web API endpoint returning the full result of the request
example: |
https://api.spotify.com/v1/me/shows?offset=0&limit=20
type: string
limit:
description: |
The maximum number of items in the response (as set in the query or by default).
example: 20
type: integer
next:
description: |
URL to the next page of items. ( `null` if none)
example: https://api.spotify.com/v1/me/shows?offset=1&limit=1
nullable: true
type: string
offset:
description: |
The offset of the items returned (as set in the query or by default)
example: 0
type: integer
previous:
description: |
URL to the previous page of items. ( `null` if none)
example: https://api.spotify.com/v1/me/shows?offset=1&limit=1
nullable: true
type: string
total:
description: |
The total number of items available to return.
example: 4
type: integer
required:
- href
- items
- limit
- next
- offset
- previous
- total
type: object
x-spotify-docs-type: PagingObject
PagingPlaylistObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedPlaylistObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingPlaylistObject
PagingPlaylistTrackObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/PlaylistTrackObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingPlaylistTrackObject
PagingSavedAlbumObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SavedAlbumObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingSavedAlbumObject
PagingSavedEpisodeObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SavedEpisodeObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingEpisodeObject
PagingSavedShowObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SavedShowObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingShowObject
PagingSavedTrackObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SavedTrackObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingTrackObject
PagingSimplifiedAlbumObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedAlbumObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingAlbumObject
PagingSimplifiedArtistObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedArtistObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingArtistObject
PagingSimplifiedAudiobookObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedAudiobookObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingAudiobookObject
PagingSimplifiedChapterObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedChapterObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingSimplifiedChapterObject
PagingSimplifiedEpisodeObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedEpisodeObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingEpisodeObject
PagingSimplifiedShowObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedShowObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingShowObject
PagingSimplifiedTrackObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/SimplifiedTrackObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingTrackObject
PagingTrackObject:
allOf:
- $ref: "#/components/schemas/PagingObject"
- properties:
items:
items:
$ref: "#/components/schemas/TrackObject"
type: array
type: object
type: object
x-spotify-docs-type: PagingTrackObject
PlayHistoryObject:
properties:
context:
allOf:
- $ref: "#/components/schemas/ContextObject"
description: The context the track was played from.
played_at:
description: The date and time the track was played.
format: date-time
type: string
x-spotify-docs-type: Timestamp
track:
allOf:
- $ref: "#/components/schemas/TrackObject"
description: The track the user listened to.
type: object
x-spotify-docs-type: PlayHistoryObject
PlayerErrorObject:
properties:
message:
description: |
A short description of the cause of the error.
type: string
reason:
allOf:
- $ref: "#/components/schemas/PlayerErrorReasons"
status:
description: |
The HTTP status code. Either `404 NOT FOUND` or `403 FORBIDDEN`. Also returned in the response header.
type: integer
type: object
x-spotify-docs-type: PlayerErrorObject
PlayerErrorReasons:
description: |
* `NO_PREV_TRACK` - The command requires a previous track, but there is none in the context.
* `NO_NEXT_TRACK` - The command requires a next track, but there is none in the context.
* `NO_SPECIFIC_TRACK` - The requested track does not exist.
* `ALREADY_PAUSED` - The command requires playback to not be paused.
* `NOT_PAUSED` - The command requires playback to be paused.
* `NOT_PLAYING_LOCALLY` - The command requires playback on the local device.
* `NOT_PLAYING_TRACK` - The command requires that a track is currently playing.
* `NOT_PLAYING_CONTEXT` - The command requires that a context is currently playing.
* `ENDLESS_CONTEXT` - The shuffle command cannot be applied on an endless context.
* `CONTEXT_DISALLOW` - The command could not be performed on the context.
* `ALREADY_PLAYING` - The track should not be restarted if the same track and context is already playing, and there is a resume point.
* `RATE_LIMITED` - The user is rate limited due to too frequent track play, also known as cat-on-the-keyboard spamming.
* `REMOTE_CONTROL_DISALLOW` - The context cannot be remote-controlled.
* `DEVICE_NOT_CONTROLLABLE` - Not possible to remote control the device.
* `VOLUME_CONTROL_DISALLOW` - Not possible to remote control the device's volume.
* `NO_ACTIVE_DEVICE` - Requires an active device and the user has none.
* `PREMIUM_REQUIRED` - The request is prohibited for non-premium users.
* `UNKNOWN` - Certain actions are restricted because of unknown reasons.
enum:
- NO_PREV_TRACK
- NO_NEXT_TRACK
- NO_SPECIFIC_TRACK
- ALREADY_PAUSED
- NOT_PAUSED
- NOT_PLAYING_LOCALLY
- NOT_PLAYING_TRACK
- NOT_PLAYING_CONTEXT
- ENDLESS_CONTEXT
- CONTEXT_DISALLOW
- ALREADY_PLAYING
- RATE_LIMITED
- REMOTE_CONTROL_DISALLOW
- DEVICE_NOT_CONTROLLABLE
- VOLUME_CONTROL_DISALLOW
- NO_ACTIVE_DEVICE
- PREMIUM_REQUIRED
- UNKNOWN
type: string
PlaylistObject:
properties:
collaborative:
description: |
`true` if the owner allows other users to modify the playlist.
type: boolean
description:
description: |
The playlist description. _Only returned for modified, verified playlists, otherwise_ `null`.
nullable: true
type: string
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this playlist.
followers:
allOf:
- $ref: "#/components/schemas/FollowersObject"
description: Information about the followers of the playlist.
href:
description: |
A link to the Web API endpoint providing full details of the playlist.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the playlist.
type: string
images:
description: |
Images for the playlist. The array may be empty or contain up to three images. The images are returned by size in descending order. See [Working with Playlists](/documentation/web-api/concepts/playlists). _**Note**: If returned, the source URL for the image (`url`) is temporary and will expire in less than a day._
items:
$ref: "#/components/schemas/ImageObject"
type: array
name:
description: |
The name of the playlist.
type: string
owner:
allOf:
- $ref: "#/components/schemas/PlaylistOwnerObject"
description: |
The user who owns the playlist
public:
description: |
The playlist's public/private status: `true` the playlist is public, `false` the playlist is private, `null` the playlist status is not relevant. For more about public/private status, see [Working with Playlists](/documentation/web-api/concepts/playlists)
type: boolean
snapshot_id:
description: |
The version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version
type: string
tracks:
allOf:
- $ref: "#/components/schemas/PagingPlaylistTrackObject"
description: |
The tracks of the playlist.
type: object
type:
description: |
The object type: "playlist"
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the playlist.
type: string
type: object
x-spotify-docs-type: PlaylistObject
PlaylistOwnerObject:
allOf:
- $ref: "#/components/schemas/PlaylistUserObject"
- properties:
display_name:
description: |
The name displayed on the user's profile. `null` if not available.
nullable: true
type: string
type: object
PlaylistTrackObject:
properties:
added_at:
description: |
The date and time the track or episode was added. _**Note**: some very old playlists may return `null` in this field._
format: date-time
type: string
x-spotify-docs-type: Timestamp
added_by:
allOf:
- $ref: "#/components/schemas/PlaylistUserObject"
description: |
The Spotify user who added the track or episode. _**Note**: some very old playlists may return `null` in this field._
is_local:
description: |
Whether this track or episode is a [local file](/documentation/web-api/concepts/playlists/#local-files) or not.
type: boolean
track:
description: Information about the track or episode.
discriminator:
propertyName: type
oneOf:
- $ref: "#/components/schemas/TrackObject"
- $ref: "#/components/schemas/EpisodeObject"
x-spotify-docs-type: TrackObject | EpisodeObject
type: object
x-spotify-docs-type: PlaylistTrackObject
PlaylistTracksRefObject:
properties:
href:
description: |
A link to the Web API endpoint where full details of the playlist's tracks can be retrieved.
type: string
total:
description: |
Number of tracks in the playlist.
type: integer
type: object
x-spotify-docs-type: PlaylistTracksRefObject
PlaylistUserObject:
properties:
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known public external URLs for this user.
followers:
allOf:
- $ref: "#/components/schemas/FollowersObject"
description: |
Information about the followers of this user.
href:
description: |
A link to the Web API endpoint for this user.
type: string
id:
description: |
The [Spotify user ID](/documentation/web-api/concepts/spotify-uris-ids) for this user.
type: string
type:
description: |
The object type.
enum:
- user
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for this user.
type: string
type: object
x-spotify-docs-type: PlaylistUserObject
PrivateUserObject:
properties:
country:
description: |
The country of the user, as set in the user's account profile. An [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). _This field is only available when the current user has granted access to the [user-read-private](/documentation/web-api/concepts/scopes/#list-of-scopes) scope._
type: string
display_name:
description: |
The name displayed on the user's profile. `null` if not available.
type: string
email:
description: |
The user's email address, as entered by the user when creating their account. _**Important!** This email address is unverified; there is no proof that it actually belongs to the user._ _This field is only available when the current user has granted access to the [user-read-email](/documentation/web-api/concepts/scopes/#list-of-scopes) scope._
type: string
explicit_content:
allOf:
- $ref: "#/components/schemas/ExplicitContentSettingsObject"
description: |
The user's explicit content settings. _This field is only available when the current user has granted access to the [user-read-private](/documentation/web-api/concepts/scopes/#list-of-scopes) scope._
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: Known external URLs for this user.
followers:
allOf:
- $ref: "#/components/schemas/FollowersObject"
description: Information about the followers of the user.
href:
description: |
A link to the Web API endpoint for this user.
type: string
id:
description: |
The [Spotify user ID](/documentation/web-api/concepts/spotify-uris-ids) for the user.
type: string
images:
description: The user's profile image.
items:
$ref: "#/components/schemas/ImageObject"
type: array
product:
description: |
The user's Spotify subscription level: "premium", "free", etc. (The subscription level "open" can be considered the same as "free".) _This field is only available when the current user has granted access to the [user-read-private](/documentation/web-api/concepts/scopes/#list-of-scopes) scope._
type: string
type:
description: |
The object type: "user"
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the user.
type: string
type: object
x-spotify-docs-type: PrivateUserObject
PublicUserObject:
properties:
display_name:
description: |
The name displayed on the user's profile. `null` if not available.
nullable: true
type: string
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known public external URLs for this user.
followers:
allOf:
- $ref: "#/components/schemas/FollowersObject"
description: |
Information about the followers of this user.
href:
description: |
A link to the Web API endpoint for this user.
type: string
id:
description: |
The [Spotify user ID](/documentation/web-api/concepts/spotify-uris-ids) for this user.
type: string
images:
description: |
The user's profile image.
items:
$ref: "#/components/schemas/ImageObject"
type: array
type:
description: |
The object type.
enum:
- user
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for this user.
type: string
type: object
x-spotify-docs-type: PublicUserObject
QueueObject:
properties:
currently_playing:
description: The currently playing track or episode. Can be `null`.
discriminator:
propertyName: type
oneOf:
- $ref: "#/components/schemas/TrackObject"
- $ref: "#/components/schemas/EpisodeObject"
x-spotify-docs-type: TrackObject | EpisodeObject
queue:
description: The tracks or episodes in the queue. Can be empty.
items:
discriminator:
propertyName: type
oneOf:
- $ref: "#/components/schemas/TrackObject"
- $ref: "#/components/schemas/EpisodeObject"
x-spotify-docs-type: TrackObject | EpisodeObject
type: array
type: object
x-spotify-docs-type: QueueObject
RecommendationSeedObject:
properties:
afterFilteringSize:
description: |
The number of tracks available after min\_\* and max\_\* filters have been applied.
type: integer
afterRelinkingSize:
description: |
The number of tracks available after relinking for regional availability.
type: integer
href:
description: |
A link to the full track or artist data for this seed. For tracks this will be a link to a Track Object. For artists a link to an Artist Object. For genre seeds, this value will be `null`.
type: string
id:
description: |
The id used to select this seed. This will be the same as the string used in the `seed_artists`, `seed_tracks` or `seed_genres` parameter.
type: string
initialPoolSize:
description: |
The number of recommended tracks available for this seed.
type: integer
type:
description: |
The entity type of this seed. One of `artist`, `track` or `genre`.
type: string
type: object
x-spotify-docs-type: RecommendationSeedObject
RecommendationsObject:
properties:
seeds:
description: |
An array of recommendation seed objects.
items:
$ref: "#/components/schemas/RecommendationSeedObject"
type: array
tracks:
description: |
An array of track object (simplified) ordered according to the parameters supplied.
items:
$ref: "#/components/schemas/TrackObject"
type: array
required:
- seeds
- tracks
type: object
x-spotify-docs-type: RecommendationsObject
ResumePointObject:
properties:
fully_played:
description: |
Whether or not the episode has been fully played by the user.
type: boolean
resume_position_ms:
description: |
The user's most recent position in the episode in milliseconds.
type: integer
type: object
x-spotify-docs-type: ResumePointObject
SavedAlbumObject:
properties:
added_at:
description: |
The date and time the album was saved
Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ.
If the time is imprecise (for example, the date/time of an album release), an additional field indicates the precision; see for example, release_date in an album object.
format: date-time
type: string
x-spotify-docs-type: Timestamp
album:
allOf:
- $ref: "#/components/schemas/AlbumObject"
description: Information about the album.
type: object
x-spotify-docs-type: SavedAlbumObject
SavedEpisodeObject:
properties:
added_at:
description: |
The date and time the episode was saved.
Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ.
format: date-time
type: string
x-spotify-docs-type: Timestamp
episode:
allOf:
- $ref: "#/components/schemas/EpisodeObject"
description: Information about the episode.
type: object
x-spotify-docs-type: SavedEpisodeObject
SavedShowObject:
properties:
added_at:
description: |
The date and time the show was saved.
Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ.
If the time is imprecise (for example, the date/time of an album release), an additional field indicates the precision; see for example, release_date in an album object.
format: date-time
type: string
x-spotify-docs-type: Timestamp
show:
allOf:
- $ref: "#/components/schemas/SimplifiedShowObject"
description: Information about the show.
type: object
x-spotify-docs-type: SavedShowObject
SavedTrackObject:
properties:
added_at:
description: |
The date and time the track was saved.
Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ.
If the time is imprecise (for example, the date/time of an album release), an additional field indicates the precision; see for example, release_date in an album object.
format: date-time
type: string
x-spotify-docs-type: Timestamp
track:
allOf:
- $ref: "#/components/schemas/TrackObject"
description: Information about the track.
type: object
x-spotify-docs-type: SavedTrackObject
SectionObject:
properties:
confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the section's "designation".
example: 1
maximum: 1
minimum: 0
type: number
duration:
description: The duration (in seconds) of the section.
example: 6.97092
type: number
key:
description: The estimated overall key of the section. The values in this field ranging from 0 to 11 mapping to pitches using standard Pitch Class notation (E.g. 0 = C, 1 = C♯/D♭, 2 = D, and so on). If no key was detected, the value is -1.
example: 9
type: integer
key_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the key. Songs with many key changes may correspond to low values in this field.
example: 0.297
maximum: 1
minimum: 0
type: number
loudness:
description: The overall loudness of the section in decibels (dB). Loudness values are useful for comparing relative loudness of sections within tracks.
example: -14.938
type: number
mode:
description: Indicates the modality (major or minor) of a section, the type of scale from which its melodic content is derived. This field will contain a 0 for "minor", a 1 for "major", or a -1 for no result. Note that the major key (e.g. C major) could more likely be confused with the minor key at 3 semitones lower (e.g. A minor) as both keys carry the same pitches.
enum:
- -1
- 0
- 1
type: number
mode_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the `mode`.
example: 0.471
maximum: 1
minimum: 0
type: number
start:
description: The starting point (in seconds) of the section.
example: 0
type: number
tempo:
description: The overall estimated tempo of the section in beats per minute (BPM). In musical terminology, tempo is the speed or pace of a given piece and derives directly from the average beat duration.
example: 113.178
type: number
tempo_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the tempo. Some tracks contain tempo changes or sounds which don't contain tempo (like pure speech) which would correspond to a low value in this field.
example: 0.647
maximum: 1
minimum: 0
type: number
time_signature:
$ref: "#/components/schemas/TimeSignature"
time_signature_confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the `time_signature`. Sections with time signature changes may correspond to low values in this field.
example: 1
maximum: 1
minimum: 0
type: number
type: object
SegmentObject:
properties:
confidence:
description: |
The confidence, from 0.0 to 1.0, of the reliability of the segmentation. Segments of the song which are difficult to logically segment (e.g: noise) may correspond to low values in this field.
example: 0.435
maximum: 1
minimum: 0
type: number
duration:
description: The duration (in seconds) of the segment.
example: 0.19891
type: number
loudness_end:
description: The offset loudness of the segment in decibels (dB). This value should be equivalent to the loudness_start of the following segment.
example: 0
type: number
loudness_max:
description: The peak loudness of the segment in decibels (dB). Combined with `loudness_start` and `loudness_max_time`, these components can be used to describe the "attack" of the segment.
example: -14.25
type: number
loudness_max_time:
description: The segment-relative offset of the segment peak loudness in seconds. Combined with `loudness_start` and `loudness_max`, these components can be used to desctibe the "attack" of the segment.
example: 0.07305
type: number
loudness_start:
description: The onset loudness of the segment in decibels (dB). Combined with `loudness_max` and `loudness_max_time`, these components can be used to describe the "attack" of the segment.
example: -23.053
type: number
pitches:
description: |
Pitch content is given by a “chroma” vector, corresponding to the 12 pitch classes C, C#, D to B, with values ranging from 0 to 1 that describe the relative dominance of every pitch in the chromatic scale. For example a C Major chord would likely be represented by large values of C, E and G (i.e. classes 0, 4, and 7).
Vectors are normalized to 1 by their strongest dimension, therefore noisy sounds are likely represented by values that are all close to 1, while pure tones are described by one value at 1 (the pitch) and others near 0.
As can be seen below, the 12 vector indices are a combination of low-power spectrum values at their respective pitch frequencies.
![pitch vector](https://developer.spotify.com/assets/audio/Pitch_vector.png)
example:
- 0.212
- 0.141
- 0.294
items:
maximum: 1
minimum: 0
type: number
type: array
start:
description: The starting point (in seconds) of the segment.
example: 0.70154
type: number
timbre:
description: |
Timbre is the quality of a musical note or sound that distinguishes different types of musical instruments, or voices. It is a complex notion also referred to as sound color, texture, or tone quality, and is derived from the shape of a segments spectro-temporal surface, independently of pitch and loudness. The timbre feature is a vector that includes 12 unbounded values roughly centered around 0. Those values are high level abstractions of the spectral surface, ordered by degree of importance.
For completeness however, the first dimension represents the average loudness of the segment; second emphasizes brightness; third is more closely correlated to the flatness of a sound; fourth to sounds with a stronger attack; etc. See an image below representing the 12 basis functions (i.e. template segments).
![timbre basis functions](https://developer.spotify.com/assets/audio/Timbre_basis_functions.png)
The actual timbre of the segment is best described as a linear combination of these 12 basis functions weighted by the coefficient values: timbre = c1 x b1 + c2 x b2 + ... + c12 x b12, where c1 to c12 represent the 12 coefficients and b1 to b12 the 12 basis functions as displayed below. Timbre vectors are best used in comparison with each other.
example:
- 42.115
- 64.373
- -0.233
items:
type: number
type: array
type: object
ShowBase:
properties:
available_markets:
description: |
A list of the countries in which the show can be played, identified by their [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.
items:
type: string
type: array
copyrights:
description: |
The copyright statements of the show.
items:
$ref: "#/components/schemas/CopyrightObject"
type: array
description:
description: |
A description of the show. HTML tags are stripped away from this field, use `html_description` field in case HTML tags are needed.
type: string
explicit:
description: |
Whether or not the show has explicit content (true = yes it does; false = no it does not OR unknown).
type: boolean
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
External URLs for this show.
href:
description: |
A link to the Web API endpoint providing full details of the show.
type: string
html_description:
description: |
A description of the show. This field may contain HTML tags.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the show.
type: string
images:
description: |
The cover art for the show in various sizes, widest first.
items:
$ref: "#/components/schemas/ImageObject"
type: array
is_externally_hosted:
description: |
True if all of the shows episodes are hosted outside of Spotify's CDN. This field might be `null` in some cases.
type: boolean
languages:
description: |
A list of the languages used in the show, identified by their [ISO 639](https://en.wikipedia.org/wiki/ISO_639) code.
items:
type: string
type: array
media_type:
description: |
The media type of the show.
type: string
name:
description: |
The name of the episode.
type: string
publisher:
description: |
The publisher of the show.
type: string
total_episodes:
description: |
The total number of episodes in the show.
type: integer
type:
description: |
The object type.
enum:
- show
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the show.
type: string
required:
- available_markets
- copyrights
- description
- explicit
- external_urls
- href
- html_description
- id
- images
- is_externally_hosted
- languages
- media_type
- name
- publisher
- total_episodes
- type
- uri
type: object
ShowObject:
allOf:
- $ref: "#/components/schemas/ShowBase"
- properties:
episodes:
allOf:
- $ref: "#/components/schemas/PagingSimplifiedEpisodeObject"
description: |
The episodes of the show.
type: object
required:
- episodes
type: object
x-spotify-docs-type: ShowObject
SimplifiedAlbumObject:
allOf:
- $ref: "#/components/schemas/AlbumBase"
- properties:
album_group:
description: |
The field is present when getting an artist's albums. Compare to album_type this field represents relationship between the artist and the album.
enum:
- album
- single
- compilation
- appears_on
example: compilation
type: string
artists:
description: |
The artists of the album. Each artist object includes a link in `href` to more detailed information about the artist.
items:
$ref: "#/components/schemas/SimplifiedArtistObject"
type: array
required:
- artists
type: object
x-spotify-docs-type: SimplifiedAlbumObject
SimplifiedArtistObject:
properties:
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this artist.
href:
description: |
A link to the Web API endpoint providing full details of the artist.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the artist.
type: string
name:
description: |
The name of the artist.
type: string
type:
description: |
The object type.
enum:
- artist
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the artist.
type: string
type: object
x-spotify-docs-type: SimplifiedArtistObject
SimplifiedAudiobookObject:
allOf:
- $ref: "#/components/schemas/AudiobookBase"
- type: object
x-spotify-docs-type: SimplifiedAudiobookObject
SimplifiedChapterObject:
allOf:
- $ref: "#/components/schemas/ChapterBase"
- type: object
type: object
x-spotify-docs-type: SimplifiedChapterObject
SimplifiedEpisodeObject:
allOf:
- $ref: "#/components/schemas/EpisodeBase"
- type: object
type: object
x-spotify-docs-type: SimplifiedEpisodeObject
SimplifiedPlaylistObject:
properties:
collaborative:
description: |
`true` if the owner allows other users to modify the playlist.
type: boolean
description:
description: |
The playlist description. _Only returned for modified, verified playlists, otherwise_ `null`.
type: string
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this playlist.
href:
description: |
A link to the Web API endpoint providing full details of the playlist.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the playlist.
type: string
images:
description: |
Images for the playlist. The array may be empty or contain up to three images. The images are returned by size in descending order. See [Working with Playlists](/documentation/web-api/concepts/playlists). _**Note**: If returned, the source URL for the image (`url`) is temporary and will expire in less than a day._
items:
$ref: "#/components/schemas/ImageObject"
type: array
name:
description: |
The name of the playlist.
type: string
owner:
allOf:
- $ref: "#/components/schemas/PlaylistOwnerObject"
description: |
The user who owns the playlist
public:
description: |
The playlist's public/private status: `true` the playlist is public, `false` the playlist is private, `null` the playlist status is not relevant. For more about public/private status, see [Working with Playlists](/documentation/web-api/concepts/playlists)
type: boolean
snapshot_id:
description: |
The version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version
type: string
tracks:
allOf:
- $ref: "#/components/schemas/PlaylistTracksRefObject"
description: |
A collection containing a link ( `href` ) to the Web API endpoint where full details of the playlist's tracks can be retrieved, along with the `total` number of tracks in the playlist. Note, a track object may be `null`. This can happen if a track is no longer available.
type:
description: |
The object type: "playlist"
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the playlist.
type: string
type: object
x-spotify-docs-type: SimplifiedPlaylistObject
SimplifiedShowObject:
allOf:
- $ref: "#/components/schemas/ShowBase"
- type: object
x-spotify-docs-type: SimplifiedShowObject
SimplifiedTrackObject:
properties:
artists:
description: The artists who performed the track. Each artist object includes a link in `href` to more detailed information about the artist.
items:
$ref: "#/components/schemas/SimplifiedArtistObject"
type: array
available_markets:
description: |
A list of the countries in which the track can be played, identified by their [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.
items:
type: string
type: array
disc_number:
description: The disc number (usually `1` unless the album consists of more than one disc).
type: integer
duration_ms:
description: The track length in milliseconds.
type: integer
explicit:
description: Whether or not the track has explicit lyrics ( `true` = yes it does; `false` = no it does not OR unknown).
type: boolean
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
External URLs for this track.
href:
description: A link to the Web API endpoint providing full details of the track.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the track.
type: string
is_local:
description: |
Whether or not the track is from a local file.
type: boolean
is_playable:
description: |
Part of the response when [Track Relinking](/documentation/web-api/concepts/track-relinking/) is applied. If `true`, the track is playable in the given market. Otherwise `false`.
type: boolean
linked_from:
allOf:
- $ref: "#/components/schemas/LinkedTrackObject"
description: Part of the response when [Track Relinking](/documentation/web-api/concepts/track-relinking/) is applied and is only part of the response if the track linking, in fact, exists. The requested track has been replaced with a different track. The track in the `linked_from` object contains information about the originally requested track.
name:
description: The name of the track.
type: string
preview_url:
description: |
A URL to a 30 second preview (MP3 format) of the track.
type: string
x-spotify-policy-list:
- $ref: "#/components/x-spotify-policy/StandalonePreview"
restrictions:
allOf:
- $ref: "#/components/schemas/TrackRestrictionObject"
description: |
Included in the response when a content restriction is applied.
track_number:
description: |
The number of the track. If an album has several discs, the track number is the number on the specified disc.
type: integer
type:
description: |
The object type: "track".
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the track.
type: string
type: object
x-spotify-docs-type: SimplifiedTrackObject
Tempo:
description: |
The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo is the speed or pace of a given piece and derives directly from the average beat duration.
example: 118.211
format: float
type: number
x-spotify-docs-type: Float
TimeIntervalObject:
properties:
confidence:
description: The confidence, from 0.0 to 1.0, of the reliability of the interval.
example: 0.925
maximum: 1
minimum: 0
type: number
duration:
description: The duration (in seconds) of the time interval.
example: 2.18749
type: number
start:
description: The starting point (in seconds) of the time interval.
example: 0.49567
type: number
type: object
TimeSignature:
description: An estimated time signature. The time signature (meter) is a notational convention to specify how many beats are in each bar (or measure). The time signature ranges from 3 to 7 indicating time signatures of "3/4", to "7/4".
example: 4
maximum: 7
minimum: 3
type: integer
TrackObject:
properties:
album:
allOf:
- $ref: "#/components/schemas/SimplifiedAlbumObject"
description: |
The album on which the track appears. The album object includes a link in `href` to full information about the album.
artists:
description: |
The artists who performed the track. Each artist object includes a link in `href` to more detailed information about the artist.
items:
$ref: "#/components/schemas/ArtistObject"
type: array
available_markets:
description: |
A list of the countries in which the track can be played, identified by their [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.
items:
type: string
type: array
disc_number:
description: |
The disc number (usually `1` unless the album consists of more than one disc).
type: integer
duration_ms:
description: |
The track length in milliseconds.
type: integer
explicit:
description: |
Whether or not the track has explicit lyrics ( `true` = yes it does; `false` = no it does not OR unknown).
type: boolean
external_ids:
allOf:
- $ref: "#/components/schemas/ExternalIdObject"
description: |
Known external IDs for the track.
external_urls:
allOf:
- $ref: "#/components/schemas/ExternalUrlObject"
description: |
Known external URLs for this track.
href:
description: |
A link to the Web API endpoint providing full details of the track.
type: string
id:
description: |
The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the track.
type: string
is_local:
description: |
Whether or not the track is from a local file.
type: boolean
is_playable:
description: |
Part of the response when [Track Relinking](/documentation/web-api/concepts/track-relinking) is applied. If `true`, the track is playable in the given market. Otherwise `false`.
type: boolean
linked_from:
description: |
Part of the response when [Track Relinking](/documentation/web-api/concepts/track-relinking) is applied, and the requested track has been replaced with different track. The track in the `linked_from` object contains information about the originally requested track.
type: object
name:
description: |
The name of the track.
type: string
popularity:
description: |
The popularity of the track. The value will be between 0 and 100, with 100 being the most popular.<br/>The popularity of a track is a value between 0 and 100, with 100 being the most popular. The popularity is calculated by algorithm and is based, in the most part, on the total number of plays the track has had and how recent those plays are.<br/>Generally speaking, songs that are being played a lot now will have a higher popularity than songs that were played a lot in the past. Duplicate tracks (e.g. the same track from a single and an album) are rated independently. Artist and album popularity is derived mathematically from track popularity. _**Note**: the popularity value may lag actual popularity by a few days: the value is not updated in real time._
type: integer
preview_url:
description: |
A link to a 30 second preview (MP3 format) of the track. Can be `null`
type: string
x-spotify-policy-list:
- $ref: "#/components/x-spotify-policy/StandalonePreview"
restrictions:
allOf:
- $ref: "#/components/schemas/TrackRestrictionObject"
description: |
Included in the response when a content restriction is applied.
track_number:
description: |
The number of the track. If an album has several discs, the track number is the number on the specified disc.
type: integer
type:
description: |
The object type: "track".
enum:
- track
type: string
uri:
description: |
The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the track.
type: string
type: object
x-spotify-docs-type: TrackObject
TrackRestrictionObject:
properties:
reason:
description: |
The reason for the restriction. Supported values:
- `market` - The content item is not available in the given market.
- `product` - The content item is not available for the user's subscription type.
- `explicit` - The content item is explicit and the user's account is set to not play explicit content.
Additional reasons may be added in the future.
**Note**: If you use this field, make sure that your application safely handles unknown values.
type: string
type: object
x-spotify-docs-type: TrackRestrictionObject
TuneableTrackObject:
properties:
acousticness:
description: |
A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic.
format: float
type: number
x-spotify-docs-type: Float
danceability:
description: |
Danceability describes how suitable a track is for dancing based on a combination of musical elements including tempo, rhythm stability, beat strength, and overall regularity. A value of 0.0 is least danceable and 1.0 is most danceable.
format: float
type: number
x-spotify-docs-type: Float
duration_ms:
description: |
The duration of the track in milliseconds.
type: integer
energy:
description: |
Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity. Typically, energetic tracks feel fast, loud, and noisy. For example, death metal has high energy, while a Bach prelude scores low on the scale. Perceptual features contributing to this attribute include dynamic range, perceived loudness, timbre, onset rate, and general entropy.
format: float
type: number
x-spotify-docs-type: Float
instrumentalness:
description: |
Predicts whether a track contains no vocals. "Ooh" and "aah" sounds are treated as instrumental in this context. Rap or spoken word tracks are clearly "vocal". The closer the instrumentalness value is to 1.0, the greater likelihood the track contains no vocal content. Values above 0.5 are intended to represent instrumental tracks, but confidence is higher as the value approaches 1.0.
format: float
type: number
x-spotify-docs-type: Float
key:
$ref: "#/components/schemas/Key"
liveness:
description: |
Detects the presence of an audience in the recording. Higher liveness values represent an increased probability that the track was performed live. A value above 0.8 provides strong likelihood that the track is live.
format: float
type: number
x-spotify-docs-type: Float
loudness:
$ref: "#/components/schemas/Loudness"
mode:
$ref: "#/components/schemas/Mode"
popularity:
description: |
The popularity of the track. The value will be between 0 and 100, with 100 being the most popular. The popularity is calculated by algorithm and is based, in the most part, on the total number of plays the track has had and how recent those plays are. _**Note**: When applying track relinking via the `market` parameter, it is expected to find relinked tracks with popularities that do not match `min_*`, `max_*`and `target_*` popularities. These relinked tracks are accurate replacements for unplayable tracks with the expected popularity scores. Original, non-relinked tracks are available via the `linked_from` attribute of the [relinked track response](/documentation/web-api/concepts/track-relinking)._
format: float
type: number
x-spotify-docs-type: Float
speechiness:
description: |
Speechiness detects the presence of spoken words in a track. The more exclusively speech-like the recording (e.g. talk show, audio book, poetry), the closer to 1.0 the attribute value. Values above 0.66 describe tracks that are probably made entirely of spoken words. Values between 0.33 and 0.66 describe tracks that may contain both music and speech, either in sections or layered, including such cases as rap music. Values below 0.33 most likely represent music and other non-speech-like tracks.
format: float
type: number
x-spotify-docs-type: Float
tempo:
$ref: "#/components/schemas/Tempo"
time_signature:
$ref: "#/components/schemas/TimeSignature"
valence:
description: |
A measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track. Tracks with high valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low valence sound more negative (e.g. sad, depressed, angry).
format: float
type: number
x-spotify-docs-type: Float
type: object
x-spotify-docs-type: TuneableTrackObject
securitySchemes:
oauth_2_0:
description: Spotify supports OAuth 2.0 for authenticating all API requests.
flows:
authorizationCode:
authorizationUrl: https://accounts.spotify.com/authorize
scopes:
app-remote-control: |
Communicate with the Spotify app on your device.
playlist-modify-private: |
Manage your private playlists.
playlist-modify-public: |
Manage your public playlists.
playlist-read-collaborative: |
Access your collaborative playlists.
playlist-read-private: |
Access your private playlists.
streaming: |
Play content and control playback on your other devices.
ugc-image-upload: |
Upload images to Spotify on your behalf.
user-follow-modify: |
Manage your saved content.
user-follow-read: |
Access your followers and who you are following.
user-library-modify: |
Manage your saved content.
user-library-read: |
Access your saved content.
user-modify-playback-state: |
Control playback on your Spotify clients and Spotify Connect devices.
user-read-currently-playing: |
Read your currently playing content.
user-read-email: |
Get your real email address.
user-read-playback-position: |
Read your position in content you have played.
user-read-playback-state: |
Read your currently playing content and Spotify Connect devices information.
user-read-private: |
Access your subscription details.
user-read-recently-played: |
Access your recently played items.
user-top-read: |
Read your top artists and content.
tokenUrl: https://accounts.spotify.com/api/token
type: oauth2
x-spotify-policy:
$ref: ../policies.yaml
Attribution: {}
Broadcasting: {}
CommercialStreaming: {}
ContentAlteration: {}
Downloading: {}
MultipleIntegrations: {}
StandalonePreview: {}
Synchronization: {}
VisualAlteration: {}
metadataPolicyList:
- $ref: "#/components/x-spotify-policy/Downloading"
- $ref: "#/components/x-spotify-policy/VisualAlteration"
- $ref: "#/components/x-spotify-policy/Attribution"
playerPolicyList:
- $ref: "#/components/x-spotify-policy/CommercialStreaming"
- $ref: "#/components/x-spotify-policy/ContentAlteration"
- $ref: "#/components/x-spotify-policy/Synchronization"
- $ref: "#/components/x-spotify-policy/Broadcasting"