# Airnav — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Find current aviation fuel prices at any US airport, including pricing for 100LL, Jet A, UL94, SAF, and Mogas from Fixed Base Operators along with their service type and contact details. Compare fuel availability and costs across multiple FBOs at your destination airport to plan your flight operations.

**Category:** Travel | **Website:** [airnav.com/](https://airnav.com/) | **Docs:** [parse.bot/marketplace/208de514-ca12-4c51-923b-18380d9c6978/airnav-com-api](https://parse.bot/marketplace/208de514-ca12-4c51-923b-18380d9c6978/airnav-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-airnav-com-api-208de514/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fuel_prices

Get FBO fuel prices for a specific airport. Returns all Fixed Base Operators at the airport with their fuel prices, fuel provider, contact information, and pricing details. Each FBO includes business name, fuel provider brand, individual fuel prices by type and service level, price update date, guarantee status, and contact information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `airport_id` | string | Yes | Airport identifier - ICAO code (e.g., KJFK, KVNY, KSFO) or FAA LID (e.g., 0B5). Case-insensitive. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-airnav-com-api-208de514/get_fuel_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"airport_id":"<string>"}'
```
