# padelmaps.org Country Info

> padelmaps.org Country Info is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns detailed information about a country given a country name or code

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/countries/info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-0b99d993
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_04QUDDc0uiV1cVLxvtW-q

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 padelmaps-org-0b99d993 -d '<json body>'
```

Example prompt: Can you pull up all the details for Germany — capital, currency, population, languages, and region?

## When to prefer this

Use this endpoint when you need structured reference data about a specific country, such as its capital, currency, language, or population. Prefer this over a general web search when you need clean, machine-readable country metadata. Good for enriching datasets or answering factual geographic questions about nations.

## Known failure modes

- Country name or code not recognized — returns error or empty result
- Ambiguous country name (e.g. 'Congo') may return wrong country or an error
- Network or payment authorization failure returns HTTP error
- Malformed request body returns validation error

## How this service works

Get country information

## Output

Returns structured country data including details such as capital city, population, official languages, currency, geographic region, calling codes, and possibly a flag or ISO codes.

## Example request

```json
{
 "input": {
  "body": {
   "country": "Germany"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "country"
     ],
     "properties": {
      "country": {
       "type": "string",
       "description": "Country name or ISO code. Alias: 'name'. E.g. 'France', 'JP', 'spain'"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "flag": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "cached": {
       "type": "boolean"
      },
      "region": {
       "type": "string"
      },
      "capital": {
       "type": "string"
      },
      "languages": {
       "type": "array"
      },
      "currencies": {
       "type": "array"
      },
      "population": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-0b99d993/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from padelmaps.org](https://www.zero.xyz/host/padelmaps.org/llms.txt)
