# PadelMaps Club Details

> PadelMaps Club Details 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 detailed information about a specific padel club by its identifier

## Facts

- Endpoint: POST https://padelmaps.org/api/x402/club
- 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-0144a8b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N6wYfFBlreh0zyxhy-g9x

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-0144a8b4 -d '<json body>'
```

Example prompt: Can you pull up the full details for the padel club with ID 'club_12345' on PadelMaps — I want to see their address, courts, and opening hours?

## When to prefer this

Use this endpoint when you already have a specific padel club ID (e.g. from the 'get all padel clubs in a city' endpoint) and need full details about that club. This is a detail/profile lookup, not a search — prefer it after a search has returned candidate clubs and you need rich data on one specific venue.

## Known failure modes

- Invalid or unknown club ID returns a 404 or empty result
- Missing required club ID parameter returns a 400 error
- Payment failure via x402 protocol prevents access
- Network timeout if the upstream database is slow
- Club may have been removed or deactivated

## How this service works

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

## Output

A structured object containing detailed information about the requested padel club, likely including club name, address, phone number, number and type of courts, facilities/amenities, opening hours, and possibly ratings or booking links.

## Example request

```json
{
 "input": {
  "body": {
   "club_id": 1238,
   "country": "ES"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "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": {
      "club_id": {
       "type": "integer",
       "description": "Club ID (use this OR name), e.g., 1238"
      },
      "name": {
       "type": "string",
       "description": "Club name to search (use this OR club_id), e.g., 'La Moraleja Padel Club'"
      },
      "city": {
       "type": "string",
       "description": "City to narrow name search, e.g., 'Madrid'"
      },
      "country": {
       "type": "string",
       "description": "Country name or ISO code, e.g., 'spain' or 'ES'"
      }
     }
    }
   },
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "integer"
      },
      "name": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "latitude": {
       "type": "number"
      },
      "longitude": {
       "type": "number"
      },
      "google_rating": {
       "type": "number"
      },
      "indoor_courts": {
       "type": "integer"
      },
      "outdoor_courts": {
       "type": "integer"
      }
     }
    }
   }
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

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

## More

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