# SixPath Country Info

> SixPath Country Info is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.095663/call, status unknown (last checked 2026-09-14).

Returns detailed information about a country given its country code

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/country-info
- Price: $0.095663/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-country-info-eb5c75ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YiDMASITbUuK13jrKkxxv

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 sixpath-country-info-eb5c75ed -d '<json body>'
```

Example prompt: Can you look up the country info for the code 'DE' — things like the capital, currency, and population?

## When to prefer this

Use this endpoint when you need to enrich data with country-level details given a country code (e.g. ISO alpha-2 like 'US', 'FR', 'JP'). Prefer it for lightweight, per-call country lookups without needing a full geospatial API. It fits well in workflows where country codes appear in user data and need to be resolved to human-readable country profiles.

## Known failure modes

- Invalid or unrecognized country code returns an error or empty result
- Missing 'code' field in request body causes a validation error
- Unsupported code format (e.g. numeric instead of ISO alpha-2) may return no results
- Payment failure via x402 protocol results in 402 Payment Required response
- Network or server errors on Vercel deployment may return 5xx responses

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

A JSON object containing details about the specified country, likely including name, capital city, currency, population, region, and other geographic or demographic metadata associated with the given country code.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "code": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-country-info-eb5c75ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
