Discover/JetSMART API
live

JetSMART APIjetsmart.com

Search JetSMART flights, list all routes and airports, check flight status, and retrieve low-fare calendars via a structured REST API.

Endpoint health
verified 4d ago
get_available_routes
search_flights
get_low_fare_calendar
get_flight_status
get_available_airports
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the JetSMART API?

The JetSMART API covers 5 endpoints for querying the airline's full route network, live flight schedules, and fare data across South America. Use search_flights to pull available departures with pricing in six currencies including ARS, CLP, and USD, or call get_low_fare_calendar to see the minimum fare across future dates on any route. All endpoints return structured JSON with no authentication required from the caller.

Try it

No input parameters required.

api.parse.bot/scraper/96baae34-7ff5-4f93-9e8a-0f046cc0cec1/<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/96baae34-7ff5-4f93-9e8a-0f046cc0cec1/get_available_airports' \
  -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 jetsmart-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.

from parse_apis.jetsmart_flight_scraper_api import JetSmart, Airport, Flight, LowFare, Route, Price, AirportCode

client = JetSmart()

# List all airports in JetSMART's network
for airport in client.airports.list(limit=5):
    print(airport.id, airport.name, airport.country, airport.latitude, airport.longitude)

# List available routes
for route in client.routes.list(limit=5):
    print(route.origin_id, route.origin_name, route.destination_id, route.country)

# Search flights from Santiago to Buenos Aires using enum codes
for flight in client.flights.search(origin=AirportCode.SCL, destination=AirportCode.AEP, date="2026-07-01"):
    print(flight.flight_number, flight.origin, flight.destination, flight.departure_time)
    print(flight.price.usd, flight.price.clp, flight.seats_remaining, flight.type)

# Get low fare calendar for a route
for entry in client.lowfares.list(origin=AirportCode.SCL, destination=AirportCode.AEP):
    print(entry.date, entry.min_price_clp)

# Check flight status on a specific date and route
for flight in client.flights.status(origin=AirportCode.SCL, destination=AirportCode.AEP, date="2026-07-01", flight_number="731"):
    print(flight.flight_number, flight.departure_time, flight.fare_basis)
    print(flight.price_info.usd, flight.incentive.usd)
All endpoints · 5 totalmissing one? ·

Retrieve all airports in JetSMART's network. Each airport includes IATA code, name, country, coordinates, and a list of destination codes reachable from it. The full network is returned in a single page; no parameters needed.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "airports": "array of airport objects with id, name, country, country_iso, latitude, longitude, and destinations"
  },
  "sample": {
    "data": {
      "airports": [
        {
          "id": "SCL",
          "name": "Santiago",
          "country": "Chile",
          "latitude": -33.393,
          "longitude": -70.786,
          "country_iso": "CL",
          "destinations": [
            "AEP",
            "ANF",
            "AQP"
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the JetSMART API

Airports and Routes

get_available_airports returns every airport in JetSMART's network as an array of objects, each with an IATA code (id), display name, country, ISO country code, latitude, longitude, and a list of connected destination codes. get_available_routes organizes the same network as origin-destination pairs grouped by country, returning origin_id, origin_name, destination_id, and country for every route JetSMART operates.

Flight Search and Fares

search_flights accepts a required origin IATA code and optional destination and date parameters. When destination is omitted, the endpoint returns all departing flights from the origin across the entire network. When date is omitted, it searches all available future dates. Each flight object in the response includes flight_number, departure_time, fare_basis, price, price_info, incentive, and seats_r (remaining seats indicator). Prices are returned in six currencies: ARS, BRL, CLP, COP, PEN, and USD.

get_low_fare_calendar takes a required origin and destination and returns a date-indexed array of min_price_clp values, giving a quick view of the cheapest available fare per day across the route's future schedule. This is useful for building flexible-date search tools.

Flight Status

get_flight_status returns scheduled flight data for a specific route and date. It requires origin, destination, and date, and optionally accepts a flight_number to filter results to a single departure. The response mirrors the flight object shape from search_flights, including departure_time, fare_basis, price_info, and seats_r.

Reliability & maintenanceVerified

The JetSMART API is a managed, monitored endpoint for jetsmart.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jetsmart.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 jetsmart.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
4d ago
Latest check
5/5 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
  • Build a flexible-date fare finder using get_low_fare_calendar to surface the cheapest travel days on a given route.
  • Populate a route map by combining get_available_airports latitude/longitude fields with destination arrays.
  • Monitor seat availability on specific departures using seats_r from get_flight_status.
  • Aggregate multi-currency price data from search_flights to compare CLP, ARS, and USD fare levels over time.
  • Track schedule changes on a specific flight number by polling get_flight_status with the optional flight_number filter.
  • Enumerate JetSMART's full network for competitive analysis using get_available_routes country groupings.
  • Notify users of fare drops on a watched route by comparing min_price_clp values from repeated get_low_fare_calendar calls.
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 JetSMART have an official public developer API?+
JetSMART does not publish a documented public developer API. The Parse API surfaces flight availability, route, and schedule data from jetsmart.com in a structured format that developers can query directly.
What does `search_flights` return when no destination is specified?+
When destination is omitted, the endpoint returns all available flights departing from the given origin across every destination in JetSMART's network. Each flight object includes flight_number, departure_time, fare_basis, price in multiple currencies, price_info, incentive, and seats_r. The response-level destination field will be null in this case.
Are prices available in currencies other than CLP?+
search_flights and get_flight_status return fare data in six currencies: ARS, BRL, CLP, COP, PEN, and USD. get_low_fare_calendar returns only min_price_clp. If you need low-fare calendar data in other currencies, you can fork this API on Parse and revise the endpoint to expose additional currency fields.
Does the API cover booking, passenger data, or ancillary services like baggage fees?+
Not currently. The API covers flight availability, route network, schedules, fare prices, and seat availability indicators. Booking flows, passenger records, check-in data, and ancillary pricing are not exposed. You can fork this API on Parse and revise it to add endpoints targeting those data types.
How fresh is the flight schedule data returned by `get_flight_status`?+
The data reflects what JetSMART's systems expose for the queried route and date at the time of the request. Because the endpoint is not cached on a fixed schedule, results represent a current snapshot. Departure times and availability can change, so time-sensitive applications should re-query before presenting data to end users.
Page content last updated . Spec covers 5 endpoints from jetsmart.com.
Related APIs in TravelSee all →
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.
smiles.com.br API
Search for available flights on Smiles and compare fares across one-way and round-trip routes. Retrieve pricing for standard Smiles, Clube Smiles, and Smiles+Money fare types, including miles requirements, cash portions, and applicable taxes.
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.
despegar.com.ar API
Search and book flights on Despegar.com.ar by exploring real-time flight offers, autocompleting destinations, and comparing travel options across multiple routes. Get instant access to current promotions and home page deals to find the best prices for your next trip.
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.
skiplagged.com API
Search for flights across airlines including hidden-city ticketing options, and look up airport information by name or code to find the best travel deals. Access Skiplagged's flight inventory and routing data to discover cheaper itineraries and alternative airport combinations.
wizzair.com API
Search for Wizz Air flights and compare prices across dates with interactive price calendars, while discovering available routes and airports to plan your budget travel. Find the best fares for your desired destination and access complete flight timetables for any route.
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.