Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.
Price
from $0.0010
up to $0.4000 per request
Network
base
Category
other
On-chain txns
775
Uptime
100%
Avg latency
102ms
Checks
79
Status
Healthy
Discovered from on-chain x402 payment activity. Prices shown are per-call in USDC.
Get all current airport delays across the system
Get detailed information for a specific airport by its code
Get current delay information for a specific airport
Get all flights (arrivals, departures, enroute, scheduled) for an airport
Get arrival flights for a specific airport
Get flight counts (departed, enroute, scheduled) for a specific airport
Get departure flights for a specific airport
Get scheduled arrival flights for a specific airport
Get scheduled departure flights for a specific airport
Get flights from one airport to another specific destination airport
Get airports near a specific airport
Get routes between two airports with historical filing data
Get weather observations (METAR) for a specific airport
Get disruption counts by entity type (airline, origin, destination)
Get flight information by ident (designator, registration, or fa_flight_id)
Get the canonical flight identifier for a given ident
Set a flight intent for push notifications
Get a flight track map payload (proxied from FlightAware)
Get the latest position for a flight by fa_flight_id
Get the filed route for a flight
Search for flights by query string (-latlong, -idents, -airline syntax)
Advanced flight search with extended query syntax
Search for flights with position data
Get the last flight for an aircraft by registration
Get historical airport arrivals
Get historical airport departures
Get historical flights from one airport to another
Get historical flight information by ident
Get a historical flight map payload (proxied from FlightAware)
Get the filed route for a historical flight
Get the historical flight track (position history)
Get booking options for a specific flight. Requires a departure_token from a search result.
Search Google Flights for flight offers. Returns best flights, other flights, price insights, and airport info.
Retrieve bulk cached Seats.aero award availability for a mileage program, optionally filtered by region, date, and cabin.
Search cached Seats.aero award availability by origin, destination, dates, cabin, carriers, and pagination.
Retrieve flight-level trip details and booking links for a Seats.aero availability ID.
# one-time setup
npx @apihubio/cli register
npx @apihubio/cli topup 10
# call it
npx @apihubio/cli call https://stabletravel.dev \
-X POST \
-d '{ /* check provider docs for input */ }'
# or save it to Claude/Cursor/Codex
npx @apihubio/cli install
npx @apihubio/cli add https://stabletravel.devimport { wrapFetchWithPayment } from "@x402/fetch";
import { createWalletClient, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { base } from "viem/chains";
const account = privateKeyToAccount("0xYOUR_PRIVATE_KEY");
const client = createWalletClient({ account, chain: base, transport: http() });
const x402Fetch = wrapFetchWithPayment(client);
const res = await x402Fetch("https://stabletravel.dev", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ /* check provider docs for input */ }),
});
const data = await res.json();This is an external service not operated by APIHub. Listing data is sourced from public on-chain records and third-party indexes. Payment goes directly to the service provider via the x402 protocol. APIHub does not guarantee availability, accuracy, or quality of external services.