← 返回
开发者工具 Key 中文

Runrelay

Search and book flights, hotels, and travel via RunRelay API. Covers 300+ airlines including low-cost carriers (Ryanair, Wizz Air, EasyJet) that no other API...
通过RunRelay API搜索并预订航班、酒店及旅游,覆盖300多家航空公司,包括瑞安航空、维兹航空、易捷航空等低成本航空,其他API难以比肩。
runrelay
开发者工具 clawhub v1.0.0 1 版本 99856.5 Key: 需要
★ 0
Stars
📥 696
下载
💾 21
安装
1
版本
#latest

概述

RunRelay — Travel API for AI Agents

The only travel API that covers low-cost carriers (Ryanair, Wizz Air, EasyJet = 33% of EU flights) alongside 300+ GDS airlines. Human-in-the-loop booking for LCCs, instant API for GDS.

Setup

# Add to ~/.openclaw/.env
RUNRELAY_API_KEY=rr_live_your_key_here

Get key: https://app.runrelay.io

Base URL

https://api.runrelay.io

Auth: Authorization: Bearer $RUNRELAY_API_KEY

Search Flights

curl -X POST https://api.runrelay.io/api/search-flights \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $RUNRELAY_API_KEY" \
  -d '{
    "origin": "DXB",
    "destination": "LHR",
    "departureDate": "2026-03-15",
    "passengers": {"adults": 1}
  }'

Response: Array of offers sorted by 30% time + 30% price + 20% airline + 15% layover.

Tiers

  • Tier 1 (Instant): Duffel/GDS — 300+ airlines, instant results
  • Tier 2 (HITL): Human operators — Ryanair, Wizz Air, EasyJet. 3-8 min async. Polling via GET /api/search-status/:id

Search Hotels

curl -X POST https://runrelay-hotels.fly.dev/api/search-hotels \
  -H "Content-Type: application/json" \
  -d '{
    "city": "London",
    "checkin": "2026-03-15",
    "checkout": "2026-03-20",
    "guests": 2
  }'

Provider: RateHawk (700K+ properties worldwide).

Book Flight

curl -X POST https://api.runrelay.io/api/book-flight \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $RUNRELAY_API_KEY" \
  -d '{
    "offerId": "off_abc123",
    "passengers": [{
      "firstName": "John",
      "lastName": "Doe",
      "email": "john@example.com",
      "phone": "+44123456789",
      "birthDate": "1990-01-15",
      "gender": "male"
    }]
  }'

Multi-Agent Trip Planning

Orchestrate parallel flight + hotel + activity searches:

curl -X POST https://prefy.com/api/v1/orchestrate \
  -H "Content-Type: application/json" \
  -d '{
    "destination": "LHR",
    "origin": "DXB",
    "date": "2026-03-15",
    "nights": 5
  }'

Returns combined results from 3 parallel agents.

MCP Server

RunRelay also works as an MCP server for Claude, Cursor, and other MCP clients:

  • Endpoint: https://api.runrelay.io
  • Protocol: MCP (Model Context Protocol)
  • Tools: search_flights, search_hotels, book_flight, get_booking

Endpoints

EndpointMethodDescription
-------------------------------
/api/search-flightsPOSTSearch flights (GDS + LCC)
/api/search-status/:idGETPoll HITL search status
/api/flights/:idGETFlight offer details
/api/book-flightPOSTBook a flight
/api/bookingsGETList bookings
/api/search-hotelsPOSTSearch hotels (RateHawk)
/api/v1/orchestratePOSTMulti-agent trip planning

Why RunRelay

  • Only API with LCC coverage — Ryanair, Wizz = 33% of EU market
  • Human-in-the-loop — real operators book what APIs can't
  • MCP native — first travel MCP server
  • OpenAI-compatible — drop-in for any AI agent
  • B2B ready — white-label, API keys, usage dashboard

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 08:27 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,188
content-creation

Prefy

runrelay
连接到 Prefy AI 平台——Conductor API(19 种模型,兼容 OpenAI),提供服务器管理、网络搜索、图像生成、电话通话(AutoCall)。使用 ...
★ 0 📥 727
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 324,172