HAQM Music Web API
Web API Market V1.0
Important:
These HAQM Music APIs are currently in a closed Beta. Please check back soon for updates.
Important:
These HAQM 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 HAQM Music region/market.
Get Markets
GET
/markets
Authorization Scope: [music::catalog]
Get the list of markets where the HAQM 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
HAQM Music response object containing:
Name | Data Type | Required | Description |
---|---|---|---|
markets | Market[] | No | A list of supported HAQM Music markets |
Example
{
"data": {
"markets": [
{
"id": "AR",
"name": "Argentina"
},
{
"id": "BE",
"name": "Belgium"
},
{
"id": "BG",
"name": "Bulgaria"
}
]
}
}