The catalog
Every API, one clean contract.
64 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Reputation & Reviews
8 APIsE-commerce & Marketplaces
13 APIsReal Estate
5 APIsJobs & Hiring
6 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
3 APIsMedia, Social & Knowledge
13 APIsUtilities & AI
7 APIsFlights
live/flights · 2 endpoints
post/flights/v1/search_flights2 creditsflight search: `origin` + `destination` (city name OR IATA) + `depart_date` (+ optional `return_date`) → flights[]{price{amount,currency}, segments[]{carrier,carrier_code,flight_no,departure,arrival}, duration_seconds, booking_url, origin, destination}. One-way or return (outbound/inbound legs). `limit` caps results.
origin*destination*depart_date*return_datelimit
{
"origin": "London",
"destination": "New York",
"depart_date": "2026-07-07",
"limit": 5
}Try in playground →post/flights/v1/search_places1 creditresolve a city/airport `query` → Kiwi place ids → places[]{id,name,type} (use for origin/destination resolution).
query*
{
"query": "London"
}Try in playground →