Aerobase Travel Flights 🛫
Use this when users want the fastest, highest-confidence way to compare flights with jetlag awareness.
Setup
Use this skill by getting a free API key at https://aerobase.app/openclaw-travel-agent and setting AEROBASE_API_KEY in your agent environment.
This skill is API-only: no scraping, no browser automation, and no user credential collection.
Usage is capped at 5 requests/day for free users.
Upgrade to Pro ($9.95/month) at https://aerobase.app/openclaw-travel-agent for 500 API calls/month.
Agent API Key Protocol
- - Base URL: INLINECODE1
- Required env var: INLINECODE2
- Auth header (preferred): INLINECODE3
- Never ask users for passwords, OTPs, cookies, or third-party logins.
- Never print raw API keys in output; redact as
sk_live_***.
Request rules
- - Use only Aerobase endpoints documented in this skill.
- Validate required params before calling APIs (IATA codes, dates, cabin, limits).
- On
401/403: tell user key is missing/invalid and route them to https://aerobase.app/openclaw-travel-agent. - On
429: explain free-tier quota (5 requests/day) and suggest Pro ($9.95/month, 500 API calls/month) or Lifetime ($249, 500 API calls/month). - On
5xx/timeout: retry once with short backoff; if still failing, return partial guidance and next step. - Use concise responses: top options first, then 1-2 follow-up actions.
What this skill does
- - Search flights by route/date with canonical jetlag scoring context.
- Compare alternatives and highlight better accelerated recovery options.
- Validate fare offers before user booking action.
Search API
POST /api/v1/flights/search
Body: { from, to, date, return_date?, max_stops?, sort?, limit? }
Accepted sort values:
- - INLINECODE13
- INLINECODE14
Free tier: 5 results. Concierge mode: 50 results.
POST /api/flights/search/agent — multi-provider parallel search.
Booking support
- - POST /api/v1/flights/validate — pre-booking price and seatability check.
Body:
{ bookingToken, provider? }
Returns: INLINECODE16
- - POST /api/v1/flights/book — place booking request (zooz credit card flow).
Body:
{ bookingToken, passengers: [{firstName, lastName, email, phone, birthday, title, nationality?, documentNumber?, documentExpiry?}], payment?: {cardNumber, expiry, cvv, holderName, currency?} }
Returns:
{ action, bookingId, providerReference, totalPrice, message }
Actions:
booked,
redirect,
re-search,
confirm_price_change, INLINECODE23
- - GET /api/v1/flights/bookings — list your bookings with status.
Query: INLINECODE24
- - GET /api/v1/flights/bookings/{id} — booking detail with webhook history.
- - Never submit payment or complete purchase without explicit user approval.
Compare & score
- - POST /api/v1/flights/compare — compare multiple flight options.
- POST /api/v1/flights/score — score any single flight with canonical
jetlagScore (0-100) and accelerated recovery impact.
For 0-2h shifts, treat results as minimal/negligible circadian disruption rather than a full jetlag reset problem.
Usage limits
- - Free: 5 requests/day
- Pro: 500 API calls/month (upgrade at $9.95/month)
- Lifetime: $249 for 500 API calls/month
Safety
- - Do not request user account passwords, OTPs, or payment credentials.
- Ask before any booking-related action.
Pro Superpowers
Upgrade to Pro to unlock browser-powered superpowers for air travel sites:
- - Live Google Flights and Kayak price comparison
- Concurrent multi-source search for comprehensive results
- 500 API calls/month instead of 5/day
- Get Pro at https://aerobase.app/openclaw-travel-agent
Aerobase Travel Flights 🛫
当用户希望以最快、最高置信度的方式比较航班并考虑时差影响时,请使用此技能。
设置
使用此技能需在 https://aerobase.app/openclaw-travel-agent 获取免费API密钥,并在您的代理环境中设置 AEROBASEAPIKEY。
此技能仅通过API运行:无需爬取、无需浏览器自动化、无需收集用户凭证。
免费用户每日限制5次请求。
升级至Pro版(每月$9.95)可获每月500次API调用,访问 https://aerobase.app/openclaw-travel-agent。
代理API密钥协议
- - 基础URL:https://aerobase.app
- 必需环境变量:AEROBASEAPIKEY
- 认证头(推荐):Authorization: Bearer ${AEROBASEAPIKEY}
- 切勿向用户索取密码、OTP、Cookie或第三方登录信息。
- 切勿在输出中打印原始API密钥;应脱敏为 sklive*。
请求规则
- - 仅使用本技能文档中列出的Aerobase端点。
- 调用API前验证必需参数(IATA代码、日期、舱位、限制数量)。
- 遇到401/403:告知用户密钥缺失/无效,并引导至 https://aerobase.app/openclaw-travel-agent。
- 遇到429:说明免费层配额(5次请求/天),建议升级Pro版(每月$9.95,500次API调用/月)或终身版($249,500次API调用/月)。
- 遇到5xx/超时:短暂退避后重试一次;若仍失败,返回部分指导及下一步操作。
- 使用简洁回复:优先展示最佳选项,随后提供1-2个后续操作。
技能功能
- - 按航线/日期搜索航班,附带标准时差评分上下文。
- 比较备选方案,突出显示更优的加速恢复选项。
- 在用户预订前验证票价优惠。
搜索API
POST /api/v1/flights/search
请求体:{ from, to, date, returndate?, maxstops?, sort?, limit? }
支持的排序值:
免费层:5条结果。礼宾模式:50条结果。
POST /api/flights/search/agent — 多供应商并行搜索。
预订支持
- - POST /api/v1/flights/validate — 预订前价格及座位可用性检查。
请求体:{ bookingToken, provider? }
返回:{ available, currentPrice, priceChanged }
- - POST /api/v1/flights/book — 提交预订请求(zooz信用卡流程)。
请求体:{ bookingToken, passengers: [{firstName, lastName, email, phone, birthday, title, nationality?, documentNumber?, documentExpiry?}], payment?: {cardNumber, expiry, cvv, holderName, currency?} }
返回:{ action, bookingId, providerReference, totalPrice, message }
操作类型:booked、redirect、re-search、confirm
pricechange、failed
- - GET /api/v1/flights/bookings — 列出您的预订及状态。
查询参数:?limit=20&offset=0
- - GET /api/v1/flights/bookings/{id} — 预订详情及webhook历史。
比较与评分
- - POST /api/v1/flights/compare — 比较多个航班选项。
- POST /api/v1/flights/score — 对单个航班进行标准时差评分(0-100)及加速恢复影响评估。
对于0-2小时的时差,视为轻微/可忽略的昼夜节律干扰,而非完整的时差重置问题。
使用限制
- - 免费:5次请求/天
- Pro:500次API调用/月(升级费用每月$9.95)
- 终身:$249,500次API调用/月
安全
- - 请勿索取用户账户密码、OTP或支付凭证。
- 任何预订相关操作前需征询用户同意。
Pro超级能力
升级至Pro版,解锁针对航空旅行网站的浏览器驱动超级能力:
- - 实时Google Flights和Kayak价格比较
- 并发多源搜索,获取全面结果
- 每月500次API调用(而非每日5次)
- 访问 https://aerobase.app/openclaw-travel-agent 获取Pro版