# Interzoid Get Country Info API

> Interzoid Get Country Info API 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-14).

Returns comprehensive country metadata — calling code, currency, internet TLD, ISO codes, and more — for a given country name or code.

## Facts

- Endpoint: GET https://api.interzoid.com/getcountryinfo
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-country-info-api-0a9fa323
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o3SdsIj-wUXobycklqooU

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-info-api-0a9fa323
```

Example prompt: Can you look up all the country info for Germany — I need the calling code, currency, ISO codes, and internet TLD in one shot?

## When to prefer this

Use this endpoint when you need a comprehensive set of country metadata in a single call — especially calling codes, currency info, and ISO codes together — rather than querying multiple separate APIs. Ideal for CRM/ERP data enrichment, international form validation, or standardizing country references across datasets.

## Known failure modes

- Invalid or unrecognized country name returns a failure Code
- Missing country parameter returns an error
- Insufficient credits returns a credits-exhausted response
- Ambiguous country name may not resolve correctly

## How this service works

Standardize a country name and return additional country information including ISO codes, currency details, internet code, and international calling code.

## Output

A JSON object containing: Code (success/failure), CallingCode (e.g. +49), CurrencyCode (e.g. EUR), CurrencyName (e.g. Euro), CurrencySymbol (e.g. €), CurrencySubUnit (e.g. cent), InternetCode (e.g. .de), TwoLetterCode (e.g. DE), ThreeLetterCode (e.g. DEU), ThreeDigitCode (e.g. 276), CountryStandard (standardized country name), and Credits remaining.

## 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 (in any language or format)"
      }
     }
    }
   },
   "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",
  "CallingCode": "+49",
  "CurrencyCode": "EUR",
  "CurrencyName": "Euro",
  "InternetCode": ".de",
  "TwoLetterCode": "DE",
  "CurrencySymbol": "€",
  "ThreeDigitCode": "276",
  "CountryStandard": "Germany",
  "CurrencySubUnit": "cent",
  "ThreeLetterCode": "DEU"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-country-info-api-0a9fa323/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)
