# Padel Maps - List Countries with Padel Clubs

> Padel Maps - List Countries with Padel Clubs 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 a list of countries with padel club data available on PadelMaps, including club counts per country.

## Facts

- Endpoint: POST https://padelmaps.org/api/x402r/countries
- 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/padel-maps-list-countries-with-padel-clubs-dcd78564
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nl0TVlyO3xZXFKQM8__RC

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 padel-maps-list-countries-with-padel-clubs-dcd78564 -d '<json body>'
```

Example prompt: Can you show me all the countries where PadelMaps has padel clubs listed, along with how many clubs are in each country?

## When to prefer this

Use this endpoint as a first step when building a padel club discovery flow — it gives you the full list of countries where PadelMaps has data, so you can then drill into a specific country or city. Prefer this over city-level endpoints when you need a global overview or want to let users select a country before searching for clubs.

## Known failure modes

- Payment not provided or invalid x402 payment header — returns 402 Payment Required
- Network timeout or server unavailability — returns 5xx error
- Malformed request body — returns 400 Bad Request
- Empty result if no countries are currently indexed

## How this service works

Discover and rate padel clubs around the world. Find the perfect padel court for your next game.

## Output

A JSON object containing a count of countries and an array of country entries, each with a country name and the number of padel clubs available in that country.

## 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",
     "properties": {}
    },
    "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": {
      "count": {
       "type": "integer"
      },
      "countries": {
       "type": "array",
       "description": "List of countries with club counts"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padel-maps-list-countries-with-padel-clubs-dcd78564/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)
