Discover/smiles.com.br API
live

smiles.com.br APIsmiles.com.br

Search Smiles miles redemption flights via API. Get pricing across Smiles, Clube Smiles, and Smiles+Money fare types for one-way and round-trip routes.

Endpoints
1
Updated
3mo ago
Try it
Number of adult passengers
Origin airport 3-letter IATA code (e.g. GRU, CGH, MIA)
Number of infant passengers
Number of child passengers
Trip type: 1 for one-way, 2 for round-trip
Destination airport 3-letter IATA code (e.g. MIA, GIG, LIS)
Return date in YYYY-MM-DD format or Unix timestamp in milliseconds. Required when trip_typ
Departure date in YYYY-MM-DD format or Unix timestamp in milliseconds
api.parse.bot/scraper/53b04628-2b65-4375-964f-37ec2643d834/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/53b04628-2b65-4375-964f-37ec2643d834/search_flights?origin=GRU&destination=MIA&departure_date=2026-05-20' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Search for available flights using Smiles miles. Returns flight options with pricing across multiple fare types (Smiles, Clube Smiles, Smiles+Money, Smiles+Money Club). Supports both one-way and round-trip searches. Results include departure/arrival times, duration, stops, airline, and seat availability.

Input
ParamTypeDescription
adultsintegerNumber of adult passengers
originrequiredstringOrigin airport 3-letter IATA code (e.g. GRU, CGH, MIA)
infantsintegerNumber of infant passengers
childrenintegerNumber of child passengers
trip_typeintegerTrip type: 1 for one-way, 2 for round-trip
destinationrequiredstringDestination airport 3-letter IATA code (e.g. MIA, GIG, LIS)
return_datestringReturn date in YYYY-MM-DD format or Unix timestamp in milliseconds. Required when trip_type is 2 (round-trip).
departure_daterequiredstringDeparture date in YYYY-MM-DD format or Unix timestamp in milliseconds
Response
{
  "type": "object",
  "fields": {
    "flights": "array of flight objects with segment_type, airline, flight_number, departure/arrival times, duration, stops, cabin, available_seats, and pricing across fare types (smiles, clube_smiles, smiles_money, smiles_money_club)"
  },
  "sample": {
    "data": {
      "flights": [
        {
          "cabin": "ECONOMIC",
          "stops": 0,
          "origin": "GRU",
          "airline": "AMERICAN AIRLINES",
          "pricing": {
            "smiles": {
              "tax": 142.94,
              "miles": 71000,
              "money": 0
            },
            "clube_smiles": {
              "tax": 142.94,
              "miles": 67300,
              "money": 0
            },
            "smiles_money": {
              "tax": 142.94,
              "miles": 3600,
              "money": 1400
            },
            "smiles_money_club": {
              "tax": 142.94,
              "miles": 3300,
              "money": 1280
            }
          },
          "duration": "8h 30m",
          "stops_text": "Direto",
          "destination": "MIA",
          "airline_code": "AA",
          "arrival_time": "06:45",
          "segment_type": "SEGMENT_1",
          "flight_number": "AA 906",
          "departure_time": "23:15",
          "available_seats": 7
        }
      ]
    },
    "status": "success"
  }
}

About the smiles.com.br API

The Smiles.com.br API exposes 1 endpoint — search_flights — that returns available award flight options redeemable with Smiles miles. A single call returns flight objects covering departure and arrival times, duration, stop count, cabin class, seat availability, and miles pricing across four distinct fare types: standard Smiles, Clube Smiles, Smiles+Money, and Smiles+Money Club.

What the API Returns

The search_flights endpoint accepts an origin and destination as 3-letter IATA airport codes (e.g. GRU, MIA, LIS) along with a departure_date in YYYY-MM-DD format or Unix timestamp in milliseconds. It returns an array of flight objects, each carrying segment_type, airline, flight_number, departure and arrival timestamps, total duration, number of stops, cabin class, and available_seats.

Fare Types and Passenger Configuration

Each flight result surfaces pricing across multiple fare categories — standard Smiles miles, Clube Smiles (the loyalty tier), Smiles+Money (a split miles-and-cash option), and Smiles+Money Club — so callers can directly compare the miles requirement and any cash co-pay across redemption strategies. Passenger counts are configurable per search: the adults, children, and infants parameters let you price out the exact party size.

Trip Type Support

Set trip_type to 1 for a one-way search or 2 for a round-trip. When requesting a round-trip, include return_date alongside departure_date. Both date fields accept either YYYY-MM-DD strings or Unix timestamps in milliseconds, giving flexibility for integrations that already work in epoch time.

Coverage and Scope

Results reflect routes and inventory available through the Smiles program, which includes TAM/LATAM, GOL, and partner airlines operating in Brazil and internationally. Availability and fare-type options depend on the route and travel date — not all four fare types will appear on every flight result.

Common use cases
  • Compare miles costs across Smiles, Clube Smiles, and Smiles+Money fare types for a GRU–MIA route before booking
  • Monitor award seat availability on specific routes to alert users when seats open up
  • Build a miles-value calculator that converts the miles requirement and cash portion into a per-mile valuation
  • Aggregate round-trip redemption costs for popular Brazil–Europe routes across a date range
  • Display stop count and duration data to help travelers choose direct versus connecting award flights
  • Power a family travel planner that prices itineraries for mixed adult, child, and infant passenger groups
  • Track cabin class availability (economy vs. business) on partner airline routes within the Smiles network
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Smiles have an official public developer API?+
Smiles does not publish a documented public developer API or self-service API portal. Access to programmatic flight search data is not officially offered to third-party developers.
What does the search_flights endpoint return for each flight result?+
Each object in the flights array includes segment_type, airline name, flight_number, departure and arrival datetimes, total flight duration, number of stops, cabin class, available_seats, and miles pricing broken down by fare type (Smiles, Clube Smiles, Smiles+Money, Smiles+Money Club). Not every fare type will be populated for every flight — availability depends on the route and inventory.
Does the API return hotel, car rental, or non-flight Smiles redemption options?+
No. The API currently covers only flight redemptions via the search_flights endpoint. Smiles also allows miles redemption for hotels, car rentals, and experiences on its platform, but those are not included. You can fork this API on Parse and revise it to add endpoints covering those redemption categories.
Can I retrieve multi-city or open-jaw itineraries?+
The current trip_type parameter supports one-way (1) and round-trip (2) searches only. Multi-city or open-jaw routing is not covered. You can fork this API on Parse and revise it to add a multi-segment search endpoint if that structure is needed.
How fresh is the availability and pricing data returned by the API?+
Results reflect availability at the time of each API call. Award inventory on Smiles can change frequently — seats and fare-type options shown in one response may not be present in a subsequent call, especially for high-demand routes or dates close to departure.
Page content last updated . Spec covers 1 endpoint from smiles.com.br.
Related APIs in TravelSee all →
culturetrip.com API
Discover travel inspiration and plan your next adventure by browsing curated travel articles, destination guides, and bookable trips organized by region and city. Search for specific destinations, compare trip dates and prices, and explore popular cities to find the perfect getaway.
sevenrooms.com API
Search for available restaurant tables across any SevenRooms venue, view venue details and open dates, and complete reservations all in one place. Whether you're planning ahead or booking last-minute, you can check real-time availability and secure your table at thousands of restaurants on the SevenRooms platform.
delta.com API
Look up Delta Airlines flight schedules, check real-time flight status, and retrieve detailed trip information to plan your travel. Find your nearest airport and access the data you need to monitor flights and make booking decisions.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
comedymothership.com API
Browse upcoming Comedy Mothership shows across different rooms, check real-time ticket availability, and get detailed information about Kill Tony events and seating options. Find venue details, FAQs, and track specific performances to plan your comedy night.
burningman.org API
Access comprehensive Burning Man information including Black Rock City event schedules, ticketing details, themed activities, playa events, volunteering opportunities, and mutant vehicle listings. Search global Burning Man events, stay updated with news and stories, and find preparation resources all in one place.
breckenridge.com API
Check real-time snow conditions, weather forecasts, lift operations, and trail status at Breckenridge Ski Resort to plan your day on the mountain. View live mountain cameras and get up-to-the-minute updates on slopes, lifts, and weather before you head out.
united.com API
Search United Airlines flights, check real-time flight status, and view detailed seat maps to plan your perfect trip. Compare fare options and use airport autocomplete to quickly find your departure and arrival cities.