# Interzoid Get Country Standard

> Interzoid Get Country Standard is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Standardizes a country name or abbreviation input into its canonical, full country name

## Facts

- Endpoint: GET https://api.interzoid.com/getcountrystandard
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-country-standard-7d15cb24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T0JR0j_1do7xc2aUa89Vj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-get-country-standard-7d15cb24
```

Example prompt: Can you standardize the country name 'UAE' to its full official form so I can clean up the country field in my customer database?

## When to prefer this

Use this endpoint when you need to normalize or standardize free-form, abbreviated, or inconsistent country names into their full official forms — especially useful for data quality pipelines, CRM/ERP cleanup, MDM initiatives, or any workflow where country data comes from multiple inconsistent sources.

## Known failure modes

- Invalid or unrecognized country input returns an error code
- Missing required country parameter results in a bad request error
- Expired or invalid API key returns an authentication error
- Ambiguous abbreviation may resolve to unexpected country

## How this service works

Standardize a country name to a consistent spelling. Handles variations like 'Great Britain', 'UK', 'United Kingdom', 'Britain' and normalizes to a canonical form.

## Output

Returns a JSON object with a 'Code' field indicating success or failure, a 'Credits' field showing remaining API credits, and a 'CountryStandard' field containing the full standardized country name (e.g., 'United Arab Emirates').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country"
     ],
     "properties": {
      "country": {
       "type": "string",
       "description": "Country name to standardize"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "CountryStandard": "United Arab Emirates"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-country-standard-7d15cb24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
