Amazon Music Web API
Web API Market V1.0
Important:
These Amazon Music documents are in preview status. Be aware that content may change. Please use the
developer forum for any questions or comments.
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"
}
]
}
}