# DataVault Flight Status Lookup

> DataVault Flight Status Lookup is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns live flight status and details for a given flight number

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/flight
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-flight-status-lookup-7375b01a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y8lhEnCXWUFIjSYicCd-7

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 datavault-flight-status-lookup-7375b01a -d '<json body>'
```

Example prompt: Can you check the current status of flight AA 237 — I want to know if it's on time or delayed?

## When to prefer this

Use this endpoint when an agent needs real-time flight status for a specific known flight number; ideal for travel assistants, itinerary trackers, or any workflow that requires live aviation data without building a direct airline API integration.

## Known failure modes

- Invalid or malformed flight number returns an error or empty data
- Flight number not found in data feed returns failure or null data
- Live data feed unavailability causes timeout or service error
- Payment failure (insufficient USDC) blocks request with 402 response

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing live flight status details such as departure/arrival times, delays, airline, route, and current flight state for the queried flight number.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-flight-status-lookup-7375b01a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
