# Bolt Flight Status Lookup

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

Looks up real-time flight status and information by flight number

## Facts

- Endpoint: POST https://boltx402.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-cfbf993c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dqhXRNmJI08oFAYV6jAGA

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

Example prompt: What's the current status of flight AA1234 — is it on time, delayed, or already landed?

## When to prefer this

Use this endpoint when you need quick, pay-per-use flight status lookups without a subscription to a dedicated aviation data provider. At $0.05 USDC per call it is cost-effective for occasional flight checks by an AI agent operating within the Bolt x402 ecosystem.

## Known failure modes

- Invalid or malformed flight number returns error
- Flight number not found in database returns failure response
- Upstream aviation data unavailable causes service error
- Payment failure via x402 prevents request from being processed

## 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 JSON object with a success boolean and a data object containing flight status details such as departure/arrival times, delay information, and 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/bolt-flight-status-lookup-cfbf993c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
