AirlineFlightSchedules : returning the same flights range with increasing offset

Hello,

I am trying to get the full list of flights departing from LPFR airport during a day, but the list is repeating it self

First request
array (
‘start_date’ => 1532901600,
‘end_date’ => 1532987999,
‘origin’ => ‘LPFR’,
‘destination’ => ‘’,
‘howMany’ => 15,
‘offset’ => 0
)

Second request
array (
‘start_date’ => 1532901600,
‘end_date’ => 1532987999,
‘origin’ => ‘LPFR’,
‘destination’ => ‘’,
‘howMany’ => 15,
‘offset’ => 15
)

third request
array (
‘start_date’ => 1532901600,
‘end_date’ => 1532987999,
‘origin’ => ‘LPFR’,
‘destination’ => ‘’,
‘howMany’ => 15,
‘offset’ => 30
)

But the result are always the same first 15 flights.

Could anyone give me a hint where the issue is.

Thank you

Are you using FlightXML2 or FlightXML3? If it’s FlightXML3 and you only have a starter plan, you can only see the first 15 results. So for the starter plan you’d have to change your start_date and end_date around to see subsequent data (or upgrade to a paid plan).