# x402-factory ATL Aviation Delay Risk (48h)

> x402-factory ATL Aviation Delay Risk (48h) 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-15).

Returns 6-hour-window weather-driven flight delay risk scores for Atlanta Hartsfield-Jackson (ATL) over the next 48 hours, covering wind gusts, convective activity, winter precipitation, and cloud cover.

## Facts

- Endpoint: GET https://x402-factory.com/v1/aviation/delay-risk/ATL
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-atl-aviation-delay-risk-48h-14feabbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4NkA0NToN6ELB_eRijYiB

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 x402-factory-atl-aviation-delay-risk-48h-14feabbc
```

Example prompt: What's the weather-driven flight delay risk at Atlanta Hartsfield-Jackson over the next 48 hours — give me the 6-hour breakdown and flag any windows with high convective or wind risk.

## When to prefer this

Choose this endpoint when you need a ready-made, airport-specific (ATL) weather delay risk forecast broken into 6-hour blocks without having to aggregate raw weather data yourself. It is ideal for travel planning agents, logistics systems, and monitoring pipelines that need structured, scored risk data rather than raw meteorological readings. Prefer it over generic weather APIs when the question is specifically about operational flight delay likelihood at Atlanta Hartsfield-Jackson.

## Known failure modes

- Payment not included or invalid x402 payment — 402 response requiring USDC payment
- Forecast data temporarily unavailable from upstream weather provider — 503 or degraded response
- Rate limiting if called too frequently — 429 response
- Malformed request (e.g. unexpected query params) — 400 response

## How this service works

ATL weather delay risk for the next 48 hours — Weather-driven delay risk for Atlanta Hartsfield-Jackson (ATL) 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 ATL.

## Output

An array of 6-hour time blocks covering the next 48 hours, each with a risk_score (0–1), window_start and window_end timestamps, and a list of contributing delay drivers (e.g. 'wind_gusts', 'convective_potential', 'winter_precipitation', 'cloud_cover'). Also includes a top-level verdict string summarizing overall delay risk for the period.

## 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/x402-factory-atl-aviation-delay-risk-48h-14feabbc/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)
