# AviationStack Real-Time Flight Status via Vaaya

> AviationStack Real-Time Flight Status via Vaaya is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Queries real-time flight status data including departure/arrival info, delays, and airline details using AviationStack via Vaaya's x402 gateway

## Facts

- Endpoint: POST https://vaaya.ai/api/run/aviationstack/flights
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aviationstack-real-time-flight-status-via-vaaya-0c4923d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TJXA-Klyj8B_wxP0t8GZA

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 aviationstack-real-time-flight-status-via-vaaya-0c4923d4 -d '<json body>'
```

Example prompt: What's the real-time status of flight AA100 right now — is it on time, delayed, or has it landed?

## When to prefer this

Use this endpoint when you need real-time or near-real-time flight status for a specific flight, route, or airline and already know the IATA codes. Prefer this over general travel APIs when you need fast, affordable per-call pricing (~0.5¢ via AviationStack) and don't want to manage your own AviationStack API key. Best for agents that need live flight tracking without setting up a direct AviationStack subscription.

## Known failure modes

- Invalid IATA code returns no results or error
- Flight not found if too far in the past or future
- Rate limiting or payment failure returns 402 or 429
- Missing required flight identifier returns validation error
- Obscure or regional flights may have incomplete or missing data

## How this service works

AviationStack — real-time flight status (~0.5¢). Query params like `flight_iata` (AA100), `dep_iata`, `arr_iata`, `airline_iata`.

## Output

Returns real-time flight data including flight number, airline, departure and arrival airports, scheduled and actual times, flight status (scheduled, active, landed, cancelled, diverted), and delay information sourced from AviationStack.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": true,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aviationstack-real-time-flight-status-via-vaaya-0c4923d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
