# LAX 48-Hour Weather Delay Risk

> LAX 48-Hour Weather Delay Risk is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns 6-hour block weather-driven flight delay risk scores for Los Angeles International Airport (LAX) over the next 48 hours, based on wind gusts, convection, precipitation, and cloud cover forecasts.

## Facts

- Endpoint: GET https://x402-factory.com/v1/aviation/delay-risk/LAX
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lax-48-hour-weather-delay-risk-46138ed2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jh0RIQhGV6hQGN_lRRW7h

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 lax-48-hour-weather-delay-risk-46138ed2
```

Example prompt: What's the weather delay risk at LAX over the next 48 hours — are there any high-risk windows I should know about before my flight tomorrow evening?

## When to prefer this

Choose this endpoint when you need a pre-computed, aviation-specific delay risk assessment for LAX specifically — it saves you the work of ingesting raw forecast data and translating wind, precipitation, and convection values into operational delay risk. Prefer it over generic weather APIs when the user's question is about flight delay likelihood rather than raw atmospheric conditions.

## Known failure modes

- Forecast data unavailable from upstream weather models — may return a 503 or degraded response
- Stale forecast if model hasn't updated recently — check meta field for data freshness
- Payment failure (402 Not Paid) if USDC payment header is missing or insufficient
- Invalid or missing query parameters returning a 400 error

## How this service works

LAX weather delay risk for the next 48 hours — Weather-driven delay risk for Los Angeles International (LAX) over the next 48 hours: 6-hour risk scores from forecast wind gusts, convective potential, winter and sustained precipitation, and heavy cloud cover at the field. Same shape as the generic delay-risk endpoint, bound to LAX.

## Output

Returns an array of 6-hour time blocks covering the next 48 hours, each with a risk_score (0–1), a list of driver strings (e.g. 'wind gusts', 'convective potential', 'heavy precipitation', 'cloud cover'), window_start and window_end timestamps, plus an overall verdict string summarizing the delay outlook.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "blocks",
        "verdict"
       ],
       "properties": {
        "blocks": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "window_start",
           "window_end",
           "risk_score",
           "drivers"
          ],
          "properties": {
           "drivers": {
            "type": "array",
            "items": {
             "type": "string"
            }
           },
           "risk_score": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "window_end": {
            "type": "string"
           },
           "window_start": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "verdict": {
         "type": "string"
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lax-48-hour-weather-delay-risk-46138ed2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
