as

Settings
Sign out
Notifications
Alexa
亚马逊应用商店
AWS
文档
Support
Contact Us
My Cases
感谢您的访问。此页面目前仅提供英语版本。我们正在开发中文版本。谢谢您的理解。

Amazon Music Web API

Web API Market V1.0

Market

Methods related to determining the Amazon Music region/market.

Get Markets

GET
/markets
Authorization Scope: [music::catalog]
Get the list of markets where the Amazon Music service is available.

Example

curl --request GET '<base url>/v1/markets' \
--header 'x-api-key: <your security profile ID>' \
--header 'Authorization: Bearer <your auth token>'

Response

Amazon Music response object containing:

Name Data Type Required Description
markets Market[] No A list of supported Amazon Music markets

Example

{
  "data": {
    "markets": [
      {
        "id": "AR",
        "name": "Argentina"
      },
      {
        "id": "BE",
        "name": "Belgium"
      },
      {
        "id": "BG",
        "name": "Bulgaria"
      }
    ]
  }
}