一句话,完成航线搜索、智能比价、退改规则解析。
真实的库存、真实的价格、真实的票规——给每一个 AI Agent 的航线能力底座。
自然语言直接触发搜索+比价+退改解析完整链路,无需编排多轮 API。Agent 收到的是可决策的结果,不是半成品。
绕过传统加价黑盒,Agent 拿到的就是真实市场价。每笔加价透明可追溯。
700+ 航司底座,复杂航段组合、多程联程智能搜索,不是简单的点对点。
返回结构化的、Agent 可直接消费的航班数据与决策上下文,不是给人类读的 HTML。
FR24 提供 Skill 安装包,支持本地文件、GitHub、ClawHub 及命令行四种方式。安装后,你的 Agent 即刻拥有航线搜索与智能比价能力。
https://fr24.ai/flightroutes24-skill.zip
https://github.com/FR24-AI/flightroutes24-skill
https://clawhub.ai/mafly/fr24-ai
npx skills add git@github.com:FR24-AI/flightroutes24-skill.git
// Initialize FR24 Agent Client
const client = new FR24Client({
apiKey: "YOUR_API_KEY",
});
// AI Agent searches with natural intent
const results = await client.searchFlights({
origin: "PEK",
destination: "NRT",
dates: ["2026-06-02", "2026-06-05"],
passengers: [{ type: "adult", count: 1 }],
preferences: {
sortBy: "price",
refundable: true,
}
});
// Returns ranked options + fare rules context
// Intent-driven. One call. Full decision chain.
FR24 API 提供航线搜索、智能比价、退改规则查询等工具,覆盖机票决策全链路。一次意图调用获取最优方案,无需理解底层 GDS。