# Bolt Flight Data Lookup

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

Retrieves real-time or historical flight data for a given flight number

## Facts

- Endpoint: POST https://deltadata.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-data-lookup-b1fcab9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Na7uTzP-XMKg3w8YNblW

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

Example prompt: Can you look up the current status and details for flight AA1234?

## When to prefer this

Use this endpoint when you need to look up real-time or scheduled flight information by flight number and are operating in an x402 pay-per-request environment. Suitable for agents that need on-demand flight status without a long-term API subscription.

## Known failure modes

- Invalid or malformed flight number returns error or empty data
- Flight number not found in database returns success:false or empty data object
- Network or server timeout causes request failure
- Malformed request body missing required flight_number field returns 400 error
- Payment failure via x402 protocol blocks request

## 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 details such as status, departure/arrival times, gate information, and other flight-related metadata 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-data-lookup-b1fcab9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
