GET
/
v1
/
countries
curl --request GET \
  --url https://api.adclear.ai/v1/countries \
  --header 'Authorization: Bearer <token>'
{
  "countries": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174002",
      "name": "United Kingdom"
    },
    {
      "id": "123e4567-e89b-12d3-a456-426614174003",
      "name": "United States"
    }
  ]
}

Retrieve all countries associated with your organization. Countries are used to determine which regional compliance rules and advertising guidelines apply to your content evaluation.

Authorizations

Authorization
string
header
required

Use your API key as a Bearer token

Query Parameters

skip
integer
default:0

Number of countries to skip (for pagination)

Required range: x >= 0
limit
integer
default:100

Maximum number of countries to return

Required range: 1 <= x <= 100

Response

200
application/json

List of countries

The response is of type object.