Return all the sites available for a user

GET /ext/api/v1/sites/

Headers

  • X-Fields string(mask)

    An optional fields mask

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • id integer
    • name string

      Site Name

GET /ext/api/v1/sites/
curl \
 --request GET 'https://api.spotipo.com/ext/api/v1/sites/' \
 --header "Authentication-Token: $API_KEY" \
 --header "X-Fields: string"
Response examples (200)
[
  {
    "id": 42,
    "name": "string"
  }
]