Discover/Skiplagged API
live

Skiplagged APIskiplagged.com

Search Skiplagged flights including hidden-city itineraries and look up airports by name or code. Returns segments, pricing, duration, and routing data.

Endpoint health
verified 5d ago
search_flights
search_airports
2/2 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the Skiplagged API?

The Skiplagged API provides 2 endpoints for searching flight itineraries and resolving airport codes. The search_flights endpoint returns full itinerary objects — including hidden-city routing options — with per-segment breakdowns, pricing, and total duration. A companion search_airports endpoint resolves city names, airport names, or IATA codes to structured airport records for use in flight queries.

Try it
Destination airport IATA code (e.g. LAX, JFK, ORD)
Origin airport IATA code (e.g. JFK, ICT, ORD)
Sort order for results.
Number of adult passengers.
Departure date in YYYY-MM-DD format. If omitted, defaults to 14 days from today.
Return date in YYYY-MM-DD format for round-trip searches. Omit for one-way.
Number of child passengers.
Maximum number of itineraries to return.
api.parse.bot/scraper/7436ece9-4ae0-4c5f-adf5-c4d8c10f7e5e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7436ece9-4ae0-4c5f-adf5-c4d8c10f7e5e/search_flights?to=LAX&from=JFK&sort=cost&adults=1&depart=2026-07-21&return=2026-07-28&children=0&max_results=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace skiplagged-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Skiplagged Flight Search — find hidden-city deals and resolve airports."""
from parse_apis.skiplagged_flight_search_api import Skiplagged, Sort, InvalidInput

client = Skiplagged()

# Resolve an airport name to its IATA code.
airport = client.airports.search(term="Chicago", limit=3).first()
if airport:
    print(f"Airport: {airport.label} ({airport.code})")

# Search for cheap flights from JFK to LAX, sorted by cost.
for flight in client.itineraries.search(
    from_airport="JFK", to_airport="LAX", sort=Sort.COST, limit=5
):
    hidden = " [HIDDEN-CITY]" if flight.is_hidden_city else ""
    print(f"${flight.price:.0f} | {flight.origin}→{flight.destination} | "
          f"{flight.total_duration} | {flight.num_stops} stops{hidden}")
    for seg in flight.segments:
        print(f"  {seg.flight_number}: {seg.from_airport}→{seg.to_airport} "
              f"depart {seg.departure_time}")

# Handle invalid input gracefully.
try:
    client.itineraries.search(
        from_airport="JFK", to_airport="LAX", sort=Sort.DURATION, limit=1
    ).first()
except InvalidInput as exc:
    print(f"Invalid input: {exc}")

print("exercised: airports.search / itineraries.search / Sort enum / InvalidInput catch")
All endpoints · 2 totalmissing one? ·

Search for flight itineraries between two airports on a given date. Returns all available flights including hidden-city itineraries with full segment details, pricing, and duration. Results are sorted by price by default. Polls for additional results automatically. Each itinerary includes segments with airline, timing, and duration; a hidden-city flag when the booked route is longer than the intended destination; and a booking link. Pagination is not supported — the max_results param caps the total returned in one call.

Input
ParamTypeDescription
torequiredstringDestination airport IATA code (e.g. LAX, JFK, ORD)
fromrequiredstringOrigin airport IATA code (e.g. JFK, ICT, ORD)
sortstringSort order for results.
adultsstringNumber of adult passengers.
departstringDeparture date in YYYY-MM-DD format. If omitted, defaults to 14 days from today.
returnstringReturn date in YYYY-MM-DD format for round-trip searches. Omit for one-way.
childrenstringNumber of child passengers.
max_resultsintegerMaximum number of itineraries to return.
Response
{
  "type": "object",
  "fields": {
    "to": "string - destination airport code",
    "from": "string - origin airport code",
    "depart_date": "string - departure date in YYYY-MM-DD format",
    "itineraries": "array of itinerary objects with origin, destination, segments, pricing, and duration",
    "return_date": "string or null - return date if round trip",
    "total_results": "integer - number of itineraries returned"
  },
  "sample": {
    "data": {
      "to": "LAX",
      "from": "JFK",
      "depart_date": "2026-06-25",
      "itineraries": [
        {
          "price": 284,
          "origin": "JFK",
          "currency": "USD",
          "segments": [
            {
              "to_airport": "LAX",
              "airline_code": "AA",
              "airline_name": "American Airlines",
              "arrival_time": "2026-06-25T10:22:00-07:00",
              "from_airport": "JFK",
              "flight_number": "AA1",
              "departure_time": "2026-06-25T07:05:00-04:00",
              "duration_seconds": 22620
            }
          ],
          "num_stops": 0,
          "flight_key": "321c3c1",
          "cabin_class": "Economy",
          "destination": "LAX",
          "booking_link": "https://skiplagged.com/flights/JFK/LAX/2026-06-25",
          "is_hidden_city": true,
          "total_duration": "6h 17m",
          "total_duration_seconds": 22620
        }
      ],
      "return_date": null,
      "total_results": 50
    },
    "status": "success"
  }
}

About the Skiplagged API

Flight Search

The search_flights endpoint accepts origin (from) and destination (to) airport codes, a depart date in YYYY-MM-DD format, and an optional return date for round-trip queries. You can specify the number of adults and children, control result ordering with the sort parameter (accepted values: cost, duration, departure), and cap results with max_results. The response includes an itineraries array where each object carries origin, destination, individual flight segments, pricing, and total duration. Results default to price-sorted order. The total_results field reports how many itineraries were returned, and return_date is null for one-way searches.

Hidden-City Itineraries

Skiplagged is specifically known for surfacing hidden-city itineraries — routes where the final ticketed destination is cheaper than the actual stop you want. The search_flights response includes these alongside conventional itineraries in the same itineraries array, with segment-level detail that identifies the full routing. No separate flag or filter is required; they appear in the unified result set.

Airport Search

The search_airports endpoint takes a single term string — a city name like "New York", an airport name, or an IATA code like "LAX" — and returns a hints array. Each hint object contains title, subtitle, label, code, and city fields, making it straightforward to build autocomplete flows or resolve ambiguous input before passing codes to search_flights. The response also includes a success boolean and a duration field indicating query time in seconds.

Reliability & maintenanceVerified

The Skiplagged API is a managed, monitored endpoint for skiplagged.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when skiplagged.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official skiplagged.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Find the cheapest one-way fares between two cities on a specific date, sorted by cost
  • Identify hidden-city itineraries where a connecting stop is cheaper than a direct fare
  • Build a flight search autocomplete using airport name or code resolution from search_airports
  • Compare flight duration vs. price trade-offs using the duration sort option on search_flights
  • Retrieve round-trip itineraries by supplying both depart and return date parameters
  • Resolve ambiguous city or airport input (e.g. 'Chicago') to a specific IATA code before querying flights
  • Enumerate available itineraries for multi-passenger bookings by setting the adults and children params
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Skiplagged have an official developer API?+
Skiplagged does not publish a public developer API or documented REST endpoints for third-party use. This Parse API provides structured access to Skiplagged flight and airport data.
What does the itineraries array in search_flights actually contain?+
Each itinerary object includes the origin and destination airport codes, an array of flight segments with routing detail, pricing information, and total trip duration. Both conventional and hidden-city itineraries appear in the same array — there is no separate field to distinguish them at the top level, so downstream logic should inspect segment destinations to identify hidden-city options.
Can I search for multi-city or open-jaw itineraries?+
Not currently. The search_flights endpoint supports one-way (depart only) and round-trip (depart plus return) searches between a single origin-destination pair. You can fork this API on Parse and revise it to add a multi-city or open-jaw endpoint if your use case requires it.
Does the API return fare class, baggage allowance, or airline-specific booking details?+
The response includes pricing, segment routing, and duration but does not currently expose fare class codes, baggage policies, or deep-link booking URLs. You can fork the API on Parse and revise it to surface additional booking metadata if those fields are available in the source data.
What happens if I omit the depart date in search_flights?+
If the depart parameter is omitted, the API defaults to a departure date 14 days from today. The response always echoes back the resolved depart_date in YYYY-MM-DD format so you can confirm which date was used.
Page content last updated . Spec covers 2 endpoints from skiplagged.com.
Related APIs in TravelSee all →
skyscanner.com API
Search for flights and compare prices across multiple booking agents, while exploring airports and cities to plan your trip. View daily and monthly price calendars to find the best deals for your travel dates.
skyscanner.co.in API
Search for flights worldwide and compare prices with autocomplete suggestions for airports and destinations. View price calendars to find the cheapest travel dates and explore real-time flight availability and pricing.
justfly.com API
Search flights and get airport suggestions to find the best deals on JustFly.com, with instant access to flight details and trending destinations. Discover discounted airfare offers and compare flight options all in one place.
us.trip.com API
Search for flights across Trip.com and view a low-price calendar to find the cheapest travel dates for your destination. Compare flight options and prices to book your next trip at the best rates available.
skyairline.com API
Search for flights across SKY Airline routes, explore available airports and travel options, and discover current promotions and brand offerings. Plan your trip efficiently by browsing the airline's complete route network and accessing exclusive deals in one place.
flightconnections.com API
Search for flights with detailed information about pricing, schedules, and layover options to find the best travel connections for your trips. Compare multiple flight choices and their costs in one convenient search.
aircanada.com API
Search for Air Canada flights between any two airports and compare pricing across all fare families, from Basic to Business class, along with complete schedule and segment details. Find the perfect flight option with transparent pricing and full flight information to make your booking decision.
expedia.com API
Search for hotels and flights across Expedia while viewing detailed property information to compare prices and amenities for your travel plans. Get comprehensive travel options all from one integration without manually browsing the website.