Pay-per-request access to flights, 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
19
Uptime
100%
Avg latency
105ms
Checks
160
Status
Healthy
Discovered from on-chain x402 payment activity. Prices shown are per-call in USDC.
Search tours and activities within a geographic square
Get details of a specific tour or activity
Search tours and activities near a location
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 the canonical airport code for a given airport identifier
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 forecast (TAF) for a specific airport
Get weather observations (METAR) for a specific airport
Find airports near a given latitude/longitude coordinate
Get disruption counts by entity type (airline, origin, destination)
Get disruption counts for a specific entity
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 map image (PNG) of the flight track
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)
Advanced flight search with extended query syntax
Count the number of flights matching a search query
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 image (PNG)
Get the filed route for a historical flight
Get the historical flight track (position history)
Get historical flights for an operator
Search flight availabilities
Create a flight booking order
Get airline check-in page links
Retrieve a flight order by ID
Cancel a flight order by ID
Get confirmed pricing for flight offers
Search flight offers with advanced criteria
Get seatmaps for flight offers
# 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.