Consola del desarrollador
Gracias por tu visita. Esta página solo está disponible en inglés.

HAQM Music Web API

Web API Market V1.0

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"
      }
    ]
  }
}