# DataVault Flight Status Lookup

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

Returns real-time flight status and details for a given flight number

## Facts

- Endpoint: POST https://zetdatavault.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-99e82c6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_guq427T70vWnknmS6vq_Q

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-99e82c6a -d '<json body>'
```

Example prompt: Can you check the current status of flight AA2345 for me — is it on time, delayed, or has it already landed?

## When to prefer this

Use this endpoint when you need real-time flight status for a specific flight number and want a pay-per-call model without a subscription. Prefer this over airline websites when automating travel monitoring or building agent workflows that need live aviation data on demand.

## Known failure modes

- Invalid or unknown flight number returns error or empty data
- Flight number not found in data feed returns success:false
- Network timeout if live data source is unavailable
- Incorrect format for flight number may cause lookup failure

## 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 real-time flight status details such as departure and arrival times, delay information, 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-99e82c6a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
