# PadelMaps Countries List

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

Returns the full list of countries supported by PadelMaps, including padel club counts and country slugs for each.

## Facts

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

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-2f7878b1 -d '<json body>'
```

Example prompt: Show me all the countries supported by PadelMaps and how many padel clubs are in each one.

## When to prefer this

Use this endpoint when you need to discover which countries are covered by PadelMaps before drilling into specific venues or cities, or when building a country-picker UI for padel club search. Ideal as a first step before querying padel clubs or venues by location.

## Known failure modes

- Payment failure if USDC balance is insufficient — x402 payment required error
- Network timeout if padelmaps.org is unreachable
- Empty or malformed response if the API is under maintenance

## How this service works

Provides the paid list of countries supported by PadelMaps (x402 v2) for locating padel venues and mapping integrations.

## Output

A JSON object containing a count of supported countries (e.g. 74) and an array of country objects, each with country_name, country_slug, and club_count fields indicating how many padel clubs are registered in that country.

## Example request

```json
{}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json"
     ]
    },
    "body": {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
     "properties": {}
    }
   },
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "countries": {
       "type": "array",
       "description": "List of countries with club counts"
      }
     }
    }
   }
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-2f7878b1/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)
