# Send MoltFlights to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "moltflights",
    "name": "MoltFlights",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Jhalmari/moltflights",
    "canonicalUrl": "https://clawhub.ai/Jhalmari/moltflights",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/moltflights",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltflights",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "moltflights",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T19:16:02.769Z",
      "expiresAt": "2026-05-12T19:16:02.769Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltflights",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltflights",
        "contentDisposition": "attachment; filename=\"moltflights-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "moltflights"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/moltflights"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/moltflights",
    "downloadUrl": "https://openagent3.xyz/downloads/moltflights",
    "agentUrl": "https://openagent3.xyz/skills/moltflights/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltflights/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltflights/agent.md"
  }
}
```
## Documentation

### 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.

### moltflights_search — Search Flights

GET https://moltflights.com/api/search?origin=HEL&destination=BKK&date=2026-03-15

ParameterRequiredTypeDescriptionoriginyesstringIATA airport code (e.g. HEL)destinationyesstringIATA airport code (e.g. NRT)datenostringDeparture date YYYY-MM-DDreturnDatenostringReturn date YYYY-MM-DD (round-trip)adultsnointegerNumber of adults, 1–9 (default: 1)childrennointegerChildren ages 2–12, 0–8 (default: 0)infantsnointegerInfants 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

ParameterRequiredTypeDescriptiontermyesstringCity or airport name (min 2 characters)

### Example: Search Flights

curl "https://moltflights.com/api/search?origin=HEL&destination=BKK&date=2026-03-15"

### Response

{
  "meta": {
    "source": "MoltFlights",
    "origin": "HEL",
    "destination": "BKK",
    "date": "2026-03-15",
    "adults": 1,
    "children": 0,
    "infants": 0,
    "results": 12
  },
  "data": [
    {
      "airline": "Finnair",
      "flight_number": "809",
      "price": "€432",
      "price_per_person": "€432",
      "departure": "2026-03-15T10:30:00",
      "return_at": "",
      "transfers": 1,
      "origin": "HEL",
      "destination": "BKK",
      "book_link": "https://www.aviasales.com/search/..."
    }
  ]
}

Each result includes a book_link — a direct booking URL the user can open.

### Example: Round-Trip with Passengers

curl "https://moltflights.com/api/search?origin=JFK&destination=CDG&date=2026-06-01&returnDate=2026-06-15&adults=2&children=1"

The price field shows the total for all seat-occupying passengers. price_per_person shows the per-person price.

### 1. Find the cheapest flight to a destination

Search without a specific date to get the cheapest options for the whole month:

curl "https://moltflights.com/api/search?origin=LHR&destination=TYO"

### 2. Compare prices across dates

Run multiple searches for different dates and compare:

for date in 2026-04-01 2026-04-08 2026-04-15; do
  echo "=== $date ==="
  curl -s "https://moltflights.com/api/search?origin=HEL&destination=BKK&date=$date" | head -20
done

### 3. Price monitoring / alerts (cron job)

Check a route daily and alert when price drops below a threshold:

# Run daily via cron: 0 8 * * * /path/to/check-price.sh
PRICE=$(curl -s "https://moltflights.com/api/search?origin=HEL&destination=BKK&date=2026-05-01" \\
  | grep -o '"price":"€[0-9]*"' | head -1 | grep -o '[0-9]*')

if [ "$PRICE" -lt 400 ]; then
  echo "Deal found: HEL→BKK for €$PRICE"
fi

### 4. Multi-city search

Search several routes and pick the cheapest:

for dest in BKK TYO BCN LIS; do
  echo "=== HEL → $dest ==="
  curl -s "https://moltflights.com/api/search?origin=HEL&destination=$dest" \\
    | grep -o '"price":"€[0-9]*"' | head -1
done

### Common IATA Codes

CodeCityCodeCityHELHelsinkiLHRLondonJFKNew YorkCDGParisNRTTokyo NaritaBKKBangkokBCNBarcelonaFCORomeSINSingaporeDXBDubaiLAXLos AngelesSFOSan FranciscoBERBerlinAMSAmsterdamISTIstanbulLISLisbon

Don't know the code? Use the moltflights_autocomplete tool:

curl "https://moltflights.com/api/autocomplete?term=bangkok"

### Error Handling

400 — Missing origin or destination parameter
Empty data array — No flights found for this route/date. Try a different date or omit the date for flexible search.

### Tips

Prices are in EUR (€)
Results are sorted: exact date matches first, then nearby dates by price
Omitting date gives you the cheapest flights across the whole upcoming month
The API is free and requires no authentication
Responses are cached for 5 minutes
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Jhalmari
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T19:16:02.769Z
- Expires at: 2026-05-12T19:16:02.769Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/moltflights)
- [Send to Agent page](https://openagent3.xyz/skills/moltflights/agent)
- [JSON manifest](https://openagent3.xyz/skills/moltflights/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/moltflights/agent.md)
- [Download page](https://openagent3.xyz/downloads/moltflights)