# 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-13).

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

## Facts

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

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-ef7a8f53
```

Example prompt: What's the weather forecast (TAF) at New Chitose Airport (CTS) right now? Show temperatures in Celsius and include nearby airport weather too.

## When to prefer this

Use this endpoint when you need official aviation TAF forecasts for a specific airport, especially for flight planning, departure/arrival weather checks, or aviation operations. Prefer this over general weather APIs when you need raw TAF strings and structured aviation forecast data tied to a specific ICAO airport code.

## Known failure modes

- Invalid or unknown airport ICAO code returns an error or empty result
- Airport does not have TAF data available (e.g. small aerodromes)
- Payment failure via x402 protocol returns 402 status
- Stale or unavailable TAF data if the meteorological source is delayed
- Invalid timestamp parameter format causes a bad request response

## 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, raw TAF strings as issued by the meteorological authority, the airport ICAO code, and the timeframe covered by the forecast.

## 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-ef7a8f53/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)
