# FlightAware TAF Weather Forecast by Airport

> FlightAware TAF Weather Forecast by Airport is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Returns the Terminal Aerodrome Forecast (TAF) weather forecast for a specific airport by ICAO/IATA code

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/yvr/weather/forecast
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flightaware-160de295
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JNPToxhp8MEP9-93iOeR-

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 flightaware-160de295
```

Example prompt: What's the TAF weather forecast for YVR airport in Celsius? I'd also like to see nearby weather conditions.

## When to prefer this

Use this endpoint when you need structured aviation Terminal Aerodrome Forecast (TAF) data for a specific airport, especially for flight planning, departure/arrival weather briefings, or aviation-oriented applications. Prefer this over METAR observations when you need a forward-looking forecast rather than current conditions. This endpoint is ideal for agents working with travel itineraries, flight operations, or aviation weather dashboards.

## Known failure modes

- Invalid or unknown airport code returns an error or empty result
- Airport does not have a TAF station (small/uncontrolled airports may lack TAF data)
- Stale or unavailable forecast data from upstream FlightAware provider
- Invalid temperature_units enum value causes validation error
- Payment failure (x402 payment required, insufficient USDC balance)
- Rate limiting or quota exceeded on the StableTravel proxy

## How this service works

Get weather forecast (TAF) for a specific airport

## Output

Returns a structured TAF weather forecast including an array of forecast periods, a timeframe string, the airport code, and raw TAF strings as issued by aviation meteorological authorities for the specified airport.

## Example request

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

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "timestamp": {
       "type": "string"
      },
      "temperature_units": {
       "enum": [
        "fahrenheit",
        "celsius"
       ],
       "type": "string"
      },
      "return_nearby_weather": {
       "type": "boolean"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "forecast": {
       "type": "array",
       "items": {}
      },
      "timeframe": {
       "type": "string"
      },
      "airport_code": {
       "type": "string"
      },
      "raw_forecast": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flightaware-160de295/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletravel.dev](https://www.zero.xyz/host/stabletravel.dev/llms.txt)
