Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.
Price
from $0.0010
up to $0.2800 per request
Network
base
Category
other
On-chain txns
82
Uptime
99%
Avg latency
234ms
Checks
94
Status
Healthy
Discovered from on-chain x402 payment activity. Prices shown are per-call in USDC.
List all airports with optional pagination
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 scheduled arrival flights for a specific airport
Get routes between two airports with historical filing data
Get weather forecast (TAF) for a specific airport
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 the latest position for a flight by fa_flight_id
Get the filed route for a flight
Get the flight track (position history) for a flight
Search for flights by query string (-latlong, -idents, -airline syntax)
Count the number of flights matching a search query
Get historical airport arrivals
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 historical flights for an operator
Search flight availabilities
Cancel a flight order by ID
Get confirmed pricing for flight offers
Search flight offers with advanced criteria
Search flight offers with advanced criteria
# 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.