cabin

Review·Scanned 2/18/2026

This skill connects an AI agent to Cabin's flight search and booking API (https://api.cabin.team) and supports USDC payments on Base. It instructs network calls to https://api.cabin.team endpoints and running local commands such as node src/send.js, which are security-relevant.

from clawhub.ai·v5886ba2·7.5 KB·0 installs
Scanned from 1.0.0 at 5886ba2 · Transparency log ↗
$ vett add clawhub.ai/kobuta23/cabinReview findings below

✈️ Cabin

Search and book real flights with USDC.

Cabin is an AI agent skill that connects to 500+ airlines via Amadeus and lets you search, compare, and book flights — paid in USDC on Base. No credit cards, no banks.

What It Does

  • Search flights — real-time availability from Amadeus GDS
  • Visual comparison — rendered PNG images of search results
  • Book with USDC — pay on Base, confirmed in seconds
  • Full lifecycle — search → book → pay → confirm → check in

Quick Start

Search

curl -X POST https://api.cabin.team/v1/search \
  -H "Content-Type: application/json" \
  -d '{
    "from": "BKK",
    "to": "NRT",
    "date": "2026-04-01",
    "class": "ECONOMY"
  }'

Returns flight options with prices + a rendered comparison image.

Book

curl -X POST https://api.cabin.team/v1/book \
  -H "Content-Type: application/json" \
  -d '{
    "offer_id": "offer_1",
    "search_id": "abc123",
    "passengers": [{
      "type": "adult",
      "given_name": "John",
      "family_name": "Doe",
      "email": "john@example.com",
      "born_on": "1990-01-15",
      "gender": "m"
    }]
  }'

Returns a booking reference and USDC payment details on Base.

Pay

Send USDC to the deposit address on Base, or use the checkout URL. Booking confirms automatically after payment.

Check Status

curl https://api.cabin.team/v1/booking/CBN-2026-XXXX

API

EndpointMethodDescription
/v1/searchPOSTSearch flights
/v1/bookPOSTCreate a booking
/v1/booking/:idGETCheck booking status
/v1/booking/:id/confirmationGETConfirmation page
/v1/booking/:id/checkinGETCheck-in page

Payment

  • Chain: Base (Ethereum L2)
  • Token: USDC (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)
  • Gas: ~$0.01
  • Confirmation: ~2 seconds

For AI Agents

See SKILL.md for the full agent skill definition — includes detailed parameters, response formats, workflow examples, and error handling. Drop it into any agent framework that supports skill files.

Links


Built by YoloMaxi. Flights powered by Amadeus. Payments powered by Base.