Spotify Web API
  1. category-player
Spotify Web API
  • category-albums
    • Get Multiple Albums
      GET
    • Get an Album
      GET
    • Get an Album's Tracks
      GET
  • category-artists
    • Get Multiple Artists
      GET
    • Get an Artist
      GET
    • Get an Artist's Albums
      GET
    • Get an Artist's Related Artists
      GET
    • Get an Artist's Top Tracks
      GET
  • category-tracks
    • Get Audio Analysis for a Track
      GET
    • Get Audio Features for Several Tracks
      GET
    • Get Audio Features for a Track
      GET
    • Get Several Tracks
      GET
    • Get a Track
      GET
  • category-browse
    • Get All Categories
    • Get a Category
    • Get a Category's Playlists
    • Get All Featured Playlists
    • Get All New Releases
    • Get Recommendations
    • Get Recommendation Genres
  • category-episodes
    • Get Multiple Episodes
    • Get an Episode
  • category-markets
    • Get Available Markets
  • category-users-profile
    • Get Current User's Profile
    • Get a User's Profile
  • category-library
    • Remove Albums for Current User
    • Get User's Saved Albums
    • Save Albums for Current User
    • Check User's Saved Albums
    • Remove User's Saved Episodes
    • Get User's Saved Episodes
    • Save Episodes for User
    • Check User's Saved Episodes
    • Remove User's Saved Shows
    • Get User's Saved Shows
    • Save Shows for Current User
    • Check User's Saved Shows
    • Remove User's Saved Tracks
    • Get User's Saved Tracks
    • Save Tracks for User
    • Check User's Saved Tracks
  • category-follow
    • Unfollow Artists or Users
    • Get User's Followed Artists
    • Follow Artists or Users
    • Get Following State for Artists/Users
    • Unfollow Playlist
    • Follow a Playlist
    • Check if Users Follow a Playlist
  • category-player
    • Get Information About The User's Current Playback
      GET
    • Transfer a User's Playback
      PUT
    • Get the User's Currently Playing Track
      GET
    • Get a User's Available Devices
      GET
    • Skip User’s Playback To Next Track
      POST
    • Pause a User's Playback
      PUT
    • Start/Resume a User's Playback
      PUT
    • Skip User’s Playback To Previous Track
      POST
    • Add an item to queue
      POST
    • Get Current User's Recently Played Tracks
      GET
    • Set Repeat Mode On User’s Playback
      PUT
    • Seek To Position In Currently Playing Track
      PUT
    • Toggle Shuffle For User’s Playback
      PUT
    • Set Volume For User's Playback
      PUT
  • category-playlists
    • Get a List of Current User's Playlists
    • Get a Playlist
    • Change a Playlist's Details
    • Get a Playlist Cover Image
    • Upload a Custom Playlist Cover Image
    • Remove Items from a Playlist
    • Get a Playlist's Items
    • Add Items to a Playlist
    • Reorder or Replace a Playlist's Items
    • Get a List of a User's Playlists
    • Create a Playlist
  • category-personalization
    • Get a User's Top Artists and Tracks
  • category-search
    • Search for an Item
  • category-shows
    • Get Multiple Shows
    • Get a Show
    • Get a Show's Episodes
  1. category-player

Get a User's Available Devices

Developing
GET
/me/player/devices
category-player
Get information about a user's available devices.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/me/player/devices' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
  "devices": [
    {
      "id": "string",
      "is_active": true,
      "is_private_session": true,
      "is_restricted": true,
      "name": "string",
      "type": "string",
      "volume_percent": 0
    }
  ]
}

Request

Header Params
Authorization
string 
required
A valid access token from the Spotify Accounts service: see the Web API Authorization Guide for details. The access token must have been issued on behalf of a user. The access token must have the user-read-playback-state scope authorized in order to read information.

Responses

🟢200A successful request will return a `200 OK` response code with a json payload that contains the device objects (see below). When no available devices are found, the request will return a 200 OK response with an empty devices list.
application/json
Body
devices
array[object (DeviceObject) {7}] 
optional
A list of 0..n Device objects
id
string 
optional
The device ID.
is_active
boolean 
optional
If this device is the currently active device.
is_private_session
boolean 
optional
If this device is currently in a private session.
is_restricted
boolean 
optional
Whether controlling this device is restricted. At present if this is "true" then no Web API commands will be accepted by this device.
name
string 
optional
The name of the device.
type
string 
optional
Device type, such as "computer", "smartphone" or "speaker".
volume_percent
integer <int32>
optional
The current volume in percent.
🔴500500
Modified at 2022-09-12 10:04:50
Previous
Get the User's Currently Playing Track
Next
Skip User’s Playback To Next Track
Built with