This tool is no longer present in the server's latest manifest. Showing the last observed version (server version 0.1.0).
search_flights
InactiveTool of Pointify Travel
declared in 0.1.0
Search for flight deals between two airports on a given date. Returns cash fares and/or award availability from multiple sources (Duffel, SerpApi, Seats.aero).
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"origin",
"destination",
"date"
],
"properties": {
"date": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "Departure date in YYYY-MM-DD format"
},
"origin": {
"type": "string",
"maxLength": 3,
"minLength": 3,
"description": "IATA airport code for departure (e.g. JFK)"
},
"cabinClass": {
"enum": [
"economy",
"premium_economy",
"business",
"first"
],
"type": "string",
"description": "Cabin class (default: economy)"
},
"returnDate": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "Return date in YYYY-MM-DD format (omit for one-way)"
},
"searchType": {
"enum": [
"cash",
"points",
"both"
],
"type": "string",
"description": "Search for cash fares, award availability, or both (default: both)"
},
"destination": {
"type": "string",
"maxLength": 3,
"minLength": 3,
"description": "IATA airport code for arrival (e.g. LAX)"
}
},
"additionalProperties": false
}Parent server
Pointify Travel
1/7 registries