# OyaPicks Prediction Market Keyword Search

> OyaPicks Prediction Market Keyword Search is a paid API for AI agents from oyapicks.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Searches live prediction markets by keyword, returning matching markets with current prices

## Facts

- Endpoint: GET https://oyapicks.app/api/x402/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oyapicks-prediction-market-keyword-search-7c5f9dae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C9lXGIFgkDKpMoDo3h4Vx

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 oyapicks-prediction-market-keyword-search-7c5f9dae
```

Example prompt: Search OyaPicks for live prediction markets about 'Trump tariffs' and show me what markets are available with their current prices.

## When to prefer this

Use this endpoint when you need to discover and price prediction markets on a specific topic or keyword. Ideal for agents that need to answer questions like 'what do prediction markets say about X?' or quickly surface relevant markets for a given subject. Prefer this over the volume or movers endpoints when the user has a specific topic in mind rather than wanting trending or volatile markets.

## Known failure modes

- No markets found for the given keyword — returns empty result set
- Invalid or missing query parameter — returns error response
- Payment not received or insufficient USDC — returns 402 Payment Required
- Service temporarily unavailable — returns 5xx error
- Keyword too vague — returns many loosely related markets

## How this service works

OyaPicks: keyword search of live prediction markets with prices

## Output

A list of prediction markets matching the keyword, each with market title, current price/probability, and related metadata such as market identifiers and trading details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "disclaimer": "Informational only. Not financial advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oyapicks-prediction-market-keyword-search-7c5f9dae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oyapicks.app](https://www.zero.xyz/host/oyapicks.app/llms.txt)
