# LGA Weather Delay Risk (48-Hour Forecast)

> LGA Weather Delay Risk (48-Hour Forecast) 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 delay risk scores for New York LaGuardia (LGA) airport over the next 48 hours, based on wind gusts, convective activity, precipitation, and cloud cover.

## Facts

- Endpoint: GET https://x402-factory.com/v1/aviation/delay-risk/LGA
- 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/lga-weather-delay-risk-48-hour-forecast-91a4d483
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__AVQuCKYioQMqtL7WDf7O

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 lga-weather-delay-risk-48-hour-forecast-91a4d483
```

Example prompt: What's the weather delay risk at LaGuardia airport over the next 48 hours — break it down by 6-hour windows and tell me which conditions are driving the risk?

## When to prefer this

Use this endpoint when you need a pre-computed, airport-specific delay risk forecast for LGA without needing to supply coordinates or airport parameters. Ideal for agents handling New York-area travel planning, operations dashboards, or rebooking decisions where LGA is the specific origin or destination. For other airports, use the sibling endpoints (ORD, SFO, MIA, etc.). For arbitrary locations or custom weather event probabilities, prefer the generic probability endpoint.

## Known failure modes

- Stale forecast data if NWS or upstream model feed is delayed
- No differentiation for specific terminals or runways at LGA
- Risk scores may not reflect ground operations or ATC staffing delays
- HTTP 402 if payment is not provided or fails
- Generic wind/convective thresholds may not match airline-specific delay thresholds

## How this service works

LGA weather delay risk for the next 48 hours — Weather-driven delay risk for New York LaGuardia (LGA) 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 LGA.

## Output

A JSON object containing an array of 6-hour time window blocks for the next 48 hours, each with a risk_score (0–1), window start/end timestamps, and a list of meteorological drivers (e.g. wind gusts, convective potential, winter precipitation, sustained precipitation, heavy cloud cover). Also includes an overall string verdict summarizing the delay risk 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/lga-weather-delay-risk-48-hour-forecast-91a4d483/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)
