cURL
curl --request POST \ --url https://api.globalwebindex.com/v2/locations/filter \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "include": { "regions": true }, "namespaces": [ { "code": "<string>" } ], "waves": [ { "code": "<string>" } ] } '
{ "locations": [ { "accessible": true, "code": "<string>", "id": "<string>", "iso_code": "<string>", "name": "<string>", "namespaces": [ { "code": "<string>", "wave_codes": [ "<string>" ] } ], "region": { "area": "<string>", "code": "<string>", "id": "<string>", "name": "<string>" } } ] }
Retrieve accessible locations that satisfy filter criteria.
request for filter
Show child attributes
Namespace codes to filter locations by.
Wave codes to filter locations by.
details about locations
List of locations found using the filter criteria.
Was this page helpful?