全球首个 Agent 原生的私人航空 API
将私人飞机预订集成到您的 AI Agent 中。支持自然语言搜索航班、即时获取报价,每笔成功预订均可赚取佣金。
选择适合您 Agent 架构的集成方式
简洁的 HTTP 端点,支持航班搜索和预订。自然语言输入,结构化 JSON 输出。
POST /api/v1/flights/search覆盖飞机、机场、报价、预订和用户管理的完整 Schema。精确查询所需数据。
POST /api/graphql兼容 ChatGPT 及所有 OpenAI 兼容平台的即插即用插件。零配置。
/.well-known/ai-plugin.json适用于 Claude Desktop 和 MCP 兼容 Agent 的 Model Context Protocol。原生工具集成。
POST /api/mcpW3C 浏览器原生 AI 工具集成标准。访问 flyvolo.ai 的 AI Agent 自动发现并使用 VOLO 航班工具,无需 API 密钥。
navigator.modelContext您的智能体可以直接在浏览器中访问 VOLO 工具 — 无需服务器、无需 API 密钥、无需配置。
Agent visits any page on flyvolo.ai
Browser exposes 10 structured tools via navigator.modelContext
Agent calls tools directly — no API key needed
search_flightsSearch private jet flights between two citiesfrom, to, passengers?, category?Yesget_aircraftQuery fleet by category, capacity, or rangecategory?, minPassengers?, slug?Yescompare_aircraftCompare 2-3 aircraft side by sideaircraft[]Yesget_destinationsSearch luxury destinations by region or nameregion?, query?, limit?Yesget_flight_timeCalculate flight time between citiesfrom, toYesestimate_costEstimate charter cost for a routefrom, to, passengers?Yesrequest_quoteSubmit quote request (user confirmation required)from, to, passengersNoget_blog_postsBrowse aviation blog posts, filter by tagtag?, limit?, locale?Yesget_airport_infoAirport and FBO details for any destinationdestinationYesget_service_infoSpecialized services: group, corporate, medical, petsservice?Yessearch_flightsRead-OnlySearch private jet flights between two cities
from, to, passengers?, category?get_aircraftRead-OnlyQuery fleet by category, capacity, or range
category?, minPassengers?, slug?compare_aircraftRead-OnlyCompare 2-3 aircraft side by side
aircraft[]get_destinationsRead-OnlySearch luxury destinations by region or name
region?, query?, limit?get_flight_timeRead-OnlyCalculate flight time between cities
from, toestimate_costRead-OnlyEstimate charter cost for a route
from, to, passengers?request_quoteWriteSubmit quote request (user confirmation required)
from, to, passengersget_blog_postsRead-OnlyBrowse aviation blog posts, filter by tag
tag?, limit?, locale?get_airport_infoRead-OnlyAirport and FBO details for any destination
destinationget_service_infoRead-OnlySpecialized services: group, corporate, medical, pets
service?输入自然语言航班请求,实时查看 API 响应
// Example API Response
{
"success": true,
"data": {
"intent": {
"departureCity": "New York",
"departureAirport": "KTEB",
"arrivalCity": "Aspen",
"arrivalAirport": "KASE",
"passengerCount": 4,
"confidence": 0.95,
"aircraftPreference": null,
"specialRequests": []
}
}
}加入我们的 Agent 合作伙伴计划,每笔成功推荐的预订均可获得佣金
每笔确认预订均可获得佣金。优秀合作伙伴享更高比例。
您的推荐 Cookie 有效期 30 天。用户在此期间完成预订,您即可获得佣金。
通过 Agent 面板实时追踪推荐、转化和收益。
每月自动结算。无需开票、无需催款。我们直接付款给您。
标准
3%
0+ bookings
白银
3.5%
10+ bookings
黄金
4%
50+ bookings
铂金
5%
200+ bookings
几分钟即可通过我们简洁的 API 完成集成
import requests
response = requests.post("https://www.flyvolo.ai/api/v1/flights/search", json={
"text": "NYC to Aspen, next Friday, 4 passengers"
})
flights = response.json()
print(f"Found intent: {flights['data']['intent']['departureCity']} → "
f"{flights['data']['intent']['arrivalCity']}")const response = await fetch("https://www.flyvolo.ai/api/v1/flights/search", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
text: "NYC to Aspen, next Friday, 4 passengers"
})
});
const { data } = await response.json();
console.log(`${data.intent.departureCity} → ${data.intent.arrivalCity}`);curl -X POST https://www.flyvolo.ai/api/v1/flights/search \
-H "Content-Type: application/json" \
-d '{"text": "NYC to Aspen, next Friday, 4 passengers"}'// AI agents call VOLO tools directly via WebMCP — no API key needed
const flights = await navigator.modelContext.callTool("search_flights", {
from: "New York",
to: "Aspen",
passengers: 4
});
// Returns structured data: matching aircraft, times, costs
console.log(flights.route); // { from: "New York", to: "Aspen", distanceKm: 2704 }
console.log(flights.flights[0]); // { aircraft: "Citation CJ3+", flightTime: "3h 12m", ... }