Flights
Description: Provides flight information, schedules, prices, and booking options for different airlines and routes.
API Response Structure:
{
"flights": [
{
"company": "United Airlines",
"from": "New York (JFK)",
"duration": "2h 30m",
"type": "Direct",
"price": "$299"
}
],
"hasForm": true,
"hasMore": true,
"type": "instantAnswers",
"configType": "flights"
}
Fields:
-
flights(array): List of available flights-
company(string): Airline name -
from(string): Departure location -
duration(string): Flight duration -
type(string): Flight type (Direct/Connecting) -
price(string): Ticket price
-
-
hasForm(boolean): If search form is available -
hasMore(boolean): If more results are available -
type(string): Always "instantAnswers" -
configType(string): Always "flights"
