# padelmaps.org Wikipedia Search

> padelmaps.org Wikipedia Search 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).

Search Wikipedia articles by keyword or topic and retrieve relevant article results

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/wiki/search
- 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-2ee3b484
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eSK-7ofpCGxwwT3QDfwbQ

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

Example prompt: Search Wikipedia for articles about the French Revolution and give me the top results.

## When to prefer this

Use this endpoint when an agent needs to retrieve encyclopedic or factual reference information from Wikipedia programmatically, especially in a paid x402 micropayment context where a quick keyword-based Wikipedia search is needed without scraping or using the Wikipedia API directly.

## Known failure modes

- No results found for an obscure or misspelled query
- Payment failure if USDC balance is insufficient
- Rate limiting or API unavailability returning an error
- Empty or ambiguous query returning irrelevant results

## How this service works

Search Wikipedia articles

## Output

A list of Wikipedia article matches for the given query, likely including article titles, snippets or summaries, and links to the full Wikipedia pages.

## Example request

```json
{
 "query": "machine learning"
}
```

## 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": [
      "query"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max results (default 10, max 50)"
      },
      "query": {
       "type": "string",
       "description": "Wikipedia search query. Alias: 'q'"
      },
      "language": {
       "type": "string",
       "description": "Wikipedia language code (default 'en')"
      }
     }
    },
    "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": {
      "query": {
       "type": "string"
      },
      "cached": {
       "type": "boolean"
      },
      "results": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

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