โ† All skills
Tencent SkillHub ยท Developer Tools

Seats Aero

Search award flight availability across 24 mileage programs, including business and first class, with detailed route and booking info via seats.aero API.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Search award flight availability across 24 mileage programs, including business and first class, with detailed route and booking info via seats.aero API.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 21 sections Open source page

Seats.aero Award Flight Search

Search award flight availability across 24 mileage programs using the seats.aero partner API.

Setup

Before searching, you need a seats.aero API key: If the user hasn't provided an API key, prompt them: "Please provide your seats.aero API key. You can get one at https://seats.aero/partner" Store the key in conversation context for subsequent requests All requests require the header: Partner-Authorization: Bearer {api_key}

1. Search Routes (/search)

Search cached availability across all mileage programs for a specific origin-destination pair.

2. Bulk Availability (/availability)

Explore all availability from a single mileage program, optionally filtered by region.

3. Route Discovery (/routes)

Get all routes monitored for a specific mileage program.

4. Trip Details (/trips/{id})

Get detailed flight segments and booking links for a specific availability.

Quick Reference

ItemValueBase URLhttps://seats.aero/partnerapi/Auth HeaderPartner-Authorization: Bearer {key}Date FormatYYYY-MM-DD

Cabin Codes

Y = Economy W = Premium Economy J = Business F = First

Regions

North America, South America, Europe, Africa, Middle East, Asia, Oceania

Supported Programs

aeroplan, alaska, american, aeromexico, azul, copa, delta, emirates, ethiopian, etihad, finnair, flyingblue, gol, jetblue, lufthansa, qantas, qatar, sas, saudia, singapore, turkish, united, virginatlantic, virginaustralia

Find availability on a specific route

User: "Find business class SFO to Tokyo next month" Use /search endpoint with: origin_airport=SFO destination_airport=NRT,HND (both Tokyo airports) cabin=J start_date and end_date for the date range

Explore program availability

User: "What United awards are available from Europe?" Use /availability endpoint with: source=united origin_region=Europe

Get booking details

User: "Show me details for that flight" Use /trips/{id} with the availability ID from previous search Response includes flight segments, times, and booking links

Check what routes a program covers

User: "What routes does Aeroplan monitor?" Use /routes endpoint with source=aeroplan

/search

ParameterRequiredDescriptionorigin_airportYes3-letter IATA codedestination_airportYes3-letter IATA code(s), comma-separatedcabinNoY, W, J, or F (comma-separated for multiple)start_dateNoYYYY-MM-DDend_dateNoYYYY-MM-DDsourcesNoProgram name(s), comma-separatedonly_directNotrue/falsetakeNoResults per page (default 100)cursorNoPagination cursor

/availability

ParameterRequiredDescriptionsourceYesSingle program namecabinNoSingle cabin codeorigin_regionNoFilter by origin regiondestination_regionNoFilter by destination regionstart_dateNoYYYY-MM-DDend_dateNoYYYY-MM-DDtakeNoResults per page

Script Usage

For complex or repeated searches, use the Python helper: from scripts.seats_api import search_availability, format_results results = search_availability( api_key="your_key", origin="SFO", destination="NRT", start_date="2024-03-01", end_date="2024-03-31", cabins="J,F" ) print(format_results(results["data"], cabin="J")) See scripts/seats_api.py for full API client implementation.

Availability Object Fields

ID - Use for /trips/{id} lookup Route - Origin-Destination pair Date - Flight date YAvailable, WAvailable, JAvailable, FAvailable - Boolean availability YMileageCost, etc. - Points required per cabin YDirects, etc. - Number of direct flights available Source - Program name ComputedLastSeen - Data freshness timestamp

Error Handling

401: Invalid or missing API key 429: Rate limited, wait and retry 404: No results or invalid availability ID

Tips

Date ranges: Keep to 30-60 days for faster results Multiple cabins: Search J,F together for premium options Direct flights: Use only_direct=true to filter connections Pagination: Use cursor from response for more results Data freshness: Check ComputedLastSeen - older data may be stale

Reference Documentation

For complete API specification including all fields and response schemas, see references/api-spec.md.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc