ISO Code Endpoints
Lookup Country by ISO Code
Find a country by ISO 3166-1 alpha-2, alpha-3, or numeric code
GET
Look up a single country by any one of the three ISO 3166-1 codes: 2-letter (alpha-2), 3-letter (alpha-3), or 3-digit numeric. Exactly one query parameter must be provided.
This is the canonical lookup when you have an ISO code from an external system (payment gateway, geolocation service, address parser) and need to resolve it to the country record.
Availability: Starter plan and above. Returns
403 on Community plan.Responses are cached server-side for 1 hour. The cache slot is shared with
/v1/iso/country/convert — warming the cache via one endpoint serves the other for free. Numeric codes 4 and 004 resolve to the same cache slot.Authentication
Your API key for authentication
Query Parameters
Provide exactly one of the three. Sending two or zero returns400.
ISO 3166-1 alpha-2 code, e.g.
US, IN, DE. Case-insensitive (auto-uppercased).ISO 3166-1 alpha-3 code, e.g.
USA, IND, DEU. Case-insensitive.ISO 3166-1 numeric code, 1–3 digits. Accepts padded (
004) and unpadded (4) forms. All-zero values are rejected.Response
Internal CSC country ID — same value used by
/v1/countries/:id and other foreign-key references.Official country name in English.
ISO 3166-1 alpha-2 code (e.g.
"US").ISO 3166-1 alpha-3 code (e.g.
"USA").ISO 3166-1 numeric code, zero-padded to 3 digits (e.g.
"840"). null for entries without an assigned numeric code.Related Endpoints
- Lookup State by ISO Code — same idea for ISO 3166-2 subdivision codes
- Convert ISO Code — translate between alpha-2, alpha-3, and numeric in one call
- Get Country Details — full country record (all fields, tier-gated)