# Bolt Flight Lookup

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

Looks up real-time or scheduled flight data by flight number, returning flight status, route, and related details.

## Facts

- Endpoint: POST https://datault.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-lookup-c0d812fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tDFGKj4D-KStqHl-lwHqw

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

Example prompt: Can you check the current status of flight AA456 for me — is it on time?

## When to prefer this

Use this endpoint when you need to retrieve flight status, route, or scheduling information for a specific known flight number. Prefer this over general travel search when the exact flight number is already known.

## Known failure modes

- Invalid or malformed flight number returns error or empty data
- Unknown flight number returns success:false with no data
- Flight number for a past flight may return no live status
- Network timeout or provider outage results in failed response

## 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 with flight details (status, departure, arrival, route, etc.) and a boolean success flag indicating whether the lookup succeeded.

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