أول واجهة برمجة تطبيقات طيران خاص أصلية للوكلاء في العالم
ادمج حجز الطائرات الخاصة في وكيلك الذكي. ابحث عن رحلات بلغة طبيعية، واحصل على عروض أسعار فورية، واكسب عمولة على كل حجز.
اختر التكامل الذي يناسب بنية وكيلك
نقاط نهاية HTTP بسيطة للبحث عن الرحلات والحجز. إدخال بلغة طبيعية، مخرجات JSON منظمة.
POST /api/v1/flights/searchمخطط كامل للطائرات والمطارات والعروض والحجوزات وإدارة المستخدمين. استعلم بدقة عما تحتاجه.
POST /api/graphqlإضافة متوافقة مع ChatGPT وأي منصة متوافقة مع OpenAI. بدون أي تهيئة.
/.well-known/ai-plugin.jsonبروتوكول سياق النموذج لـ Claude Desktop والوكلاء المتوافقين مع MCP. تكامل أدوات أصلي.
POST /api/mcpمعيار W3C لتكامل أدوات الذكاء الاصطناعي الأصلية في المتصفح. وكلاء الذكاء الاصطناعي الذين يزورون flyvolo.ai يكتشفون ويستخدمون أدوات 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?Install the official VOLO skill for OpenClaw and book private jets from WhatsApp, Telegram, Discord, or any messaging platform.
اكتب طلب رحلة بلغة طبيعية وشاهد استجابة 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": []
}
}
}انضم إلى برنامج شراكة الوكلاء واكسب عمولة على كل حجز ناجح يحيله وكيلك
اكسب على كل حجز مؤكد. مستويات أعلى للأداء المتميز.
ملف تعريف الإحالة الخاص بك يستمر 30 يوماً. إذا حجز المستخدم خلال تلك الفترة، تكسب أنت.
تتبع الإحالات والتحويلات والأرباح في الوقت الفعلي من خلال لوحة تحكم وكيلك.
تسويات شهرية تلقائية. بدون فواتير، بدون متابعة. نحن ندفع لك.
قياسي
3%
0+ bookings
فضي
3.5%
10+ bookings
ذهبي
4%
50+ bookings
بلاتيني
5%
200+ bookings
ابدأ العمل في دقائق مع واجهة برمجة التطبيقات البسيطة
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", ... }