# whatchuneed Flight Utility

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

Processes a free-text flight-related request and returns structured flight information or search results

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/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/whatchuneed-flight-utility-dff19fab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UgUNwVGUb124K2I9RJsQv

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 whatchuneed-flight-utility-dff19fab -d '<json body>'
```

Example prompt: Find me available flights from New York JFK to London Heathrow next Friday, preferably direct or with at most one stop.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call flight search without managing a full travel API integration. It accepts free-text natural language input, making it easy to use in agent pipelines without rigid parameter schemas. Best for prototyping or lightweight agent workflows that occasionally need flight data.

## Known failure modes

- Vague or ambiguous input string may return no results or irrelevant data
- Missing origin or destination in the input string causes lookup failure
- Invalid or past dates may result in empty results
- Service may time out for complex multi-leg itinerary queries
- Unsupported routes or very thin markets may return no options

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a result object containing flight search results such as available flights, schedules, prices, airline names, departure and arrival times, and layover details for the queried route and date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-flight-utility-dff19fab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
