get https://backstage.taboola.com/backstage/api/1.0/resources/countries/us/dma
Get a list of DMAs in the US (e.g. for sub-country targeting).
DMA’s represent major metropolitans in the US - they are used for more granular targeting than regions (states).
Example - get DMAs in the US:
GET /backstage/api/1.0/resources/countries/US/dma
{
"results": [
{
"name": "600",
"value": "Corpus Christi"
},
{
"name": "609",
"value": "Saint Louis"
},
{
"name": "605",
"value": "Topeka"
},
{
"name": "606",
"value": "Dothan"
},
{
"name": "602",
"value": "Chicago"
}
// Additional rows (objects) omitted...
]
// Additional detail omitted...
}
US Specific
DMAs are US specific. If used with another country, the API returns a JSON object with 404 Not Found.