GET /v1/movers/climate$0.02realtimetier: datacache 60sEngine A — Probability API
The fastest way to see where news is landing in climate and weather: active markets ranked by absolute probability change over your chosen window, with volume surge ratios. Same shape as /v1/movers, pre-filtered to climate and weather markets.
| Name | In | Type | Required | Notes |
|---|---|---|---|---|
window | query | string | no | (default: "24h") — one of "1h", "6h", "24h" |
category | query | string | no | — one of "politics", "economics", "weather", "crypto", "sports", "science-tech", "entertainment" |
min_liquidity | query | number | no | Minimum liquidity_score (0–1) |
limit | query | integer | no | (default: 20) |
curl "https://x402-factory.com/v1/movers/climate?window=24h&limit=10"
{
"data": {
"movers": [
{
"slug": "chicago-high-temp-above-100f-2026-07-22",
"question": "Will the high temperature in Chicago on July 22 be above 100°F?",
"p_now": 0.1349,
"p_prev": 0.1025,
"delta": 0.0324,
"volume_surge_ratio": 0.93,
"category": "weather"
},
{
"slug": "los-angeles-rain-2026-07-25",
"question": "Will it rain in Los Angeles on July 25?",
"p_now": 0.0839,
"p_prev": 0.1142,
"delta": -0.0303,
"volume_surge_ratio": 0.98,
"category": "weather"
},
{
"slug": "seattle-rain-2026-07-23",
"question": "Will it rain in Seattle on July 23?",
"p_now": 0.344,
"p_prev": 0.3678,
"delta": -0.0238,
"volume_surge_ratio": 1.04,
"category": "weather"
},
{
"slug": "phoenix-high-temp-above-115f-2026-07-26",
"question": "Will the high temperature in Phoenix on July 26 be above 115°F?",
"p_now": 0.2882,
"p_prev": 0.3025,
"delta": -0.0143,
"volume_surge_ratio": 0.94,
"category": "weather"
},
{
"slug": "atlantic-named-storms-above-normal-2026",
"question": "Will the 2026 Atlantic season produce more named storms than the 30-year average?",
"p_now": 0.5972,
"p_prev": 0.5844,
"delta": 0.0128,
"volume_surge_ratio": 0.97,
"category": "weather"
},
{
"slug": "highest-temperature-chicago-jul-20-2026-88-89",
"question": "Highest temperature in Chicago on Jul 20, 2026? — 88° to 89°",
"p_now": 0.2803,
"p_prev": 0.2896,
"delta": -0.0093,
"volume_surge_ratio": 1.03,
"category": "weather"
},
{
"slug": "florida-hurricane-landfall-2026-09",
"question": "Will a hurricane make landfall in Florida before September 30?",
"p_now": 0.6192,
"p_prev": 0.6276,
"delta": -0.0084,
"volume_surge_ratio": 1.03,
"category": "weather"
},
{
"slug": "nyc-high-temp-above-95f-2026-07-24",
"question": "Will the high temperature in New York City on July 24 be above 95°F?",
"p_now": 0.329,
"p_prev": 0.333,
"delta": -0.004,
"volume_surge_ratio": 0.98,
"category": "weather"
},
{
"slug": "major-hurricane-us-landfall-2026",
"question": "Will a major hurricane (Category 3+) make US landfall before December 1?",
"p_now": 0.7322,
"p_prev": 0.7317,
"delta": 0.0005,
"volume_surge_ratio": 0.96,
"category": "weather"
},
{
"slug": "houston-high-temp-above-100f-2026-08-02",
"question": "Will the high temperature in Houston on August 2 be above 100°F?",
"p_now": 0.5881,
"p_prev": 0.5882,
"delta": -0.0001,
"volume_surge_ratio": 1.04,
"category": "weather"
}
]
},
"meta": {
"endpoint": "/v1/movers/climate",
"version": "1.0.0",
"generated_at": "2026-08-18T22:54:16.947Z",
"freshness": "realtime",
"sources": [
"kalshi",
"polymarket"
],
"request_id": "req_00000000",
"docs": "https://x402-factory.com/docs/probability.movers.climate",
"data_mode": "live"
}
}data payload){
"type": "object",
"properties": {
"movers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"slug": {
"type": "string"
},
"question": {
"type": "string"
},
"p_now": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"p_prev": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"delta": {
"type": "number"
},
"volume_surge_ratio": {
"type": "number"
},
"category": {
"type": "string"
}
},
"required": [
"slug",
"question",
"p_now",
"p_prev",
"delta",
"volume_surge_ratio",
"category"
],
"additionalProperties": false
}
}
},
"required": [
"movers"
],
"additionalProperties": false
}
The platform wraps every payload in an envelope: { "data": …, "meta": { endpoint, version, generated_at, freshness, sources, request_id, docs, data_mode } }.
Unpaid requests receive 402 with payment requirements (accepts). Pay $0.02 in USDC on Base per call via an X-PAYMENT header — see docs.x402.org. With PAYMENT_MODE=disabled (local dev) the endpoint is open.
| Status | Code | Meaning |
|---|---|---|
| 400 | INVALID_PARAMS | Input failed validation; message lists the offending fields. |
| 404 | NOT_FOUND | No matching resource; suggestion may point to a sibling endpoint. |
| 410 | RESOLVED | Market/event settled; body includes a resolution summary. |
| 503 | STALE_DATA | Upstream feed down; stale data is never silently served beyond 2× cache TTL. |
| 500 | INTERNAL | Our bug. The request_id helps us find it. |