Keine Ergebnisse gefunden

Probeer een andere of meer specifieke zoekopdracht
Developer Konsole
Vielen Dank für deinen Besuch. Diese Seite ist nur in Englisch verfügbar.

Amazon Music Web API

Web API Station V1.0

Station

Methods for retrieving station meta-data.

Get Station

GET
/stations/{id}
Get Amazon Music meta-data for a single specified station.

Path Parameters

Name Data Type Required Description
id string Yes The Amazon Music catalog ID of the station to retrieve.

Example

curl --request GET '<base url>/v1/stations/A3QXXOBP9MU5LY'
--header 'x-api-key: <your client ID>' \
--header 'Authorization: Bearer <your auth token>'

Response

Amazon Music response object containing:

Name Data Type Required Description
station Station No Data about the Amazon Music station

Example

{
  "data": {
    "station": {
      "id": "A3QXXOBP9MU5LY",
      "name": "Pop Culture Radio",
      "url": "https://music.amazon.com/stations/A3QXXOBP9MU5LY",
      "images": [
        {
          "url": "https://m.media-amazon.com/images/TopGenre.jpg",
          "width": 2400,
          "height": 2400
        },
        {
          "url": "https://m.media-amazon.com/images/G/01/2400x2400_TopGenre.jpg",
          "width": 48,
          "height": 48
        },
        {
          "url": "https://m.media-amazon.com/images/G/01_2400x2400_TopGenre.jpg",
          "width": 1000,
          "height": 1000
        }
      ]
    }
  }
}