cloro WebsiteAPI Get an API key
API Reference › Utilities › List of countries

List of countries

Retrieve the set of geographies you can target when scheduling monitors, expressed as ISO 3166-1 alpha-2 codes and optionally narrowed to a single AI provider.

GET https://api.cloro.cloud/v1/countries

Overview

This utility endpoint reports every country that cloro is able to run monitoring queries against. Each entry is a two-letter ISO 3166-1 alpha-2 code, the same identifier you pass when creating monitor tasks. Because coverage can differ from one AI provider to another, you may supply a model value to receive only the countries that are currently available for that provider. When the parameter is omitted, the full, provider-agnostic list is returned.

Query parameters

FieldTypeDescription
modelstringOptional. Restricts the response to countries supported by a single AI provider. Omit it to list every supported country. Accepted values: aimode, aioverview, chatgpt, copilot, gemini, google, perplexity.

No path parameters or request body are required. Authentication is provided through a Bearer token in the Authorization header.

Response fields

FieldTypeDescription
(root)array<string>A flat JSON array of ISO 3166-1 alpha-2 country codes supported for the requested scope.

Response example

[
  "AF",
  "AX",
  "AL",
  "DZ",
  "AS",
  "AD",
  "AO",
  "AR",
  "AU",
  "AT",
  "US",
  "GB"
]

Notes