diff --git a/PortugalBudget.ods b/PortugalBudget.ods new file mode 100644 index 0000000..7fc57db Binary files /dev/null and b/PortugalBudget.ods differ diff --git a/inspiration/TingSomSkalTilføjes/CalenderMaker.py b/inspiration/TingSomSkalTilføjes/CalenderMaker.py deleted file mode 100644 index d93a926..0000000 --- a/inspiration/TingSomSkalTilføjes/CalenderMaker.py +++ /dev/null @@ -1,32 +0,0 @@ -import calendar -from datetime import date, timedelta - -def skriv_datoer_med_formattering(år): - start_dato = date(år, 1, 1+10) - slut_dato = date(år, 12, 29) - dags_differens = timedelta(days=1) - - print(f"Datoer for året {år}:\n") - resultat = [] - nuværende_dato = start_dato - while nuværende_dato <= slut_dato: - ugenummer = nuværende_dato.isocalendar()[1] - ugedag = nuværende_dato.strftime("%A") - - if ugenummer % 2 != 0 and ugedag in ["Friday", "Wednesday"]: - # Tabuler outputtet længere ind - if ugedag == "Friday": - print(f"{nuværende_dato.strftime('%Y-%m-%d')} Til Porto fra København") - resultat.append({'date': nuværende_dato.strftime('%Y-%m-%d'), 'orgin': 'CPH', 'dest': 'LIS','uge':ugenummer, 'month':nuværende_dato.month}) - - if ugedag == "Wednesday": - print(f"{nuværende_dato.strftime('%Y-%m-%d')} Til København fra Porto") - resultat.append( { 'date': nuværende_dato.strftime( '%Y-%m-%d' ), 'orgin': 'LIS', 'dest': 'CPH','uge':ugenummer,'month':nuværende_dato.month} ) - - - - nuværende_dato += dags_differens - print(resultat) -# Kald funktionen med det ønskede år -skriv_datoer_med_formattering(2025) - diff --git a/inspiration/TingSomSkalTilføjes/FlightPlain.py b/inspiration/TingSomSkalTilføjes/FlightPlain.py index 339451b..361609f 100644 --- a/inspiration/TingSomSkalTilføjes/FlightPlain.py +++ b/inspiration/TingSomSkalTilføjes/FlightPlain.py @@ -1,18 +1,31 @@ import json import time from datetime import datetime + +import pandas as pd from amadeus import Client, ResponseError +import calender_maker +from inspiration.TingSomSkalTilføjes.calender_maker import CalenderMaker # OopCompanion:suppressRename class AmadeusClient: - def __init__(self, client_id: str, client_secret: str): + def __init__(self, prod=bool): """ Initialize the Amadeus API client. """ - self.client = Client(client_id=client_id, client_secret=client_secret,hostname="production") + if prod: + client_id = "ABRGQv6U7IWAYxwwmjqAOPUDGvuFMSjw" + client_secret = "BcwpSKf3FICJIxaw" + self.client = Client(client_id=client_id, client_secret=client_secret,host="api.amadeus.com") + print("Getting production Amadeus API client") + else: + client_id = "uxDqIh36xPAUvpXnXynwAnH86pGBdIch" + client_secret = "xTSLooNZpJWantb5" + self.client = Client( client_id = client_id, client_secret = client_secret,host="test.api.amadeus.com" ) + print( "Getting development Amadeus API client" ) def find_cheapest_flights(self, origin: str, destination: str, departure_date: str, adults: int = 1): """ @@ -34,11 +47,13 @@ class AmadeusClient: nonStop="true", ) return response.data + except ResponseError as error: if error.response.status_code == 429: retry_after = error.response.headers.get( 'Retry-After', '60' ) # standard fallback til 60 sekunder print( f"Rate limit reached. Retry after {retry_after} seconds." ) time.sleep( int( retry_after ) ) + print(error) def parse_flight_data(self, flights): @@ -101,26 +116,61 @@ class AmadeusClient: first_departure = parsed_flights[0]["departure"]["iataCode"] last_arrival = parsed_flights[-1]["arrival"]["iataCode"] - return f"{departure_date}: {first_departure} -> {last_arrival} - {average_price:.2f}" - + #return f"{departure_date}: {first_departure} -> {last_arrival} - {average_price:.2f}" + return {"departure_date":departure_date, "departure": first_departure, "arrival": last_arrival,"price": average_price} # Example usage if __name__ == "__main__": - client_id = "ABRGQv6U7IWAYxwwmjqAOPUDGvuFMSjw" - client_secret = "BcwpSKf3FICJIxaw" - travel_days = [{'date': '2025-01-15', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 3, 'month': 1}, {'date': '2025-01-17', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 3, 'month': 1}, {'date': '2025-01-29', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 5, 'month': 1}, {'date': '2025-01-31', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 5, 'month': 1}, {'date': '2025-02-12', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 7, 'month': 2}, {'date': '2025-02-14', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 7, 'month': 2}, {'date': '2025-02-26', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 9, 'month': 2}, {'date': '2025-02-28', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 9, 'month': 2}, {'date': '2025-03-12', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 11, 'month': 3}, {'date': '2025-03-14', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 11, 'month': 3}, {'date': '2025-03-26', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 13, 'month': 3}, {'date': '2025-03-28', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 13, 'month': 3}, {'date': '2025-04-09', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 15, 'month': 4}, {'date': '2025-04-11', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 15, 'month': 4}, {'date': '2025-04-23', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 17, 'month': 4}, {'date': '2025-04-25', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 17, 'month': 4}, {'date': '2025-05-07', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 19, 'month': 5}, {'date': '2025-05-09', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 19, 'month': 5}, {'date': '2025-05-21', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 21, 'month': 5}, {'date': '2025-05-23', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 21, 'month': 5}, {'date': '2025-06-04', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 23, 'month': 6}, {'date': '2025-06-06', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 23, 'month': 6}, {'date': '2025-06-18', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 25, 'month': 6}, {'date': '2025-06-20', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 25, 'month': 6}, {'date': '2025-07-02', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 27, 'month': 7}, {'date': '2025-07-04', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 27, 'month': 7}, {'date': '2025-07-16', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 29, 'month': 7}, {'date': '2025-07-18', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 29, 'month': 7}, {'date': '2025-07-30', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 31, 'month': 7}, {'date': '2025-08-01', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 31, 'month': 8}, {'date': '2025-08-13', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 33, 'month': 8}, {'date': '2025-08-15', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 33, 'month': 8}, {'date': '2025-08-27', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 35, 'month': 8}, {'date': '2025-08-29', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 35, 'month': 8}, {'date': '2025-09-10', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 37, 'month': 9}, {'date': '2025-09-12', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 37, 'month': 9}, {'date': '2025-09-24', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 39, 'month': 9}, {'date': '2025-09-26', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 39, 'month': 9}, {'date': '2025-10-08', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 41, 'month': 10}, {'date': '2025-10-10', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 41, 'month': 10}, {'date': '2025-10-22', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 43, 'month': 10}, {'date': '2025-10-24', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 43, 'month': 10}, {'date': '2025-11-05', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 45, 'month': 11}, {'date': '2025-11-07', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 45, 'month': 11}, {'date': '2025-11-19', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 47, 'month': 11}, {'date': '2025-11-21', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 47, 'month': 11}, {'date': '2025-12-03', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 49, 'month': 12}, {'date': '2025-12-05', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 49, 'month': 12}, {'date': '2025-12-17', 'orgin': 'LIS', 'dest': 'CPH', 'uge': 51, 'month': 12}, {'date': '2025-12-19', 'orgin': 'CPH', 'dest': 'LIS', 'uge': 51, 'month': 12}] + cd = CalenderMaker() + travel_days = cd.get_dates(year = 2025, dest_day="Thursday", orgin_day="Tuesday") + amadeus_client = AmadeusClient( prod = True) + import csv - amadeus_client = AmadeusClient( client_id, client_secret ) - with open( "summery.txt", 'w' ) as fp: + with open( "summery.txt", 'w' ) as fp, open( 'data_csv.csv', "w" ) as fp2: + writer = csv.DictWriter( fp2, fieldnames = ['orgin', 'dest', 'date', 'price','note'] ) + writer.writeheader() for days in travel_days: origin = days['orgin'] destination = days['dest'] departure_date = days['date'] - try: - summary = amadeus_client.get_flight_summary( departure_date, origin, destination ) - print( summary ) - fp.writelines( summary + '\n' ) + try: + summary = amadeus_client.get_flight_summary( departure_date, origin, destination ) + + print(summary) + writer.writerow( { + "orgin": summary["departure_date"], + "dest": summary["departure"], + "date": summary["arrival"], + "price": summary['price'], + "note": "" + } ) + fp.writelines( str(summary) + '\n' ) + except Exception as e: + print( f"Error fetching flight summary for {origin} -> {destination} on {departure_date}" ) + writer.writerow( { + "orgin": origin, + "dest": destination, + "date": departure_date, + "price": 214.0, + "note": "False - Flight not found" + } ) + pass except ResponseError as error: print( f"An error occurred: {error}" ) + df = pd.read_csv( 'data_csv.csv' ) + + # Write the raw data to the first sheet + with pd.ExcelWriter( 'output.xlsx' ) as writer: + df.to_excel( writer, sheet_name = 'Sheet1', index = False ) + + # Calculate the average monthly data + df['date'] = pd.to_datetime( df['date'] ) + df['month'] = df['date'].dt.to_period( 'M' ) + avg_monthly_data = df.groupby( 'month' )['price'].mean().reset_index() + avg_monthly_data.columns = ['Month', 'Average Price'] + + # Write the average monthly data to the second sheet + avg_monthly_data.to_excel( writer, sheet_name = 'Sheet2', index = False ) + diff --git a/inspiration/TingSomSkalTilføjes/__pycache__/calender_maker.cpython-312.pyc b/inspiration/TingSomSkalTilføjes/__pycache__/calender_maker.cpython-312.pyc new file mode 100644 index 0000000..f56178a Binary files /dev/null and b/inspiration/TingSomSkalTilføjes/__pycache__/calender_maker.cpython-312.pyc differ diff --git a/inspiration/TingSomSkalTilføjes/calender_maker.py b/inspiration/TingSomSkalTilføjes/calender_maker.py new file mode 100644 index 0000000..89e968f --- /dev/null +++ b/inspiration/TingSomSkalTilføjes/calender_maker.py @@ -0,0 +1,23 @@ +import calendar +from datetime import date, timedelta +class CalenderMaker(object): + def get_dates(self,year=2025,dest_day="Friday", orgin_day="Wednesday"): + start_date = date.today() + timedelta(days=3) + return_date = start_date + timedelta(days=365) + dags_differens = timedelta(days=1) + resultat = [] + current_date = start_date + while current_date <= return_date: + ugenummer = current_date.isocalendar()[1] + ugedag = current_date.strftime("%A") + if ugenummer % 2 != 0 and ugedag in [dest_day, orgin_day]: + if ugedag == dest_day: + resultat.append({'date': current_date.strftime('%Y-%m-%d'), 'orgin': 'CPH', 'dest': 'LIS','uge':ugenummer, 'month':current_date.month}) + + if ugedag == orgin_day: + resultat.append( { 'date': current_date.strftime( '%Y-%m-%d' ), 'orgin': 'LIS', 'dest': 'CPH','uge':ugenummer,'month':current_date.month} ) + current_date += dags_differens + return resultat + + + diff --git a/inspiration/TingSomSkalTilføjes/data_chunks.txt b/inspiration/TingSomSkalTilføjes/data_chunks.txt index 6893f74..b1c1b24 100644 --- a/inspiration/TingSomSkalTilføjes/data_chunks.txt +++ b/inspiration/TingSomSkalTilføjes/data_chunks.txt @@ -1751,4 +1751,9309 @@ "travel_time": 3.0, "price": 157.8 } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 75.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 89.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-14T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-14T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-14T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-14T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-14T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-14T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-26T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-26T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-26T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-26T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-26T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-26T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-26T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-26T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-28T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-28T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-28T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-28T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-28T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-28T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-12T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-12T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-12T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-12T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-12T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-12T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-12T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-12T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-14T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-14T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-14T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-14T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-14T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-14T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-26T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-26T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-26T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-26T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-26T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-26T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-26T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-26T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-28T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-28T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-28T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-28T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-28T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-28T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-09T07:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-09T11:50:00" + }, + "travel_time": 4.666666666666667, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-09T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-09T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-09T07:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-09T11:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-09T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-09T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-11T12:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-11T15:25:00" + }, + "travel_time": 2.8333333333333335, + "price": 234.79 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-23T07:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-23T11:50:00" + }, + "travel_time": 4.666666666666667, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-23T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-23T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-23T07:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-23T11:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-23T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-23T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-25T12:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-25T15:25:00" + }, + "travel_time": 2.8333333333333335, + "price": 175.79 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-29T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-29T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T12:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T15:35:00" + }, + "travel_time": 2.9166666666666665, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-31T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-31T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T11:50:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T23:45:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T07:05:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T11:50:00" + }, + "travel_time": 4.75, + "price": 143.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-12T19:00:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-12T23:45:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 75.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 128.79 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:00:00" + }, + "travel_time": 3.0, + "price": 188.4 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:30:00" + }, + "travel_time": 3.0, + "price": 188.4 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 116.62 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 460.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 89.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 215.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 514.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 217.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 243.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 322.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 387.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T20:10:00" + }, + "travel_time": 4.5, + "price": 124.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 244.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 267.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 250.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 479.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 998.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T20:10:00" + }, + "travel_time": 4.5, + "price": 278.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 520.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 103.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 143.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T20:10:00" + }, + "travel_time": 4.5, + "price": 138.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 116.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T20:10:00" + }, + "travel_time": 4.5, + "price": 222.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T20:10:00" + }, + "travel_time": 4.5, + "price": 117.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 176.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 264.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 198.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 240.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-29T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-29T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 280.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 150.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 170.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 72.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 137.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T20:10:00" + }, + "travel_time": 4.5, + "price": 96.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T20:10:00" + }, + "travel_time": 4.5, + "price": 110.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 130.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 460.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 89.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 215.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 514.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 217.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 243.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 322.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 387.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T20:10:00" + }, + "travel_time": 4.5, + "price": 124.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 244.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 267.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 250.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 479.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 998.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T20:10:00" + }, + "travel_time": 4.5, + "price": 278.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 103.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 143.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T20:10:00" + }, + "travel_time": 4.5, + "price": 138.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 161.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 116.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 161.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T20:10:00" + }, + "travel_time": 4.5, + "price": 222.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T20:10:00" + }, + "travel_time": 4.5, + "price": 117.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 264.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 198.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 240.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-29T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-29T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 280.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 150.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 170.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 72.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 137.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T20:10:00" + }, + "travel_time": 4.5, + "price": 96.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T20:10:00" + }, + "travel_time": 4.5, + "price": 110.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 130.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-11-04T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-11-04T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-06T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-06T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-06T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-06T21:30:00" + }, + "travel_time": 3.0, + "price": 140.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-11-18T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-11-18T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-20T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-20T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-20T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-20T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-02T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-02T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-04T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-04T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-04T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-04T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-18T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-18T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-18T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-18T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-30T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-30T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-01T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-01T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-01T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-01T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2026-01-13T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2026-01-13T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-15T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-15T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-15T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-15T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 460.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 89.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 215.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 514.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 243.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 387.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T20:10:00" + }, + "travel_time": 4.5, + "price": 124.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 244.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 267.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 250.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 479.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 998.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T20:10:00" + }, + "travel_time": 4.5, + "price": 278.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 520.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 103.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 143.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T20:10:00" + }, + "travel_time": 4.5, + "price": 138.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 116.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 161.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T20:10:00" + }, + "travel_time": 4.5, + "price": 222.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T20:10:00" + }, + "travel_time": 4.5, + "price": 117.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 176.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 264.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 198.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 240.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-29T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-29T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 244.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-29T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-29T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 280.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 150.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 170.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 72.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T20:40:00" + }, + "travel_time": 3.0, + "price": 150.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 137.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T20:10:00" + }, + "travel_time": 4.5, + "price": 96.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T20:10:00" + }, + "travel_time": 4.5, + "price": 110.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 130.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-11-04T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-11-04T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-06T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-06T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-06T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-06T21:30:00" + }, + "travel_time": 3.0, + "price": 140.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-11-18T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-11-18T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-20T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-20T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-20T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-20T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-02T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-02T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-04T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-04T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-04T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-04T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-16T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-16T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-18T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-18T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-18T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-18T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-30T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-30T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-01T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-01T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-01T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-01T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2026-01-13T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2026-01-13T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-15T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-15T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-15T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-15T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 460.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-01-28T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-01-28T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-01-30T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-01-30T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 61.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-11T17:35:00" + }, + "travel_time": 4.75, + "price": 143.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-13T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 89.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-02-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-02-25T17:35:00" + }, + "travel_time": 4.75, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:15:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T21:35:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T09:15:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-02-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-02-27T21:35:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 215.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 514.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-11T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-11T17:35:00" + }, + "travel_time": 4.75, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 217.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T21:35:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-13T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-13T09:15:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T18:25:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T23:05:00" + }, + "travel_time": 4.666666666666667, + "price": 243.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 322.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-03-25T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-03-25T17:35:00" + }, + "travel_time": 4.75, + "price": 387.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T06:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T09:15:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-03-27T18:35:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-03-27T21:35:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T20:10:00" + }, + "travel_time": 4.5, + "price": 124.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 244.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-08T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-08T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 267.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 250.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 479.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-10T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-10T20:40:00" + }, + "travel_time": 3.0, + "price": 998.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T20:10:00" + }, + "travel_time": 4.5, + "price": 278.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 520.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-04-22T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-04-22T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 983.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 103.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 140.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-04-24T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-04-24T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-06T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-06T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 143.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 241.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T09:00:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-08T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-08T20:40:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T20:10:00" + }, + "travel_time": 4.5, + "price": 138.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 161.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-05-20T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-05-20T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 116.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-05-22T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-05-22T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 161.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-03T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-03T20:10:00" + }, + "travel_time": 4.5, + "price": 222.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-05T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-05T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T20:10:00" + }, + "travel_time": 4.5, + "price": 117.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 176.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-06-17T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-06-17T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 200.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 264.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-06-19T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-06-19T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-01T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-01T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-03T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-03T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 198.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-15T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-15T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 240.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 188.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-17T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-17T09:05:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-29T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-29T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 244.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-07-29T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-07-29T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 280.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 150.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 170.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-07-31T06:05:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-07-31T09:05:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-12T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-12T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T15:55:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T18:35:00" + }, + "travel_time": 2.6666666666666665, + "price": 72.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T20:40:00" + }, + "travel_time": 3.0, + "price": 150.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-14T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-14T20:40:00" + }, + "travel_time": 3.0, + "price": 210.09 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 137.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-08-26T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-08-26T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 89.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T09:00:00" + }, + "travel_time": 3.0, + "price": 188.39 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-08-28T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-08-28T20:40:00" + }, + "travel_time": 3.0, + "price": 188.39 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T20:10:00" + }, + "travel_time": 4.5, + "price": 96.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 158.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-09T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-09T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 197.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 210.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 232.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T20:40:00" + }, + "travel_time": 3.0, + "price": 324.92 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-11T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-11T09:00:00" + }, + "travel_time": 3.0, + "price": 364.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T20:10:00" + }, + "travel_time": 4.5, + "price": 110.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-09-23T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-09-23T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T09:00:00" + }, + "travel_time": 3.0, + "price": 240.49 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-09-25T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-09-25T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 183.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-07T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-07T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 227.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 156.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 173.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 195.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T20:40:00" + }, + "travel_time": 3.0, + "price": 279.21 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-09T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-09T09:00:00" + }, + "travel_time": 3.0, + "price": 324.92 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 143.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T15:40:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T20:10:00" + }, + "travel_time": 4.5, + "price": 152.62 + }, + { + "departure": { + "iataCode": "LIS", + "at": "2025-10-21T12:10:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-10-21T16:50:00" + }, + "travel_time": 4.666666666666667, + "price": 182.12 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T07:15:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:55:00" + }, + "travel_time": 2.6666666666666665, + "price": 130.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T09:00:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 155.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-10-23T17:40:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-10-23T20:40:00" + }, + "travel_time": 3.0, + "price": 240.49 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-11-04T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-11-04T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-06T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-06T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-06T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-06T21:30:00" + }, + "travel_time": 3.0, + "price": 140.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-11-18T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-11-18T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-20T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-20T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-11-20T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-11-20T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-02T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-02T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-04T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-04T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-16T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-16T17:35:00" + }, + "travel_time": 4.75, + "price": 143.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-18T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-18T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2025-12-18T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2025-12-18T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2025-12-30T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2025-12-30T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-01T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-01T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-01T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-01T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } +],[ + { + "departure": { + "iataCode": "LIS", + "at": "2026-01-13T12:50:00" + }, + "arrival": { + "iataCode": "CPH", + "at": "2026-01-13T17:35:00" + }, + "travel_time": 4.75, + "price": 114.62 + } +],[ + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-15T06:00:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-15T09:00:00" + }, + "travel_time": 3.0, + "price": 126.78 + }, + { + "departure": { + "iataCode": "CPH", + "at": "2026-01-15T18:30:00" + }, + "arrival": { + "iataCode": "LIS", + "at": "2026-01-15T21:30:00" + }, + "travel_time": 3.0, + "price": 126.78 + } ], \ No newline at end of file diff --git a/inspiration/TingSomSkalTilføjes/data_csv.csv b/inspiration/TingSomSkalTilføjes/data_csv.csv new file mode 100644 index 0000000..7340385 --- /dev/null +++ b/inspiration/TingSomSkalTilføjes/data_csv.csv @@ -0,0 +1,53 @@ +orgin,dest,date,price,note +2025-01-28,LIS,CPH,721.87, +2025-01-30,CPH,LIS,157.58499999999998, +2025-02-11,LIS,CPH,102.37, +2025-02-13,CPH,LIS,157.58499999999998, +2025-02-25,LIS,CPH,158.37, +2025-02-27,CPH,LIS,157.58499999999998, +2025-03-11,LIS,CPH,571.12, +2025-03-13,CPH,LIS,258.9225, +2025-03-25,LIS,CPH,317.7866666666667, +2025-03-27,CPH,LIS,281.85, +2025-04-08,LIS,CPH,212.12, +2025-04-10,CPH,LIS,465.436, +2025-04-22,LIS,CPH,594.12, +2025-04-24,CPH,LIS,197.894, +2025-05-06,LIS,CPH,187.78666666666666, +2025-05-08,CPH,LIS,240.69400000000002, +2025-05-20,LIS,CPH,166.78666666666666, +2025-05-22,CPH,LIS,199.25333333333333, +2025-06-03,LIS,CPH,194.78666666666666, +2025-06-05,CPH,LIS,253.836, +2025-06-17,LIS,CPH,164.78666666666666, +2025-06-19,CPH,LIS,269.9225, +2025-07-01,LIS,CPH,170.37, +2025-07-03,CPH,LIS,256.43600000000004, +2025-07-15,LIS,CPH,219.37, +2025-07-17,CPH,LIS,242.894, +2025-07-29,LIS,CPH,262.37, +2025-07-31,CPH,LIS,172.38400000000001, +2025-08-12,LIS,CPH,170.37, +2025-08-14,CPH,LIS,149.76399999999998, +2025-08-26,LIS,CPH,147.87, +2025-08-28,CPH,LIS,144.024, +2025-09-09,LIS,CPH,145.78666666666666, +2025-09-11,CPH,LIS,266.236, +2025-09-23,LIS,CPH,146.37, +2025-09-25,CPH,LIS,189.864, +2025-10-07,LIS,CPH,187.78666666666666, +2025-10-09,CPH,LIS,226.094, +2025-10-21,LIS,CPH,159.45333333333335, +2025-10-23,CPH,LIS,170.7075, +2025-11-04,LIS,CPH,143.62, +2025-11-06,CPH,LIS,133.78, +2025-11-18,LIS,CPH,143.62, +2025-11-20,CPH,LIS,126.78, +2025-12-02,LIS,CPH,114.62, +2025-12-04,CPH,LIS,126.78, +2025-12-16,LIS,CPH,143.62, +2025-12-18,CPH,LIS,126.78, +2025-12-30,LIS,CPH,114.62, +2026-01-01,CPH,LIS,126.78, +2026-01-13,LIS,CPH,114.62, +2026-01-15,CPH,LIS,126.78, diff --git a/inspiration/TingSomSkalTilføjes/data_csv.ods b/inspiration/TingSomSkalTilføjes/data_csv.ods new file mode 100644 index 0000000..33e5d54 Binary files /dev/null and b/inspiration/TingSomSkalTilføjes/data_csv.ods differ diff --git a/inspiration/TingSomSkalTilføjes/data_csv.txt b/inspiration/TingSomSkalTilføjes/data_csv.txt new file mode 100644 index 0000000..c3ee9fc --- /dev/null +++ b/inspiration/TingSomSkalTilføjes/data_csv.txt @@ -0,0 +1,3 @@ +orgin,dest,date,price +LIS,CPH,2025-01-28,1 +CPH,LIS,2025-01-30,1 diff --git a/inspiration/TingSomSkalTilføjes/output.xlsx b/inspiration/TingSomSkalTilføjes/output.xlsx new file mode 100644 index 0000000..6deb417 Binary files /dev/null and b/inspiration/TingSomSkalTilføjes/output.xlsx differ diff --git a/inspiration/TingSomSkalTilføjes/summery.txt b/inspiration/TingSomSkalTilføjes/summery.txt index 265c596..8282c2e 100644 --- a/inspiration/TingSomSkalTilføjes/summery.txt +++ b/inspiration/TingSomSkalTilføjes/summery.txt @@ -1,50 +1,52 @@ -2025-01-15: LIS -> CPH - 128.87 -2025-01-17: CPH -> LIS - 374.72 -2025-01-29: LIS -> CPH - 128.87 -2025-01-31: CPH -> LIS - 313.24 -2025-02-12: LIS -> CPH - 152.62 -2025-02-14: CPH -> LIS - 518.62 -2025-02-26: LIS -> CPH - 162.87 -2025-02-28: CPH -> LIS - 167.78 -2025-03-12: LIS -> CPH - 171.87 -2025-03-14: CPH -> LIS - 254.00 -2025-03-26: LIS -> CPH - 211.62 -2025-03-28: CPH -> LIS - 193.06 -2025-04-09: LIS -> CPH - 158.87 -2025-04-11: CPH -> LIS - 998.95 -2025-04-23: LIS -> CPH - 226.87 -2025-04-25: CPH -> LIS - 261.38 -2025-05-07: LIS -> CPH - 196.12 -2025-05-09: CPH -> LIS - 304.88 -2025-05-21: LIS -> CPH - 160.29 -2025-05-23: CPH -> LIS - 199.16 -2025-06-04: LIS -> CPH - 161.62 -2025-06-06: CPH -> LIS - 300.38 -2025-06-18: LIS -> CPH - 155.12 -2025-06-20: CPH -> LIS - 257.88 -2025-07-02: LIS -> CPH - 149.62 -2025-07-04: CPH -> LIS - 288.57 -2025-07-16: LIS -> CPH - 158.87 -2025-07-18: CPH -> LIS - 261.76 -2025-07-30: LIS -> CPH - 277.62 -2025-08-01: CPH -> LIS - 169.11 -2025-08-13: LIS -> CPH - 194.62 -2025-08-15: CPH -> LIS - 140.19 -2025-08-27: LIS -> CPH - 145.95 -2025-08-29: CPH -> LIS - 240.52 -2025-09-10: LIS -> CPH - 158.87 -2025-09-12: CPH -> LIS - 289.38 -2025-09-24: LIS -> CPH - 170.12 -2025-09-26: CPH -> LIS - 261.38 -2025-10-08: LIS -> CPH - 162.87 -2025-10-10: CPH -> LIS - 261.38 -2025-10-22: LIS -> CPH - 145.87 -2025-10-24: CPH -> LIS - 227.52 -2025-11-05: LIS -> CPH - 151.12 -2025-11-07: CPH -> LIS - 142.80 -2025-11-19: LIS -> CPH - 116.62 -2025-11-21: CPH -> LIS - 135.80 -2025-12-03: LIS -> CPH - 116.62 -No flights found for 2025-12-05: CPH -> LIS -2025-12-17: LIS -> CPH - 116.62 -2025-12-19: CPH -> LIS - 143.30 +{'departure_date': '2025-01-28', 'departure': 'LIS', 'arrival': 'CPH', 'price': 721.87} +{'departure_date': '2025-01-30', 'departure': 'CPH', 'arrival': 'LIS', 'price': 157.58499999999998} +{'departure_date': '2025-02-11', 'departure': 'LIS', 'arrival': 'CPH', 'price': 102.37} +{'departure_date': '2025-02-13', 'departure': 'CPH', 'arrival': 'LIS', 'price': 157.58499999999998} +{'departure_date': '2025-02-25', 'departure': 'LIS', 'arrival': 'CPH', 'price': 158.37} +{'departure_date': '2025-02-27', 'departure': 'CPH', 'arrival': 'LIS', 'price': 157.58499999999998} +{'departure_date': '2025-03-11', 'departure': 'LIS', 'arrival': 'CPH', 'price': 571.12} +{'departure_date': '2025-03-13', 'departure': 'CPH', 'arrival': 'LIS', 'price': 258.9225} +{'departure_date': '2025-03-25', 'departure': 'LIS', 'arrival': 'CPH', 'price': 317.7866666666667} +{'departure_date': '2025-03-27', 'departure': 'CPH', 'arrival': 'LIS', 'price': 281.85} +{'departure_date': '2025-04-08', 'departure': 'LIS', 'arrival': 'CPH', 'price': 212.12} +{'departure_date': '2025-04-10', 'departure': 'CPH', 'arrival': 'LIS', 'price': 465.436} +{'departure_date': '2025-04-22', 'departure': 'LIS', 'arrival': 'CPH', 'price': 594.12} +{'departure_date': '2025-04-24', 'departure': 'CPH', 'arrival': 'LIS', 'price': 197.894} +{'departure_date': '2025-05-06', 'departure': 'LIS', 'arrival': 'CPH', 'price': 187.78666666666666} +{'departure_date': '2025-05-08', 'departure': 'CPH', 'arrival': 'LIS', 'price': 240.69400000000002} +{'departure_date': '2025-05-20', 'departure': 'LIS', 'arrival': 'CPH', 'price': 166.78666666666666} +{'departure_date': '2025-05-22', 'departure': 'CPH', 'arrival': 'LIS', 'price': 199.25333333333333} +{'departure_date': '2025-06-03', 'departure': 'LIS', 'arrival': 'CPH', 'price': 194.78666666666666} +{'departure_date': '2025-06-05', 'departure': 'CPH', 'arrival': 'LIS', 'price': 253.836} +{'departure_date': '2025-06-17', 'departure': 'LIS', 'arrival': 'CPH', 'price': 164.78666666666666} +{'departure_date': '2025-06-19', 'departure': 'CPH', 'arrival': 'LIS', 'price': 269.9225} +{'departure_date': '2025-07-01', 'departure': 'LIS', 'arrival': 'CPH', 'price': 170.37} +{'departure_date': '2025-07-03', 'departure': 'CPH', 'arrival': 'LIS', 'price': 256.43600000000004} +{'departure_date': '2025-07-15', 'departure': 'LIS', 'arrival': 'CPH', 'price': 219.37} +{'departure_date': '2025-07-17', 'departure': 'CPH', 'arrival': 'LIS', 'price': 242.894} +{'departure_date': '2025-07-29', 'departure': 'LIS', 'arrival': 'CPH', 'price': 262.37} +{'departure_date': '2025-07-31', 'departure': 'CPH', 'arrival': 'LIS', 'price': 172.38400000000001} +{'departure_date': '2025-08-12', 'departure': 'LIS', 'arrival': 'CPH', 'price': 170.37} +{'departure_date': '2025-08-14', 'departure': 'CPH', 'arrival': 'LIS', 'price': 149.76399999999998} +{'departure_date': '2025-08-26', 'departure': 'LIS', 'arrival': 'CPH', 'price': 147.87} +{'departure_date': '2025-08-28', 'departure': 'CPH', 'arrival': 'LIS', 'price': 144.024} +{'departure_date': '2025-09-09', 'departure': 'LIS', 'arrival': 'CPH', 'price': 145.78666666666666} +{'departure_date': '2025-09-11', 'departure': 'CPH', 'arrival': 'LIS', 'price': 266.236} +{'departure_date': '2025-09-23', 'departure': 'LIS', 'arrival': 'CPH', 'price': 146.37} +{'departure_date': '2025-09-25', 'departure': 'CPH', 'arrival': 'LIS', 'price': 189.864} +{'departure_date': '2025-10-07', 'departure': 'LIS', 'arrival': 'CPH', 'price': 187.78666666666666} +{'departure_date': '2025-10-09', 'departure': 'CPH', 'arrival': 'LIS', 'price': 226.094} +{'departure_date': '2025-10-21', 'departure': 'LIS', 'arrival': 'CPH', 'price': 159.45333333333335} +{'departure_date': '2025-10-23', 'departure': 'CPH', 'arrival': 'LIS', 'price': 170.7075} +{'departure_date': '2025-11-04', 'departure': 'LIS', 'arrival': 'CPH', 'price': 143.62} +{'departure_date': '2025-11-06', 'departure': 'CPH', 'arrival': 'LIS', 'price': 133.78} +{'departure_date': '2025-11-18', 'departure': 'LIS', 'arrival': 'CPH', 'price': 143.62} +{'departure_date': '2025-11-20', 'departure': 'CPH', 'arrival': 'LIS', 'price': 126.78} +{'departure_date': '2025-12-02', 'departure': 'LIS', 'arrival': 'CPH', 'price': 114.62} +{'departure_date': '2025-12-04', 'departure': 'CPH', 'arrival': 'LIS', 'price': 126.78} +{'departure_date': '2025-12-16', 'departure': 'LIS', 'arrival': 'CPH', 'price': 143.62} +{'departure_date': '2025-12-18', 'departure': 'CPH', 'arrival': 'LIS', 'price': 126.78} +{'departure_date': '2025-12-30', 'departure': 'LIS', 'arrival': 'CPH', 'price': 114.62} +{'departure_date': '2026-01-01', 'departure': 'CPH', 'arrival': 'LIS', 'price': 126.78} +{'departure_date': '2026-01-13', 'departure': 'LIS', 'arrival': 'CPH', 'price': 114.62} +{'departure_date': '2026-01-15', 'departure': 'CPH', 'arrival': 'LIS', 'price': 126.78} diff --git a/requirements.txt b/requirements.txt index 07efb90..a026de0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,12 @@ +aiofiles==24.1.0 amadeus==11.0.0 annotated-types==0.7.0 anyio==4.7.0 beautifulsoup4==4.12.3 +certifi==2024.12.14 +charset-normalizer==3.4.1 click==8.1.7 +et_xmlfile==2.0.0 fastapi==0.115.6 h11==0.14.0 httptools==0.6.4 @@ -14,21 +18,26 @@ MarkupSafe==3.0.2 mdurl==0.1.2 mistune==3.0.2 numpy==2.2.1 +openpyxl==3.1.5 pandas==2.2.3 pillow==11.0.0 pydantic==2.10.3 pydantic_core==2.27.1 python-dateutil==2.9.0.post0 python-dotenv==1.0.1 +python-multipart==0.0.20 pytz==2024.2 PyYAML==6.0.2 +requests==2.32.3 six==1.17.0 sniffio==1.3.1 soupsieve==2.6 starlette==0.41.3 typing_extensions==4.12.2 tzdata==2024.2 +urllib3==2.3.0 uvicorn==0.32.1 uvloop==0.21.0 watchfiles==1.0.0 websockets==14.1 +XlsxWriter==3.2.0