Reference Data
Companies
v1

Get Countries with Regions

Returns the full list of countries with their administrative regions.

Credit Note: This endpoint does not consume credits.

:::info Requires the companies:read OAuth2 scope. :::

get/v1/countries

Query parameters

account_idstring required

The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.

Response

Countries with their administrative regions

Example response

{
  "data": [
    {
      "type": "country",
      "id": "AT",
      "attributes": {
        "code": "AT",
        "name": "Austria",
        "regions": [
          {
            "code": "AT11",
            "name": "Burgenland"
          }
        ]
      }
    }
  ],
  "meta": {
    "request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
  }
}

Changes