company, departure_airport, arrival_airport, departure, departure_time, fare_type, carry_on, and segments).⚠️ Important: Prices in the dataset are those of round-trip tickets. Buying the same legs separately as one-way flights usually costs more. This reflects IBGE’s official inflation measurement approach.
fare_type for Google Flights Datafare_type field will always be set to UNKNOWN.⚠️ Important: Even though the specific fare type is unknown, the price already reflects the fare class returned by Google at the time of scraping. In other words, the price is valid and comparable but the exact class (Economy/Business/Promo/etc.) cannot be identified.
curl --location --request GET 'https://api.fintatica.com.br/v1/ipca/flights' \
--header 'x-api-key: <api-key>'{
"success": true,
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"collected_date": "2025-09-25",
"source": "Google Flights",
"company": "GOL",
"departure_airport": "SDU",
"arrival_airport": "GRU",
"departure": "2025-09-25",
"departure_time": "15:45",
"arrival_time": "14:10",
"price": 764.4,
"fare_type": "ECONOMY",
"carry_on": true,
"segments": 0
}
]
}