# Bolt Flight Status Lookup

> Bolt Flight Status Lookup is a paid API for AI agents from v0-bolt.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Looks up real-time flight information by flight number, returning status, schedule, and related data.

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/flight
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-flight-status-lookup-5de6885a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_34HaWI3X607kS4WAELUD0

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 bolt-flight-status-lookup-5de6885a -d '<json body>'
```

Example prompt: Can you check the current status of flight AA 2317 for me — is it on time, delayed, or cancelled?

## When to prefer this

Use this endpoint when you need to retrieve real-time or near-real-time status information for a specific commercial flight by its IATA/ICAO flight number. Prefer this over general travel search APIs when you already have the specific flight number and need precise status data rather than searching across routes.

## Known failure modes

- Invalid or malformed flight number returns an error or empty data object
- Flight number not found in database returns success:false
- Upstream flight data provider unavailable causes lookup failure
- Expired or historical flight number with no active data

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a data object containing flight status details such as departure and arrival times, delays, gate information, and whether the flight is on time, delayed, or cancelled, along with a success boolean indicating if the lookup was successful.

## 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/bolt-flight-status-lookup-5de6885a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
