# ForgeMesh Country & Currency Info

> ForgeMesh Country & Currency Info is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns comprehensive reference data for any country (by name or ISO code), including currency, capital, languages, calling code, region, area, and neighboring countries, as a single JSON object.

## Facts

- Endpoint: POST https://x402.forgemesh.io/country-currency-info
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-country-currency-info-aea317ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_77SU3pVS29vcFosVlA3Op

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 forgemesh-country-currency-info-aea317ce -d '<json body>'
```

Example prompt: Pull up the full country profile for Japan — I need its currency, capital, calling code, official languages, region, area, and neighboring countries.

## When to prefer this

Use this endpoint when you need a complete, structured country reference record in a single call — ideal for populating currency selectors, determining tax jurisdictions, enriching user or order records with geographic metadata, or avoiding hardcoded static country tables in your application.

## Known failure modes

- Unknown or misspelled country name returns an error or empty result
- Ambiguous abbreviations that don't match a valid ISO code may fail to resolve
- Very small or unrecognized territories may not be in the dataset
- Missing 'country' field in request body causes a validation error

## How this service works

Country reference data keyed by name or ISO code — currency, capital, languages, calling code, region, area, and neighboring countries — returned as one clean JSON object. Useful for populating currency selectors, tax jurisdiction logic, and data-enrichment pipelines without hardcoding a static country table.

## Output

A single clean JSON object containing the country's currency, capital city, official languages, international calling code, geographic region, land area, and list of neighboring countries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "country": {
   "type": "string",
   "description": "name or code, e.g. Japan"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cca2": "JP",
  "flag": "🇯🇵",
  "name": "Japan",
  "region": "Asia",
  "capital": [
   "Tokyo"
  ],
  "currencies": {
   "JPY": {
    "name": "Japanese yen",
    "symbol": "¥"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-country-currency-info-aea317ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
