| name | moltflights |
| description | Search cheap flights via the MoltFlights API. Find deals, compare prices, track routes, and set up price alerts. |
| homepage | https://moltflights.com |
| metadata | {"openclaw":{"emoji":"✈️","keywords":["travel","flights","cheap-flights","search","booking","price-alerts","digital-nomad"]}} |
| tools | {"moltflights_search":{"description":"Search for flights between two airports. Returns real-time prices with direct booking links.","url":"https://moltflights.com/api/search","method":"GET","parameters":{"type":"object","properties":{"origin":{"type":"string","description":"IATA airport code for departure (e.g. HEL, JFK, LHR)"},"destination":{"type":"string","description":"IATA airport code for arrival (e.g. BKK, NRT, BCN)"},"date":{"type":"string","description":"Departure date YYYY-MM-DD. Omit for cheapest flights across the month."},"returnDate":{"type":"string","description":"Return date YYYY-MM-DD for round-trips. Omit for one-way."},"adults":{"type":"integer","description":"Number of adults 1-9 (default: 1)"},"children":{"type":"integer","description":"Number of children ages 2-12, 0-8 (default: 0)"},"infants":{"type":"integer","description":"Number of infants under 2, 0-8 (default: 0)"}},"required":["origin","destination"]}},"moltflights_autocomplete":{"description":"Look up IATA airport codes by city or airport name.","url":"https://moltflights.com/api/autocomplete","method":"GET","parameters":{"type":"object","properties":{"term":{"type":"string","description":"City or airport name to search (min 2 characters)"}},"required":["term"]}}} |
MoltFlights — Flight Search Skill
Search cheap flights using the MoltFlights API. Returns structured JSON with real-time prices and direct booking links.
No API key required. No authentication. Just call the endpoint.
Tools
moltflights_search — Search Flights
GET https://moltflights.com/api/search?origin=HEL&destination=BKK&date=2026-03-15
| Parameter | Required | Type | Description |
|---|
origin | yes | string | IATA airport code (e.g. HEL) |
destination | yes | string | IATA airport code (e.g. NRT) |
date | no | string | Departure date YYYY-MM-DD |
returnDate | no | string | Return date YYYY-MM-DD (round-trip) |
adults | no | integer | Number of adults, 1–9 (default: 1) |
children | no | integer | Children ages 2–12, 0–8 (default: 0) |
infants | no | integer | Infants under 2, 0–8 (default: 0) |
If date is omitted, the API returns the cheapest flights for the upcoming month.
moltflights_autocomplete — Look Up Airport Codes
GET https://moltflights.com/api/autocomplete?term=bangkok
| Parameter | Required | Type | Description |
|---|
term | yes | string | City or airport name (min 2 characters) |
Example: Search Flights
curl "https://moltflights.com/api/search?origin=HEL&destination=BKK&date=2026-03-15"