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 offers. Use when: (1) user asks about flights or hotels, (2) user wants to plan or book a trip, (3) user needs LCC coverage, (4) travel agent or concierge tasks. MCP-compatible, OpenAI-compatible.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "runrelay" with this command: npx skills add runrelay/runrelay

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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Hippo Video

Hippo Video integration. Manage Persons, Organizations, Deals, Leads, Activities, Notes and more. Use when the user wants to interact with Hippo Video data.

Registry SourceRecently Updated
General

币安资金费率监控

币安资金费率套利监控工具 - 查看账户、持仓、盈亏统计,SkillPay收费版

Registry SourceRecently Updated
General

apix

Use `apix` to search, browse, and execute API endpoints from local markdown vaults. Use this skill to discover REST API endpoints, inspect request/response s...

Registry SourceRecently Updated
0160
dngpng