# OyaPicks Prediction Market Probability History

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

Returns the historical probability (price) trajectory of a specific OyaPicks prediction market over time

## Facts

- Endpoint: GET https://oyapicks.app/api/x402/probability-history
- Price: $0.03/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-probability-history-8a17608e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U6rYV112ckZcBrQtPWk4s

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-probability-history-8a17608e
```

Example prompt: Can you pull up the probability history for the OyaPicks market on whether the Fed will cut rates in Q3 — I want to see how the odds have moved over time?

## When to prefer this

Use this endpoint when you need to understand how a prediction market's probability has evolved over time — ideal for trend analysis, charting price movement, detecting momentum shifts, or auditing a market's history. Prefer this over the movers or volume-spike endpoints when you already know the specific market you care about and want its full probability timeline rather than a ranked list.

## Known failure modes

- Market identifier not found — returns error if the specified market does not exist
- Invalid or missing market ID parameter — returns 400-level error
- Market too new — insufficient history to return meaningful time-series data
- Payment failure — x402 payment of $0.03 USDC not processed, returns 402
- Rate limiting if too many requests in a short window

## How this service works

OyaPicks: a prediction market's probability (price) over time

## Output

A time-series of probability values (prices) for the specified prediction market, showing how the market's implied probability has changed over time, including timestamps and corresponding probability percentages.

## 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-probability-history-8a17608e/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)
