# The Stall — Aviation Weather by Airport

> The Stall — Aviation Weather by Airport is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns current aviation weather data for a given airport using its IATA or ICAO code

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/aviation-weather
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-aviation-weather-by-airport-e9e01017
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rl5pto8vMIazs_rzx2euG

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 the-stall-aviation-weather-by-airport-e9e01017
```

Example prompt: What are the current aviation weather conditions at JFK — I need the METAR-style report including winds, visibility, and ceiling.

## When to prefer this

Use this endpoint when you need live aviation weather (METAR-style) for a specific airport by IATA or ICAO code, especially in a pay-per-call context where no API key setup is desired. Prefer this over general weather APIs when you need aviation-specific data like ceiling, altimeter setting, or flight category. Suitable for flight planning assistants, dispatch tools, or any agent needing current aerodrome conditions.

## Known failure modes

- Invalid or unknown airport code returns an error or empty result
- Airport not reporting (no active METAR station) may return null or a not-found error
- Network or upstream weather data source outage returns 5xx or timeout
- Malformed query (missing required airport param) returns 400-level error
- Payment failure on the x402 protocol returns 402 Payment Required

## How this service works

Aviation weather (METAR + TAF) for any airport. Returns current conditions (temp, wind, visibility, ceiling, flight category VFR/MVFR/IFR/LIFR) plus 24–30 hour TAF forecast periods. Accepts IATA (JFK) or ICAO (KJFK) codes. Source: NOAA Aviation Weather Center — official, real-time, no API key.

## Output

Returns current aviation weather data for the specified airport, typically including wind speed and direction, visibility, cloud layers and ceiling height, temperature and dew point, altimeter setting, and overall flight condition category (VFR/IFR). Data is formatted for aviation use and sourced from live METAR feeds.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "airport": "KJFK"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-aviation-weather-by-airport-e9e01017/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
