List My Flights
flighty_list_flightsList your flights from Flighty, with options to filter by upcoming departures, specific year, and paginate results.
Instructions
List the user's flights from Flighty. Does NOT include friends' flights (use flighty_list_friend_flights for that).
Filtering:
No filter: returns ALL flights (upcoming + past), sorted by departure date descending (most recent first)
upcoming_only=true: only flights with future departures, sorted soonest first — the first result is the user's next flight
year=2025: only flights from that year, sorted descending (matches the app's past-by-year view)
NOTE: upcoming_only only returns flights that have not yet departed. For the user's current travel context (in-progress flights, recently landed, about to depart), use flighty_current_flights instead.
All timestamps are UTC.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| upcoming_only | No | Only return flights departing in the future (sorted soonest first) | |
| year | No | Filter to a specific year (e.g. 2025). Shows past flights from that year, matching the Flighty app's year view. | |
| limit | No | Maximum number of flights to return | |
| offset | No | Number of flights to skip for pagination |