# RunwayOracle ORD Edge – Chicago O'Hare Runway Temperature Nowcast

> RunwayOracle ORD Edge – Chicago O'Hare Runway Temperature Nowcast is a paid API for AI agents from runwayoracle.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a real-time calibrated runway pavement temperature nowcast for Chicago O'Hare (KORD), optionally including strike probabilities for a user-specified temperature threshold.

## Facts

- Endpoint: GET https://runwayoracle.com/v1/oracle/v3/ord-edge
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/runwayoracle-ord-edge-chicago-o-hare-runway-temperature-nowcast-f9fb7050
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6iSRIQVEkhUILfOspOnrE

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 runwayoracle-ord-edge-chicago-o-hare-runway-temperature-nowcast-f9fb7050
```

Example prompt: What's the current runway pavement temperature nowcast at Chicago O'Hare (KORD), and what's the probability it's above 32°F?

## When to prefer this

Choose this endpoint when you need a real-time, high-accuracy runway pavement temperature estimate specifically for Chicago O'Hare (KORD), especially when you also want calibrated probability that temperature is above or below a specific strike threshold. Prefer this over generic weather APIs when precision surface temperature (not air temperature) and calibrated uncertainty estimates matter, such as for aviation operations, derivative pricing, or de-icing decision support.

## Known failure modes

- Live telemetry unavailable — falls back to degraded model (OOS RMSE 1.62°F) at reduced cost ($0.01)
- strikeF parameter out of range (-80..140°F) — likely rejected or ignored
- Payment not received — x402 payment required before response is returned
- Network or upstream sensor outage — no nowcast available

## How this service works

Chicago weather forecast API: live temperature nowcast and daily high forecast for Chicago O'Hare (KORD), with calibrated probability the temperature ends above/below any Fahrenheit strike. Built for AI agents trading weather prediction markets or needing real-time weather data. $0.05 with live 3h thermal-memory telemetry (out-of-sample nowcast RMSE 1.04F); $0.01 degraded fallback (RMSE 1.37F). Free catalog: https://runwayoracle.com/catalog.json. Model-conditional estimates; not financial advice.

## Output

Returns a calibrated runway surface temperature nowcast for KORD using live 3-hour thermal-memory telemetry (out-of-sample RMSE ~1.07°F). If a strikeF query parameter is supplied, also returns model-calibrated P(above strike) and P(below strike) probabilities. Falls back to a degraded model (RMSE ~1.62°F) if live telemetry is unavailable.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "strikeF": {
       "type": "number",
       "description": "Optional strike temperature in degrees F (-80..140); response then includes calibrated P(above)/P(below)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/runwayoracle-ord-edge-chicago-o-hare-runway-temperature-nowcast-f9fb7050/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from runwayoracle.com](https://www.zero.xyz/host/runwayoracle.com/llms.txt)
