Search and discover aircraft rentals across the United States. Avyo's public API provides access to aircraft availability, hourly rates, airport data, and flight school information.
Avyo is an aircraft rental marketplace where pilots discover and rent aircraft near any airport or city. The API returns real-time availability, transparent pricing (rental + fuel + repositioning + platform fee), and data from both private aircraft owners and flight schools nationwide.
https://avyo.io/apiThe endpoints listed below are public and do not require authentication. Rate limiting applies: 100 requests per minute per IP address.
/api/search/tripsSearch for available aircraft by origin airport, city, or coordinates. Returns aircraft with full cost breakdowns.
{
// Option 1: Airport code (ICAO)
"departureAirport": "KAUS",
// Option 2: City name
"originCity": "Austin",
"originRadius": "30", // miles, default 30
// Option 3: GPS coordinates
"originLat": 30.1975,
"originLon": -97.6664,
// Optional filters
"departureDate": "2026-05-01T10:00:00Z",
"returnDate": "2026-05-01T14:00:00Z",
"passengers": 2,
"filters": {
"maxPrice": 300,
"minSeats": 4
}
}{
"aircraft": [
{
"id": "clx...",
"make": "Cessna",
"model": "172",
"year": 2019,
"hourlyRate": 185,
"fuelPolicy": "WET",
"seats": 4,
"speed": 122,
"images": ["https://files.avyo.io/..."],
"homeBaseAirport": "KAUS",
"costBreakdown": {
"hourlyRate": 185,
"rentalHours": 4,
"subtotal": 740,
"fuelCost": 0,
"repositioningFee": 0,
"platformFee": 74,
"total": 814
},
"distanceToOrigin": 0
}
],
"searchParams": {
"originAirports": [
{ "icao": "KAUS", "name": "Austin-Bergstrom", "distance": 0 }
],
"searchType": "airport"
}
}/api/aircraft/featuredBrowse featured aircraft listings. Returns aircraft grouped by featured status, location, or recency.
| Parameter | Type | Description |
|---|---|---|
groupBy | string | "featured" | "location" | "recent" (default: "featured") |
limit | number | Max results (default: 12) |
location | string | Filter by ICAO airport code |
curl "https://avyo.io/api/aircraft/featured?groupBy=location&location=KAUS&limit=5"/api/airports/searchSearch airports by name, city, ICAO code, or IATA code. Supports text search and geolocation-based proximity search.
| Parameter | Type | Description |
|---|---|---|
q | string | Search query (min 2 chars). Searches city, ICAO, IATA, name, state. |
lat | number | Latitude for proximity search |
lon | number | Longitude for proximity search |
maxDistance | number | Max distance in miles (default: 50) |
curl "https://avyo.io/api/airports/search?q=Austin"
# Response
[
{
"code": "KAUS",
"icao": "KAUS",
"iata": "AUS",
"name": "Austin-Bergstrom International Airport",
"city": "Austin",
"state": "TX",
"type": "large_airport"
}
]Pricing: All prices are in USD. Hourly rates can be WET (fuel included) or DRY (fuel charged separately based on burn rate). The cost breakdown includes rental, fuel, repositioning (if aircraft must reposition >10nm), and a 10% platform fee.
Airport Codes: Avyo uses ICAO codes (4-letter, e.g., KAUS) as the primary identifier. IATA codes (3-letter, e.g., AUS) are supported in search.
Coverage: Aircraft listings span all 50 US states. Data includes both private aircraft owners and flight school fleets.
Rate Limits: Public endpoints are rate-limited to 100 requests per minute per IP. For higher limits, contact [email protected].
Building with aviation data? We'd love to hear about it. Contact us at [email protected] for partnership opportunities, higher rate limits, or custom data access.