Searching The G API¶
The G API is built upon the principles behind REST. A uniform interface, that is stateless and cacheable. The uniformity of data ensures that the response you expect, will be returned.
Additionally, each resource references its related objects, creating a discoverable graph of data.
With all this data, we want to improve how you discover it. Generally, you’re after a subset of data from the G API. You could fetch the entire data set, but that takes up additional time, resources, and bandwidth. This can all impact the customer experience.
With all this in mind, we are happy to introduce the ability to search within the G API. Going through a variety of examples, we’ll understand how searching the G API can improve the success of your integration.
What Can You Search?¶
Before we dive in, let’s review what’s available for searching. Our search functionality is being rolled out in phases, based on demand. The following resources are searchable today:
As we roll out search functionality, more resources will be added. If you have a specific function you’d like to see, please contact us.
How It Works¶
We want to keep searching simple and predictable. The fundamental approach is that any attribute on a resource is searchable. For example, let’s take a look at this snippet of a Tour Dossier:
{
"id": "23745",
"href": "https://developers.gadventures.com/playground/tour_dossiers/23745",
"name": "Kenya Safari Experience",
"product_line": "DKKNG",
"departures_start_date": "2016-01-16",
"departures_end_date": "2020-12-20",
"description": "Tap into the essence of East Afr ..."
}
Now, let’s say we’d like to search for Tour Dossiers like this. Perhaps we want to search for other tours with the name Kenya
within them.
This is done by taking the attribute name (name
), adding an operator (=
), and then the value you’d like to search for (Kenya
). The resulting query looks like this:
- GET /tour_dossiers?name=Kenya¶
Request
curl -H "X-Application-Key: YOUR_APPLICATION_KEY"
https://rest.gadventures.com/tour_dossiers?name=Kenya
Response
{ "count": 35, "max_per_page": 50, "current_page": 1, "links": [], "results": [ { "id": "25242", "href": "https://rest.gadventures.com/tour_dossiers/25242", "name": "Journeys: Kenya & Tanzania Safari", "slug": "journeys-kenya-tanzania-safari", "product_line": "DKANG", "departures_start_date": "2019-05-03", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "3366", "variation_id": "9499", "href": "https://rest.gadventures.com/itineraries/3366/9499", "valid_during_ranges": [ { "start_date": "2023-06-10", "end_date": null } ] }, { "id": "3366", "variation_id": "7417", "href": "https://rest.gadventures.com/itineraries/3366/7417", "valid_during_ranges": [ { "start_date": "2019-05-03", "end_date": "2020-01-05" } ] }, { "id": "3366", "variation_id": "7995", "href": "https://rest.gadventures.com/itineraries/3366/7995", "valid_during_ranges": [ { "start_date": "2020-01-06", "end_date": "2023-06-09" } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "AUD", "amount": "12749.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "CAD", "amount": "11749.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "CHF", "amount": "7679.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "CNY", "amount": "68359.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "EUR", "amount": "8099.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "GBP", "amount": "7099.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "HKD", "amount": "74699.00", "promotion": null }, { "room": null, "departure": { "id": "1291391", "href": "https://rest.gadventures.com/departures/1291391" }, "previous_amount": null, "currency": "JPY", "amount": "1341800.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "KRW", "amount": "12724100.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "NZD", "amount": "13579.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "SGD", "amount": "12859.00", "promotion": null }, { "room": null, "departure": { "id": "1274253", "href": "https://rest.gadventures.com/departures/1274253" }, "previous_amount": null, "currency": "USD", "amount": "9549.00", "promotion": null }, { "room": null, "departure": { "id": "1291391", "href": "https://rest.gadventures.com/departures/1291391" }, "previous_amount": null, "currency": "ZAR", "amount": "161719.00", "promotion": null } ] }, { "id": "24977", "href": "https://rest.gadventures.com/tour_dossiers/24977", "name": "Kenya & Uganda Gorilla Overland: Forests & Wildlife Spotting", "slug": "kenya-to-uganda-tour", "product_line": "DKGN", "departures_start_date": "2018-04-06", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "2949", "variation_id": "9229", "href": "https://rest.gadventures.com/itineraries/2949/9229", "valid_during_ranges": [ { "start_date": "2022-12-16", "end_date": null } ] }, { "id": "2949", "variation_id": "7094", "href": "https://rest.gadventures.com/itineraries/2949/7094", "valid_during_ranges": [ { "start_date": "2019-03-01", "end_date": "2022-12-15" } ] }, { "id": "2949", "variation_id": "6150", "href": "https://rest.gadventures.com/itineraries/2949/6150", "valid_during_ranges": [ { "start_date": "2018-04-06", "end_date": "2019-02-28" } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "AUD", "amount": "5999.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "CAD", "amount": "5549.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "CHF", "amount": "3759.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "CNY", "amount": "31079.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "EUR", "amount": "3849.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "GBP", "amount": "3299.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "HKD", "amount": "33679.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "JPY", "amount": "662200.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "KRW", "amount": "5889100.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "NZD", "amount": "6559.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "SGD", "amount": "5839.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "USD", "amount": "4299.00", "promotion": null }, { "room": null, "departure": { "id": "1214514", "href": "https://rest.gadventures.com/departures/1214514" }, "previous_amount": null, "currency": "ZAR", "amount": "73099.00", "promotion": null } ] }, { "id": "25698", "href": "https://rest.gadventures.com/tour_dossiers/25698", "name": "Upgraded Kenya Safari", "slug": "upgraded-kenya-safari", "product_line": "DKKJ", "departures_start_date": "2021-07-14", "departures_end_date": "2032-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "3932", "variation_id": "8694", "href": "https://rest.gadventures.com/itineraries/3932/8694", "valid_during_ranges": [ { "start_date": "2021-07-14", "end_date": null } ] } ], "advertised_departures": [] }, { "id": "23745", "href": "https://rest.gadventures.com/tour_dossiers/23745", "name": "Journeys: Kenya Safari Experience", "slug": "journeys-kenya-safari-experience", "product_line": "DKKNG", "departures_start_date": "2015-08-10", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "2284", "variation_id": "7980", "href": "https://rest.gadventures.com/itineraries/2284/7980", "valid_during_ranges": [ { "start_date": "2020-06-01", "end_date": null } ] }, { "id": "2284", "variation_id": "7414", "href": "https://rest.gadventures.com/itineraries/2284/7414", "valid_during_ranges": [] }, { "id": "2284", "variation_id": "4793", "href": "https://rest.gadventures.com/itineraries/2284/4793", "valid_during_ranges": [ { "start_date": "2017-01-21", "end_date": "2020-01-05" } ] }, { "id": "2284", "variation_id": "3992", "href": "https://rest.gadventures.com/itineraries/2284/3992", "valid_during_ranges": [ { "start_date": "2016-09-26", "end_date": "2017-01-20" } ] }, { "id": "2284", "variation_id": "2744", "href": "https://rest.gadventures.com/itineraries/2284/2744", "valid_during_ranges": [ { "start_date": "2015-08-10", "end_date": "2016-09-25" } ] }, { "id": "2284", "variation_id": "7979", "href": "https://rest.gadventures.com/itineraries/2284/7979", "valid_during_ranges": [ { "start_date": "2020-01-06", "end_date": "2020-05-31" } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "7159.00", "currency": "AUD", "amount": "6085.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "6519.00", "currency": "CAD", "amount": "5541.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "4519.00", "currency": "CHF", "amount": "3841.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "37749.00", "currency": "CNY", "amount": "32086.65", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "4569.00", "currency": "EUR", "amount": "3883.65", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "4049.00", "currency": "GBP", "amount": "3441.65", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "43019.00", "currency": "HKD", "amount": "36566.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "739800.00", "currency": "JPY", "amount": "628830.00", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "7027500.00", "currency": "KRW", "amount": "5973375.00", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "7819.00", "currency": "NZD", "amount": "6646.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "7329.00", "currency": "SGD", "amount": "6229.65", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "5479.00", "currency": "USD", "amount": "4657.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } }, { "room": null, "departure": { "id": "1291296", "href": "https://rest.gadventures.com/departures/1291296" }, "previous_amount": "88819.00", "currency": "ZAR", "amount": "75496.15", "promotion": { "id": "251272", "href": "https://rest.gadventures.com/promotions/251272", "name": "" } } ] }, { "id": "23019", "href": "https://rest.gadventures.com/tour_dossiers/23019", "name": "Kenya Safari Experience", "slug": "kenya-safari-experience", "product_line": "DKKS", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1599", "variation_id": "1282", "href": "https://rest.gadventures.com/itineraries/1599/1282", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": null } ] } ], "advertised_departures": [] }, { "id": "9420", "href": "https://rest.gadventures.com/tour_dossiers/9420", "name": "Kenya Safari Experience", "slug": "kenya-safari-experience", "product_line": "DKKS", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "23166", "href": "https://rest.gadventures.com/tour_dossiers/23166", "name": "Kenya & Tanzania Overland Adventure", "slug": "kenya-tanzania-overland-adventure", "product_line": "DKKT", "departures_start_date": "2014-12-27", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1623", "variation_id": "3055", "href": "https://rest.gadventures.com/itineraries/1623/3055", "valid_during_ranges": [ { "start_date": "2016-01-01", "end_date": null } ] }, { "id": "1623", "variation_id": "1418", "href": "https://rest.gadventures.com/itineraries/1623/1418", "valid_during_ranges": [ { "start_date": "2014-12-27", "end_date": "2015-12-31" } ] } ], "advertised_departures": [] }, { "id": "10486", "href": "https://rest.gadventures.com/tour_dossiers/10486", "name": "Kenya & Tanzania Overland Adventure", "slug": "kenya-tanzania-overland-adventure", "product_line": "DKKT", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "23154", "href": "https://rest.gadventures.com/tour_dossiers/23154", "name": "Kenya & Uganda Gorilla Adventure", "slug": "kenya-uganda-gorilla-adventure", "product_line": "DKKU", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1597", "variation_id": "5110", "href": "https://rest.gadventures.com/itineraries/1597/5110", "valid_during_ranges": [ { "start_date": "2018-01-15", "end_date": null } ] }, { "id": "1597", "variation_id": "4551", "href": "https://rest.gadventures.com/itineraries/1597/4551", "valid_during_ranges": [ { "start_date": "2017-01-01", "end_date": "2018-01-14" } ] }, { "id": "1597", "variation_id": "3172", "href": "https://rest.gadventures.com/itineraries/1597/3172", "valid_during_ranges": [ { "start_date": "2016-07-01", "end_date": "2016-12-31" } ] }, { "id": "1597", "variation_id": "1286", "href": "https://rest.gadventures.com/itineraries/1597/1286", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": "2016-06-30" } ] } ], "advertised_departures": [] }, { "id": "9470", "href": "https://rest.gadventures.com/tour_dossiers/9470", "name": "Kenya & Uganda Gorilla Adventure", "slug": "kenya-uganda-gorilla-adventure", "product_line": "DKKU", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "20803", "href": "https://rest.gadventures.com/tour_dossiers/20803", "name": "Kenya & Uganda Gorilla Adventure", "slug": "kenya-uganda-gorilla-adventure", "product_line": "DKKU", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "23164", "href": "https://rest.gadventures.com/tour_dossiers/23164", "name": "Kenya & Tanzania Overland Express (Nairobi to Arusha)", "slug": "kenya-tanzania-overland-express-nairobi-arusha", "product_line": "DKNA", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1601", "variation_id": "3049", "href": "https://rest.gadventures.com/itineraries/1601/3049", "valid_during_ranges": [ { "start_date": "2016-01-01", "end_date": null } ] }, { "id": "1601", "variation_id": "1428", "href": "https://rest.gadventures.com/itineraries/1601/1428", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": "2015-12-31" } ] } ], "advertised_departures": [] }, { "id": "24976", "href": "https://rest.gadventures.com/tour_dossiers/24976", "name": "Kenya Overland: Safari Drives & National Reserves", "slug": "kenya-tour", "product_line": "DKNK", "departures_start_date": "2018-04-05", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "2948", "variation_id": "9227", "href": "https://rest.gadventures.com/itineraries/2948/9227", "valid_during_ranges": [ { "start_date": "2022-12-16", "end_date": null } ] }, { "id": "2948", "variation_id": "6148", "href": "https://rest.gadventures.com/itineraries/2948/6148", "valid_during_ranges": [ { "start_date": "2018-04-05", "end_date": "2022-12-15" } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "2939.00", "currency": "AUD", "amount": "2351.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "2689.00", "currency": "CAD", "amount": "2151.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "1899.00", "currency": "CHF", "amount": "1519.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "15189.00", "currency": "CNY", "amount": "12151.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "1969.00", "currency": "EUR", "amount": "1575.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "1579.00", "currency": "GBP", "amount": "1263.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "16429.00", "currency": "HKD", "amount": "13143.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "306000.00", "currency": "JPY", "amount": "244800.00", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "2771400.00", "currency": "KRW", "amount": "2217120.00", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "3189.00", "currency": "NZD", "amount": "2551.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "2839.00", "currency": "SGD", "amount": "2271.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "2099.00", "currency": "USD", "amount": "1679.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } }, { "room": null, "departure": { "id": "1215130", "href": "https://rest.gadventures.com/departures/1215130" }, "previous_amount": "35479.00", "currency": "ZAR", "amount": "28383.20", "promotion": { "id": "250213", "href": "https://rest.gadventures.com/promotions/250213", "name": "" } } ] }, { "id": "26017", "href": "https://rest.gadventures.com/tour_dossiers/26017", "name": "Kenya: Cultural Connections, Mt Kenya & Maasai Mara", "slug": "kenya-cultural-connections-mt-kenya-the-masai-mara", "product_line": "DKNM", "departures_start_date": "2024-01-23", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "4404", "variation_id": "9676", "href": "https://rest.gadventures.com/itineraries/4404/9676", "valid_during_ranges": [ { "start_date": "2024-01-23", "end_date": null } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "AUD", "amount": "9349.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "CAD", "amount": "8449.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "CHF", "amount": "5439.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "CNY", "amount": "49779.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "EUR", "amount": "5799.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "GBP", "amount": "5099.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "HKD", "amount": "54719.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "JPY", "amount": "1022900.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "KRW", "amount": "9270400.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "NZD", "amount": "10079.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "SGD", "amount": "9359.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "USD", "amount": "6999.00", "promotion": null }, { "room": null, "departure": { "id": "1342967", "href": "https://rest.gadventures.com/departures/1342967" }, "previous_amount": null, "currency": "ZAR", "amount": "118199.00", "promotion": null } ] }, { "id": "23165", "href": "https://rest.gadventures.com/tour_dossiers/23165", "name": "Kenya & Tanzania Overland Express (Nairobi Loop)", "slug": "kenya-tanzania-overland-express-nairobi-loop", "product_line": "DKNN", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1607", "variation_id": "3057", "href": "https://rest.gadventures.com/itineraries/1607/3057", "valid_during_ranges": [ { "start_date": "2016-01-01", "end_date": null } ] }, { "id": "1607", "variation_id": "1328", "href": "https://rest.gadventures.com/itineraries/1607/1328", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": "2015-12-31" } ] } ], "advertised_departures": [] }, { "id": "23179", "href": "https://rest.gadventures.com/tour_dossiers/23179", "name": "Kenya Overland Adventure", "slug": "kenya-overland-adventure", "product_line": "DKOA", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1107", "variation_id": "1914", "href": "https://rest.gadventures.com/itineraries/1107/1914", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": null } ] } ], "advertised_departures": [] }, { "id": "10485", "href": "https://rest.gadventures.com/tour_dossiers/10485", "name": "Kenya Overland Adventure", "slug": "kenya-overland-adventure", "product_line": "DKOA", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "24252", "href": "https://rest.gadventures.com/tour_dossiers/24252", "name": "Safari in Kenya & Tanzania", "slug": "safari-in-kenya-and-tanzania", "product_line": "DKTNG", "departures_start_date": "2015-08-11", "departures_end_date": "2033-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "2289", "variation_id": "8068", "href": "https://rest.gadventures.com/itineraries/2289/8068", "valid_during_ranges": [ { "start_date": "2020-01-06", "end_date": null } ] }, { "id": "2289", "variation_id": "4790", "href": "https://rest.gadventures.com/itineraries/2289/4790", "valid_during_ranges": [ { "start_date": "2017-01-21", "end_date": "2020-01-05" } ] }, { "id": "2289", "variation_id": "3995", "href": "https://rest.gadventures.com/itineraries/2289/3995", "valid_during_ranges": [ { "start_date": "2016-09-26", "end_date": "2017-01-20" } ] }, { "id": "2289", "variation_id": "2750", "href": "https://rest.gadventures.com/itineraries/2289/2750", "valid_during_ranges": [ { "start_date": "2015-08-11", "end_date": "2016-09-25" } ] } ], "advertised_departures": [] }, { "id": "23180", "href": "https://rest.gadventures.com/tour_dossiers/23180", "name": "Kenya & Tanzania Overland", "slug": "kenya-tanzania-overland", "product_line": "DKTO", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1010", "variation_id": "4164", "href": "https://rest.gadventures.com/itineraries/1010/4164", "valid_during_ranges": [ { "start_date": "2017-01-01", "end_date": null } ] }, { "id": "1010", "variation_id": "4830", "href": "https://rest.gadventures.com/itineraries/1010/4830", "valid_during_ranges": [ { "start_date": "2016-10-27", "end_date": "2016-12-31" } ] }, { "id": "1010", "variation_id": "3157", "href": "https://rest.gadventures.com/itineraries/1010/3157", "valid_during_ranges": [ { "start_date": "2016-06-21", "end_date": "2016-10-26" } ] }, { "id": "1010", "variation_id": "1928", "href": "https://rest.gadventures.com/itineraries/1010/1928", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": "2016-06-20" } ] } ], "advertised_departures": [] }, { "id": "20806", "href": "https://rest.gadventures.com/tour_dossiers/20806", "name": "Kenya & Tanzania Overland", "slug": "kenya-tanzania-overland", "product_line": "DKTO", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "9474", "href": "https://rest.gadventures.com/tour_dossiers/9474", "name": "Kenya & Tanzania Overland", "slug": "kenya-tanzania-overland", "product_line": "DKTO", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "23020", "href": "https://rest.gadventures.com/tour_dossiers/23020", "name": "Kenya & Tanzania Safari Experience", "slug": "kenya-tanzania-safari-experience", "product_line": "DKTS", "departures_start_date": "2015-01-01", "departures_end_date": "2029-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1442", "variation_id": "64", "href": "https://rest.gadventures.com/itineraries/1442/64", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": null } ] } ], "advertised_departures": [] }, { "id": "9489", "href": "https://rest.gadventures.com/tour_dossiers/9489", "name": "Kenya & Tanzania Safari Experience", "slug": "kenya-tanzania-safari-experience", "product_line": "DKTS", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "22848", "href": "https://rest.gadventures.com/tour_dossiers/22848", "name": "Kenya & Tanzania Camping Safari", "slug": "kenya-and-tanzania-camping-safari", "product_line": "DKTW", "departures_start_date": "2015-01-01", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "1440", "variation_id": "7190", "href": "https://rest.gadventures.com/itineraries/1440/7190", "valid_during_ranges": [ { "start_date": "2019-12-25", "end_date": null } ] }, { "id": "1440", "variation_id": "5148", "href": "https://rest.gadventures.com/itineraries/1440/5148", "valid_during_ranges": [ { "start_date": "2018-01-01", "end_date": "2019-12-24" } ] }, { "id": "1440", "variation_id": "4009", "href": "https://rest.gadventures.com/itineraries/1440/4009", "valid_during_ranges": [ { "start_date": "2017-01-01", "end_date": "2017-12-31" } ] }, { "id": "1440", "variation_id": "1720", "href": "https://rest.gadventures.com/itineraries/1440/1720", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": "2016-12-31" } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "AUD", "amount": "6849.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "CAD", "amount": "6099.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "CHF", "amount": "4219.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "CNY", "amount": "37579.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "EUR", "amount": "4449.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "GBP", "amount": "3749.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "HKD", "amount": "41059.00", "promotion": null }, { "room": null, "departure": { "id": "1296628", "href": "https://rest.gadventures.com/departures/1296628" }, "previous_amount": null, "currency": "JPY", "amount": "783900.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "KRW", "amount": "6994300.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "NZD", "amount": "7299.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "SGD", "amount": "7079.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "USD", "amount": "5249.00", "promotion": null }, { "room": null, "departure": { "id": "1275185", "href": "https://rest.gadventures.com/departures/1275185" }, "previous_amount": null, "currency": "ZAR", "amount": "89899.00", "promotion": null } ] }, { "id": "9429", "href": "https://rest.gadventures.com/tour_dossiers/9429", "name": "Kenya & Tanzania Camping Safari", "slug": "kenya-tanzania-camping-safari", "product_line": "DKTW", "departures_start_date": null, "departures_end_date": "2014-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "21796", "href": "https://rest.gadventures.com/tour_dossiers/21796", "name": "Kenya & Tanzania Camping Safari", "slug": "kenya-and-tanzania-camping-safari", "product_line": "DKTW", "departures_start_date": null, "departures_end_date": "2014-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "22849", "href": "https://rest.gadventures.com/tour_dossiers/22849", "name": "Kenya Camping Safari", "slug": "kenya-camping-safari", "product_line": "DKWA", "departures_start_date": "2015-01-01", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "933", "variation_id": "9780", "href": "https://rest.gadventures.com/itineraries/933/9780", "valid_during_ranges": [ { "start_date": "2024-03-22", "end_date": null } ] }, { "id": "933", "variation_id": "4005", "href": "https://rest.gadventures.com/itineraries/933/4005", "valid_during_ranges": [ { "start_date": "2017-01-01", "end_date": "2024-03-21" } ] }, { "id": "933", "variation_id": "2396", "href": "https://rest.gadventures.com/itineraries/933/2396", "valid_during_ranges": [ { "start_date": "2015-01-01", "end_date": "2016-12-31" } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "3889.00", "currency": "AUD", "amount": "3111.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "3549.00", "currency": "CAD", "amount": "2839.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1192729", "href": "https://rest.gadventures.com/departures/1192729" }, "previous_amount": "2479.00", "currency": "CHF", "amount": "1983.20", "promotion": { "id": "251278", "href": "https://rest.gadventures.com/promotions/251278", "name": "" } }, { "room": null, "departure": { "id": "1192729", "href": "https://rest.gadventures.com/departures/1192729" }, "previous_amount": "21479.00", "currency": "CNY", "amount": "17183.20", "promotion": { "id": "251278", "href": "https://rest.gadventures.com/promotions/251278", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "2619.00", "currency": "EUR", "amount": "2095.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1192729", "href": "https://rest.gadventures.com/departures/1192729" }, "previous_amount": "2169.00", "currency": "GBP", "amount": "1735.20", "promotion": { "id": "251278", "href": "https://rest.gadventures.com/promotions/251278", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "23329.00", "currency": "HKD", "amount": "18663.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "433500.00", "currency": "JPY", "amount": "346800.00", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "3936100.00", "currency": "KRW", "amount": "3148880.00", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "4219.00", "currency": "NZD", "amount": "3375.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "4039.00", "currency": "SGD", "amount": "3231.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "2979.00", "currency": "USD", "amount": "2383.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } }, { "room": null, "departure": { "id": "1296557", "href": "https://rest.gadventures.com/departures/1296557" }, "previous_amount": "50279.00", "currency": "ZAR", "amount": "40223.20", "promotion": { "id": "249569", "href": "https://rest.gadventures.com/promotions/249569", "name": "" } } ] }, { "id": "9431", "href": "https://rest.gadventures.com/tour_dossiers/9431", "name": "Kenya Camping Safari", "slug": "kenya-camping-safari", "product_line": "DKWA", "departures_start_date": null, "departures_end_date": "2014-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "21900", "href": "https://rest.gadventures.com/tour_dossiers/21900", "name": "Kenya Camping Safari", "slug": "kenya-camping-safari", "product_line": "DKWA", "departures_start_date": null, "departures_end_date": "2014-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "9487", "href": "https://rest.gadventures.com/tour_dossiers/9487", "name": "Cultural Kenya & Safari", "slug": "cultural-kenya-safari", "product_line": "DLC", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "25831", "href": "https://rest.gadventures.com/tour_dossiers/25831", "name": "Upgraded Rwanda & Kenya", "slug": "upgraded-rwanda-and-kenya", "product_line": "DRNJ", "departures_start_date": "2022-06-22", "departures_end_date": "2032-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "4147", "variation_id": "9108", "href": "https://rest.gadventures.com/itineraries/4147/9108", "valid_during_ranges": [ { "start_date": "2022-06-22", "end_date": null } ] } ], "advertised_departures": [] }, { "id": "25458", "href": "https://rest.gadventures.com/tour_dossiers/25458", "name": "Journeys: Legendary Wildlife of Rwanda & Kenya", "slug": "journeys-legendary-wildlife-of-rwanda-and-kenya", "product_line": "DRNNG", "departures_start_date": "2020-07-03", "departures_end_date": "2034-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [ { "id": "3718", "variation_id": "8365", "href": "https://rest.gadventures.com/itineraries/3718/8365", "valid_during_ranges": [ { "start_date": "2020-07-03", "end_date": null } ] } ], "advertised_departures": [ { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "AUD", "amount": "16219.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "CAD", "amount": "14839.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "CHF", "amount": "10459.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "CNY", "amount": "81689.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "EUR", "amount": "10569.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "GBP", "amount": "9059.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "HKD", "amount": "93389.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "JPY", "amount": "1594800.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "KRW", "amount": "15242500.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "NZD", "amount": "17759.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "SGD", "amount": "15889.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "USD", "amount": "11899.00", "promotion": null }, { "room": null, "departure": { "id": "1193700", "href": "https://rest.gadventures.com/departures/1193700" }, "previous_amount": null, "currency": "ZAR", "amount": "192319.00", "promotion": null } ] }, { "id": "10314", "href": "https://rest.gadventures.com/tour_dossiers/10314", "name": "Teach Children in Kenya (STA exclusive)", "slug": "teach-children-in-kenya-sta-exclusive", "product_line": "TDKKTT", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "10334", "href": "https://rest.gadventures.com/tour_dossiers/10334", "name": "Teach Children in Kenya (STA)- Extra Week", "slug": "teach-children-in-kenya-sta-extra-week", "product_line": "TDKKTTX", "departures_start_date": null, "departures_end_date": "2010-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] }, { "id": "10295", "href": "https://rest.gadventures.com/tour_dossiers/10295", "name": "Mt Kenya Trek", "slug": "mt-kenya-trek", "product_line": "TDKMKB", "departures_start_date": null, "departures_end_date": "2011-12-31", "booking_companies": [ { "id": "1", "href": "https://rest.gadventures.com/booking_companies/1" } ], "structured_itineraries": [], "advertised_departures": [] } ] }
The result is all tour dossiers which contain the word Kenya
in their name.
Let’s take a look at another example. This time using the Departure resource. We’ll find all Departures where there is availability. This is where the search function becomes powerful, as you’re able to keep your data more in sync (If you are not able to use webhooks).
- GET /departures?availability.status=AVAILABLE¶
Request
curl -H "X-Application-Key: YOUR_APPLICATION_KEY"
https://rest.gadventures.com/departures?availability.status=AVAILABLE
Response
{ "count": 103561, "max_per_page": 50, "current_page": 1, "links": [ { "href": "https://rest.gadventures.com/departures?availability.status=AVAILABLE&max_per_page=50&page=2", "rel": "next" } ], "results": [ { "id": "1000000", "href": "https://rest.gadventures.com/departures/1000000", "date_created": "2019-10-24T13:54:28Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-06", "finish_date": "2020-10-06", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000001", "href": "https://rest.gadventures.com/departures/1000001", "date_created": "2019-10-24T13:54:29Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-07", "finish_date": "2020-10-07", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000002", "href": "https://rest.gadventures.com/departures/1000002", "date_created": "2019-10-24T13:54:29Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-08", "finish_date": "2020-10-08", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000003", "href": "https://rest.gadventures.com/departures/1000003", "date_created": "2019-10-24T13:54:29Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-09", "finish_date": "2020-10-09", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000004", "href": "https://rest.gadventures.com/departures/1000004", "date_created": "2019-10-24T13:54:30Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-10", "finish_date": "2020-10-10", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000005", "href": "https://rest.gadventures.com/departures/1000005", "date_created": "2019-10-24T13:54:30Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-11", "finish_date": "2020-10-11", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000006", "href": "https://rest.gadventures.com/departures/1000006", "date_created": "2019-10-24T13:54:30Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-12", "finish_date": "2020-10-12", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000007", "href": "https://rest.gadventures.com/departures/1000007", "date_created": "2019-10-24T13:54:31Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-13", "finish_date": "2020-10-13", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000008", "href": "https://rest.gadventures.com/departures/1000008", "date_created": "2019-10-24T13:54:31Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-14", "finish_date": "2020-10-14", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000009", "href": "https://rest.gadventures.com/departures/1000009", "date_created": "2019-10-24T13:54:31Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-15", "finish_date": "2020-10-15", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000010", "href": "https://rest.gadventures.com/departures/1000010", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-16", "finish_date": "2020-10-16", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000011", "href": "https://rest.gadventures.com/departures/1000011", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-17", "finish_date": "2020-10-17", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000012", "href": "https://rest.gadventures.com/departures/1000012", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-18", "finish_date": "2020-10-18", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000013", "href": "https://rest.gadventures.com/departures/1000013", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-19", "finish_date": "2020-10-19", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000014", "href": "https://rest.gadventures.com/departures/1000014", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-20", "finish_date": "2020-10-20", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000015", "href": "https://rest.gadventures.com/departures/1000015", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-21", "finish_date": "2020-10-21", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000016", "href": "https://rest.gadventures.com/departures/1000016", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-22", "finish_date": "2020-10-22", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000017", "href": "https://rest.gadventures.com/departures/1000017", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-23", "finish_date": "2020-10-23", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000018", "href": "https://rest.gadventures.com/departures/1000018", "date_created": "2019-10-24T13:54:34Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-24", "finish_date": "2020-10-24", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000019", "href": "https://rest.gadventures.com/departures/1000019", "date_created": "2019-10-24T13:54:34Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-25", "finish_date": "2020-10-25", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000020", "href": "https://rest.gadventures.com/departures/1000020", "date_created": "2019-10-24T13:54:34Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-26", "finish_date": "2020-10-26", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000021", "href": "https://rest.gadventures.com/departures/1000021", "date_created": "2019-10-24T13:54:35Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-27", "finish_date": "2020-10-27", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000022", "href": "https://rest.gadventures.com/departures/1000022", "date_created": "2019-10-24T13:54:35Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-28", "finish_date": "2020-10-28", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000023", "href": "https://rest.gadventures.com/departures/1000023", "date_created": "2019-10-24T13:54:35Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-29", "finish_date": "2020-10-29", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000024", "href": "https://rest.gadventures.com/departures/1000024", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-30", "finish_date": "2020-10-30", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000025", "href": "https://rest.gadventures.com/departures/1000025", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-31", "finish_date": "2020-10-31", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000026", "href": "https://rest.gadventures.com/departures/1000026", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-01", "finish_date": "2020-11-01", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000027", "href": "https://rest.gadventures.com/departures/1000027", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-02", "finish_date": "2020-11-02", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000028", "href": "https://rest.gadventures.com/departures/1000028", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-03", "finish_date": "2020-11-03", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000029", "href": "https://rest.gadventures.com/departures/1000029", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-04", "finish_date": "2020-11-04", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000030", "href": "https://rest.gadventures.com/departures/1000030", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-05", "finish_date": "2020-11-05", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000031", "href": "https://rest.gadventures.com/departures/1000031", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-06", "finish_date": "2020-11-06", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000032", "href": "https://rest.gadventures.com/departures/1000032", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-07", "finish_date": "2020-11-07", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000033", "href": "https://rest.gadventures.com/departures/1000033", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-08", "finish_date": "2020-11-08", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000034", "href": "https://rest.gadventures.com/departures/1000034", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-09", "finish_date": "2020-11-09", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000035", "href": "https://rest.gadventures.com/departures/1000035", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-10", "finish_date": "2020-11-10", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000036", "href": "https://rest.gadventures.com/departures/1000036", "date_created": "2019-10-24T13:54:39Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-11", "finish_date": "2020-11-11", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000037", "href": "https://rest.gadventures.com/departures/1000037", "date_created": "2019-10-24T13:54:39Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-12", "finish_date": "2020-11-12", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000038", "href": "https://rest.gadventures.com/departures/1000038", "date_created": "2019-10-24T13:54:39Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-13", "finish_date": "2020-11-13", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000039", "href": "https://rest.gadventures.com/departures/1000039", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-14", "finish_date": "2020-11-14", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000040", "href": "https://rest.gadventures.com/departures/1000040", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-15", "finish_date": "2020-11-15", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000041", "href": "https://rest.gadventures.com/departures/1000041", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-16", "finish_date": "2020-11-16", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000042", "href": "https://rest.gadventures.com/departures/1000042", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-17", "finish_date": "2020-11-17", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000043", "href": "https://rest.gadventures.com/departures/1000043", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-18", "finish_date": "2020-11-18", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000044", "href": "https://rest.gadventures.com/departures/1000044", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-19", "finish_date": "2020-11-19", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000045", "href": "https://rest.gadventures.com/departures/1000045", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-20", "finish_date": "2020-11-20", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000046", "href": "https://rest.gadventures.com/departures/1000046", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-21", "finish_date": "2020-11-21", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000047", "href": "https://rest.gadventures.com/departures/1000047", "date_created": "2019-10-24T13:54:42Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-22", "finish_date": "2020-11-22", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000048", "href": "https://rest.gadventures.com/departures/1000048", "date_created": "2019-10-24T13:54:42Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-23", "finish_date": "2020-11-23", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000049", "href": "https://rest.gadventures.com/departures/1000049", "date_created": "2019-10-24T13:54:42Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-24", "finish_date": "2020-11-24", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] } ] }
Here we used the dot separator (.
) to identify a nested attribute. As you can see, the data within the Departure looks like this:
{
"availability": {
"status": "AVAILABLE"
}
}
Finally, let’s try one more example. Let’s use a different operator to find all Departures that have a start date past the date 2018-01-01:
- GET /departures?start_date__gt=2018-01-01¶
Request
curl -H "X-Application-Key: YOUR_APPLICATION_KEY"
https://rest.gadventures.com/departures?start_date__gt=2018-01-01
Response
{ "count": 556397, "max_per_page": 50, "current_page": 1, "links": [ { "href": "https://rest.gadventures.com/departures?max_per_page=50&page=2&start_date__gt=2018-01-01", "rel": "next" } ], "results": [ { "id": "1000000", "href": "https://rest.gadventures.com/departures/1000000", "date_created": "2019-10-24T13:54:28Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-06", "finish_date": "2020-10-06", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000001", "href": "https://rest.gadventures.com/departures/1000001", "date_created": "2019-10-24T13:54:29Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-07", "finish_date": "2020-10-07", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000002", "href": "https://rest.gadventures.com/departures/1000002", "date_created": "2019-10-24T13:54:29Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-08", "finish_date": "2020-10-08", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000003", "href": "https://rest.gadventures.com/departures/1000003", "date_created": "2019-10-24T13:54:29Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-09", "finish_date": "2020-10-09", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000004", "href": "https://rest.gadventures.com/departures/1000004", "date_created": "2019-10-24T13:54:30Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-10", "finish_date": "2020-10-10", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000005", "href": "https://rest.gadventures.com/departures/1000005", "date_created": "2019-10-24T13:54:30Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-11", "finish_date": "2020-10-11", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000006", "href": "https://rest.gadventures.com/departures/1000006", "date_created": "2019-10-24T13:54:30Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-12", "finish_date": "2020-10-12", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000007", "href": "https://rest.gadventures.com/departures/1000007", "date_created": "2019-10-24T13:54:31Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-13", "finish_date": "2020-10-13", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000008", "href": "https://rest.gadventures.com/departures/1000008", "date_created": "2019-10-24T13:54:31Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-14", "finish_date": "2020-10-14", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000009", "href": "https://rest.gadventures.com/departures/1000009", "date_created": "2019-10-24T13:54:31Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-15", "finish_date": "2020-10-15", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000010", "href": "https://rest.gadventures.com/departures/1000010", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-16", "finish_date": "2020-10-16", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000011", "href": "https://rest.gadventures.com/departures/1000011", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-17", "finish_date": "2020-10-17", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000012", "href": "https://rest.gadventures.com/departures/1000012", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-18", "finish_date": "2020-10-18", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000013", "href": "https://rest.gadventures.com/departures/1000013", "date_created": "2019-10-24T13:54:32Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-19", "finish_date": "2020-10-19", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000014", "href": "https://rest.gadventures.com/departures/1000014", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-20", "finish_date": "2020-10-20", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000015", "href": "https://rest.gadventures.com/departures/1000015", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-21", "finish_date": "2020-10-21", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000016", "href": "https://rest.gadventures.com/departures/1000016", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-22", "finish_date": "2020-10-22", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000017", "href": "https://rest.gadventures.com/departures/1000017", "date_created": "2019-10-24T13:54:33Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-23", "finish_date": "2020-10-23", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000018", "href": "https://rest.gadventures.com/departures/1000018", "date_created": "2019-10-24T13:54:34Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-24", "finish_date": "2020-10-24", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000019", "href": "https://rest.gadventures.com/departures/1000019", "date_created": "2019-10-24T13:54:34Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-25", "finish_date": "2020-10-25", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000020", "href": "https://rest.gadventures.com/departures/1000020", "date_created": "2019-10-24T13:54:34Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-26", "finish_date": "2020-10-26", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000021", "href": "https://rest.gadventures.com/departures/1000021", "date_created": "2019-10-24T13:54:35Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-27", "finish_date": "2020-10-27", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000022", "href": "https://rest.gadventures.com/departures/1000022", "date_created": "2019-10-24T13:54:35Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-28", "finish_date": "2020-10-28", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000023", "href": "https://rest.gadventures.com/departures/1000023", "date_created": "2019-10-24T13:54:35Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-29", "finish_date": "2020-10-29", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000024", "href": "https://rest.gadventures.com/departures/1000024", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-30", "finish_date": "2020-10-30", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000025", "href": "https://rest.gadventures.com/departures/1000025", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-10-31", "finish_date": "2020-10-31", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000026", "href": "https://rest.gadventures.com/departures/1000026", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-01", "finish_date": "2020-11-01", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000027", "href": "https://rest.gadventures.com/departures/1000027", "date_created": "2019-10-24T13:54:36Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-02", "finish_date": "2020-11-02", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000028", "href": "https://rest.gadventures.com/departures/1000028", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-03", "finish_date": "2020-11-03", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000029", "href": "https://rest.gadventures.com/departures/1000029", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-04", "finish_date": "2020-11-04", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000030", "href": "https://rest.gadventures.com/departures/1000030", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-05", "finish_date": "2020-11-05", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000031", "href": "https://rest.gadventures.com/departures/1000031", "date_created": "2019-10-24T13:54:37Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-06", "finish_date": "2020-11-06", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000032", "href": "https://rest.gadventures.com/departures/1000032", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-07", "finish_date": "2020-11-07", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000033", "href": "https://rest.gadventures.com/departures/1000033", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-08", "finish_date": "2020-11-08", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000034", "href": "https://rest.gadventures.com/departures/1000034", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-09", "finish_date": "2020-11-09", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000035", "href": "https://rest.gadventures.com/departures/1000035", "date_created": "2019-10-24T13:54:38Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-10", "finish_date": "2020-11-10", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000036", "href": "https://rest.gadventures.com/departures/1000036", "date_created": "2019-10-24T13:54:39Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-11", "finish_date": "2020-11-11", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000037", "href": "https://rest.gadventures.com/departures/1000037", "date_created": "2019-10-24T13:54:39Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-12", "finish_date": "2020-11-12", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000038", "href": "https://rest.gadventures.com/departures/1000038", "date_created": "2019-10-24T13:54:39Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-13", "finish_date": "2020-11-13", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000039", "href": "https://rest.gadventures.com/departures/1000039", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-14", "finish_date": "2020-11-14", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000040", "href": "https://rest.gadventures.com/departures/1000040", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-15", "finish_date": "2020-11-15", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000041", "href": "https://rest.gadventures.com/departures/1000041", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-16", "finish_date": "2020-11-16", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000042", "href": "https://rest.gadventures.com/departures/1000042", "date_created": "2019-10-24T13:54:40Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-17", "finish_date": "2020-11-17", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000043", "href": "https://rest.gadventures.com/departures/1000043", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-18", "finish_date": "2020-11-18", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000044", "href": "https://rest.gadventures.com/departures/1000044", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-19", "finish_date": "2020-11-19", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000045", "href": "https://rest.gadventures.com/departures/1000045", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-20", "finish_date": "2020-11-20", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000046", "href": "https://rest.gadventures.com/departures/1000046", "date_created": "2019-10-24T13:54:41Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-21", "finish_date": "2020-11-21", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000047", "href": "https://rest.gadventures.com/departures/1000047", "date_created": "2019-10-24T13:54:42Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-22", "finish_date": "2020-11-22", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000048", "href": "https://rest.gadventures.com/departures/1000048", "date_created": "2019-10-24T13:54:42Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-23", "finish_date": "2020-11-23", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] }, { "id": "1000049", "href": "https://rest.gadventures.com/departures/1000049", "date_created": "2019-10-24T13:54:42Z", "date_last_modified": "2019-11-13T15:48:08Z", "start_date": "2020-11-24", "finish_date": "2020-11-24", "date_cancelled": null, "flags": [ "INDY_SHARE" ], "availability": { "status": "AVAILABLE", "total": 25 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "44.00" }, { "currency": "AUD", "amount": "65.00" }, { "currency": "CHF", "amount": "44.00" }, { "currency": "KRW", "amount": "52100.00" }, { "currency": "CNY", "amount": "313.00" }, { "currency": "JPY", "amount": "4760.00" }, { "currency": "GBP", "amount": "35.00" }, { "currency": "NZD", "amount": "70.00" }, { "currency": "EUR", "amount": "40.00" }, { "currency": "ZAR", "amount": "656.00" }, { "currency": "SGD", "amount": "61.00" }, { "currency": "HKD", "amount": "346.00" }, { "currency": "CAD", "amount": "59.00" } ] } ] }
We separate attributes from operators with the double underscore (__
). You can only have one operator per attribute, but you are able to chain together multiple attributes in a search. For example, if you wanted to add a finish_date constraint on the above search:
- GET /departures?start_date__gt=2018-01-01&finish_date__lt=2019-12-31¶
Request
curl -H "X-Application-Key: YOUR_APPLICATION_KEY"
https://rest.gadventures.com/departures?start_date__gt=2018-01-01&finish_date__lt=2019-12-31
Response
{ "count": 123833, "max_per_page": 50, "current_page": 1, "links": [ { "href": "https://rest.gadventures.com/departures?finish_date__lt=2019-12-31&max_per_page=50&page=2&start_date__gt=2018-01-01", "rel": "next" } ], "results": [ { "id": "1002164", "href": "https://rest.gadventures.com/departures/1002164", "date_created": "2019-10-28T10:00:20Z", "date_last_modified": "2019-12-30T01:30:24Z", "start_date": "2019-12-29", "finish_date": "2019-12-29", "date_cancelled": "2019-11-21T12:00:56Z", "flags": [ "DEFAULT_DEPARTURE_TIME", "INDY_SHARE", "DEFAULT_ARRIVAL_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [] }, { "id": "1008106", "href": "https://rest.gadventures.com/departures/1008106", "date_created": "2019-10-31T12:17:30Z", "date_last_modified": "2019-11-07T23:40:24Z", "start_date": "2019-12-20", "finish_date": "2019-12-24", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "FULL_PAYMENT_REQUIRED_TO_BOOK" ], "availability": { "status": "NOT_BOOKABLE", "total": 17 }, "lowest_pp2a_prices": [] }, { "id": "1009134", "href": "https://rest.gadventures.com/departures/1009134", "date_created": "2019-11-06T17:44:13Z", "date_last_modified": "2019-11-15T05:01:38Z", "start_date": "2019-12-15", "finish_date": "2019-12-22", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "ARRIVAL_TRANSFER_INCLUDED", "TWIN_SHARE", "DEPARTURE_TRANSFER_INCLUDED", "CLOSED_GROUPS", "DEFAULT_ARRIVAL_TIME", "CHAT_ENABLED", "FULL_PAYMENT_REQUIRED_TO_BOOK" ], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1640.00" }, { "currency": "AUD", "amount": "2399.00" }, { "currency": "CHF", "amount": "1679.00" }, { "currency": "KRW", "amount": "1906200.00" }, { "currency": "CNY", "amount": "11139.00" }, { "currency": "JPY", "amount": "175300.00" }, { "currency": "GBP", "amount": "1349.00" }, { "currency": "NZD", "amount": "2519.00" }, { "currency": "EUR", "amount": "1499.00" }, { "currency": "ZAR", "amount": "22779.00" }, { "currency": "SGD", "amount": "2219.00" }, { "currency": "HKD", "amount": "12659.00" }, { "currency": "CAD", "amount": "2299.00" } ] }, { "id": "1009271", "href": "https://rest.gadventures.com/departures/1009271", "date_created": "2019-11-11T15:09:57Z", "date_last_modified": "2019-12-03T19:11:23Z", "start_date": "2019-12-11", "finish_date": "2019-12-15", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "FULL_PAYMENT_REQUIRED_TO_BOOK", "FULL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 12 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "420.00" }, { "currency": "AUD", "amount": "540.00" }, { "currency": "CHF", "amount": "390.00" }, { "currency": "GBP", "amount": "300.00" }, { "currency": "NZD", "amount": "600.00" }, { "currency": "CAD", "amount": "540.00" }, { "currency": "ZAR", "amount": "5472.00" }, { "currency": "EUR", "amount": "360.00" } ] }, { "id": "1010758", "href": "https://rest.gadventures.com/departures/1010758", "date_created": "2019-11-20T22:36:32Z", "date_last_modified": "2019-11-20T22:36:38Z", "start_date": "2018-03-31", "finish_date": "2018-04-17", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1010759", "href": "https://rest.gadventures.com/departures/1010759", "date_created": "2019-11-17T14:36:26Z", "date_last_modified": "2019-11-30T01:09:20Z", "start_date": "2019-11-29", "finish_date": "2019-12-03", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 15 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "280.00" }, { "currency": "AUD", "amount": "360.00" }, { "currency": "CHF", "amount": "260.00" }, { "currency": "GBP", "amount": "200.00" }, { "currency": "NZD", "amount": "400.00" }, { "currency": "CAD", "amount": "360.00" }, { "currency": "ZAR", "amount": "3648.00" }, { "currency": "EUR", "amount": "240.00" } ] }, { "id": "1010760", "href": "https://rest.gadventures.com/departures/1010760", "date_created": "2019-11-20T22:36:32Z", "date_last_modified": "2019-11-20T22:36:38Z", "start_date": "2018-04-09", "finish_date": "2018-04-17", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1010762", "href": "https://rest.gadventures.com/departures/1010762", "date_created": "2019-11-20T22:36:39Z", "date_last_modified": "2019-11-20T22:36:44Z", "start_date": "2018-04-07", "finish_date": "2018-04-24", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1010878", "href": "https://rest.gadventures.com/departures/1010878", "date_created": "2019-11-20T22:38:25Z", "date_last_modified": "2019-11-20T22:39:31Z", "start_date": "2018-10-27", "finish_date": "2018-11-13", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1010931", "href": "https://rest.gadventures.com/departures/1010931", "date_created": "2019-11-20T22:39:13Z", "date_last_modified": "2019-11-20T22:40:27Z", "start_date": "2019-05-24", "finish_date": "2019-06-01", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011056", "href": "https://rest.gadventures.com/departures/1011056", "date_created": "2019-11-20T22:49:41Z", "date_last_modified": "2019-11-20T22:49:41Z", "start_date": "2018-04-23", "finish_date": "2018-05-02", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011110", "href": "https://rest.gadventures.com/departures/1011110", "date_created": "2019-11-20T22:51:42Z", "date_last_modified": "2019-11-20T22:51:42Z", "start_date": "2018-09-12", "finish_date": "2018-09-21", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011250", "href": "https://rest.gadventures.com/departures/1011250", "date_created": "2019-11-20T22:58:52Z", "date_last_modified": "2019-11-20T22:58:52Z", "start_date": "2018-07-04", "finish_date": "2018-07-15", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011265", "href": "https://rest.gadventures.com/departures/1011265", "date_created": "2019-11-20T22:59:22Z", "date_last_modified": "2019-11-20T22:59:22Z", "start_date": "2018-11-21", "finish_date": "2018-12-02", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011266", "href": "https://rest.gadventures.com/departures/1011266", "date_created": "2019-11-20T22:59:24Z", "date_last_modified": "2019-11-20T22:59:24Z", "start_date": "2018-11-28", "finish_date": "2018-12-09", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011296", "href": "https://rest.gadventures.com/departures/1011296", "date_created": "2019-11-20T23:00:36Z", "date_last_modified": "2019-11-20T23:00:39Z", "start_date": "2019-03-16", "finish_date": "2019-04-03", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "2450.00" }, { "currency": "AUD", "amount": "3150.00" }, { "currency": "CHF", "amount": "2275.00" }, { "currency": "GBP", "amount": "1750.00" }, { "currency": "NZD", "amount": "3500.00" }, { "currency": "CAD", "amount": "3150.00" }, { "currency": "ZAR", "amount": "31920.00" }, { "currency": "EUR", "amount": "2100.00" } ] }, { "id": "1011331", "href": "https://rest.gadventures.com/departures/1011331", "date_created": "2019-11-20T23:01:18Z", "date_last_modified": "2019-11-20T23:01:18Z", "start_date": "2018-03-01", "finish_date": "2018-03-10", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011332", "href": "https://rest.gadventures.com/departures/1011332", "date_created": "2019-11-20T23:01:20Z", "date_last_modified": "2019-11-20T23:01:20Z", "start_date": "2018-03-05", "finish_date": "2018-03-14", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011533", "href": "https://rest.gadventures.com/departures/1011533", "date_created": "2019-11-20T23:05:36Z", "date_last_modified": "2019-11-20T23:07:02Z", "start_date": "2018-02-22", "finish_date": "2018-03-03", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011607", "href": "https://rest.gadventures.com/departures/1011607", "date_created": "2019-11-20T23:07:25Z", "date_last_modified": "2019-11-20T23:11:31Z", "start_date": "2019-05-12", "finish_date": "2019-05-21", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "945.00" }, { "currency": "AUD", "amount": "1215.00" }, { "currency": "CHF", "amount": "880.00" }, { "currency": "GBP", "amount": "675.00" }, { "currency": "NZD", "amount": "1350.00" }, { "currency": "CAD", "amount": "1215.00" }, { "currency": "ZAR", "amount": "12312.00" }, { "currency": "EUR", "amount": "810.00" } ] }, { "id": "1011608", "href": "https://rest.gadventures.com/departures/1011608", "date_created": "2019-11-20T23:07:28Z", "date_last_modified": "2019-11-20T23:11:36Z", "start_date": "2019-06-10", "finish_date": "2019-06-19", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "945.00" }, { "currency": "AUD", "amount": "1215.00" }, { "currency": "CHF", "amount": "880.00" }, { "currency": "GBP", "amount": "675.00" }, { "currency": "NZD", "amount": "1350.00" }, { "currency": "CAD", "amount": "1215.00" }, { "currency": "ZAR", "amount": "12312.00" }, { "currency": "EUR", "amount": "810.00" } ] }, { "id": "1011609", "href": "https://rest.gadventures.com/departures/1011609", "date_created": "2019-11-20T23:07:28Z", "date_last_modified": "2019-11-20T23:11:37Z", "start_date": "2019-06-10", "finish_date": "2019-06-11", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011611", "href": "https://rest.gadventures.com/departures/1011611", "date_created": "2019-11-20T23:07:28Z", "date_last_modified": "2019-11-20T23:11:37Z", "start_date": "2019-06-15", "finish_date": "2019-06-19", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "FULL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "420.00" }, { "currency": "AUD", "amount": "540.00" }, { "currency": "CHF", "amount": "390.00" }, { "currency": "GBP", "amount": "300.00" }, { "currency": "NZD", "amount": "600.00" }, { "currency": "CAD", "amount": "540.00" }, { "currency": "ZAR", "amount": "5472.00" }, { "currency": "EUR", "amount": "360.00" } ] }, { "id": "1011623", "href": "https://rest.gadventures.com/departures/1011623", "date_created": "2019-11-20T23:07:45Z", "date_last_modified": "2019-11-20T23:12:03Z", "start_date": "2018-01-13", "finish_date": "2018-01-19", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011624", "href": "https://rest.gadventures.com/departures/1011624", "date_created": "2019-11-20T23:07:45Z", "date_last_modified": "2019-11-20T23:12:03Z", "start_date": "2018-01-19", "finish_date": "2018-01-25", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 17 }, "lowest_pp2a_prices": [] }, { "id": "1011625", "href": "https://rest.gadventures.com/departures/1011625", "date_created": "2019-11-20T23:07:48Z", "date_last_modified": "2019-11-20T23:12:08Z", "start_date": "2018-01-28", "finish_date": "2018-02-10", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011644", "href": "https://rest.gadventures.com/departures/1011644", "date_created": "2019-11-20T23:08:03Z", "date_last_modified": "2019-11-20T23:12:31Z", "start_date": "2018-03-05", "finish_date": "2018-03-11", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011645", "href": "https://rest.gadventures.com/departures/1011645", "date_created": "2019-11-20T23:08:07Z", "date_last_modified": "2019-11-20T23:12:37Z", "start_date": "2018-03-06", "finish_date": "2018-03-19", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011646", "href": "https://rest.gadventures.com/departures/1011646", "date_created": "2019-11-20T23:08:07Z", "date_last_modified": "2019-11-20T23:12:38Z", "start_date": "2018-03-06", "finish_date": "2018-03-07", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 40 }, "lowest_pp2a_prices": [] }, { "id": "1011664", "href": "https://rest.gadventures.com/departures/1011664", "date_created": "2019-11-20T23:08:22Z", "date_last_modified": "2019-11-20T23:13:02Z", "start_date": "2018-04-13", "finish_date": "2018-04-19", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1011742", "href": "https://rest.gadventures.com/departures/1011742", "date_created": "2019-11-20T23:09:35Z", "date_last_modified": "2019-11-20T23:14:59Z", "start_date": "2018-09-03", "finish_date": "2018-09-04", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED" ], "availability": { "status": "NOT_BOOKABLE", "total": 40 }, "lowest_pp2a_prices": [] }, { "id": "1012118", "href": "https://rest.gadventures.com/departures/1012118", "date_created": "2019-11-23T00:21:42Z", "date_last_modified": "2019-11-23T00:22:33Z", "start_date": "2018-04-02", "finish_date": "2018-04-11", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012253", "href": "https://rest.gadventures.com/departures/1012253", "date_created": "2019-11-23T00:27:54Z", "date_last_modified": "2019-11-23T00:27:54Z", "start_date": "2019-06-03", "finish_date": "2019-06-12", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "760.00" }, { "currency": "AUD", "amount": "975.00" }, { "currency": "CHF", "amount": "705.00" }, { "currency": "GBP", "amount": "540.00" }, { "currency": "NZD", "amount": "1080.00" }, { "currency": "CAD", "amount": "975.00" }, { "currency": "ZAR", "amount": "9849.60" }, { "currency": "EUR", "amount": "650.00" } ] }, { "id": "1012255", "href": "https://rest.gadventures.com/departures/1012255", "date_created": "2019-11-23T00:27:58Z", "date_last_modified": "2019-11-23T00:27:59Z", "start_date": "2019-06-06", "finish_date": "2019-06-15", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "760.00" }, { "currency": "AUD", "amount": "975.00" }, { "currency": "CHF", "amount": "705.00" }, { "currency": "GBP", "amount": "540.00" }, { "currency": "NZD", "amount": "1080.00" }, { "currency": "CAD", "amount": "975.00" }, { "currency": "ZAR", "amount": "9849.60" }, { "currency": "EUR", "amount": "650.00" } ] }, { "id": "1012283", "href": "https://rest.gadventures.com/departures/1012283", "date_created": "2019-11-23T00:29:48Z", "date_last_modified": "2019-11-23T00:29:48Z", "start_date": "2019-08-26", "finish_date": "2019-09-04", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "760.00" }, { "currency": "AUD", "amount": "975.00" }, { "currency": "CHF", "amount": "705.00" }, { "currency": "GBP", "amount": "540.00" }, { "currency": "NZD", "amount": "1080.00" }, { "currency": "CAD", "amount": "975.00" }, { "currency": "ZAR", "amount": "9849.60" }, { "currency": "EUR", "amount": "650.00" } ] }, { "id": "1012351", "href": "https://rest.gadventures.com/departures/1012351", "date_created": "2019-11-23T00:34:01Z", "date_last_modified": "2019-11-23T00:34:02Z", "start_date": "2019-06-04", "finish_date": "2019-06-15", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "910.00" }, { "currency": "AUD", "amount": "1170.00" }, { "currency": "CHF", "amount": "845.00" }, { "currency": "GBP", "amount": "650.00" }, { "currency": "NZD", "amount": "1300.00" }, { "currency": "CAD", "amount": "1170.00" }, { "currency": "ZAR", "amount": "11856.00" }, { "currency": "EUR", "amount": "780.00" } ] }, { "id": "1012408", "href": "https://rest.gadventures.com/departures/1012408", "date_created": "2019-11-23T00:35:51Z", "date_last_modified": "2019-11-23T00:35:52Z", "start_date": "2018-04-26", "finish_date": "2018-05-05", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012409", "href": "https://rest.gadventures.com/departures/1012409", "date_created": "2019-11-23T00:35:53Z", "date_last_modified": "2019-11-23T00:35:54Z", "start_date": "2018-04-30", "finish_date": "2018-05-09", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012410", "href": "https://rest.gadventures.com/departures/1012410", "date_created": "2019-11-23T00:35:55Z", "date_last_modified": "2019-11-23T00:35:56Z", "start_date": "2018-05-10", "finish_date": "2018-05-19", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012411", "href": "https://rest.gadventures.com/departures/1012411", "date_created": "2019-11-23T00:35:58Z", "date_last_modified": "2019-11-23T00:35:58Z", "start_date": "2018-05-14", "finish_date": "2018-05-23", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012412", "href": "https://rest.gadventures.com/departures/1012412", "date_created": "2019-11-23T00:36:00Z", "date_last_modified": "2019-11-23T00:36:00Z", "start_date": "2018-05-24", "finish_date": "2018-06-02", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012413", "href": "https://rest.gadventures.com/departures/1012413", "date_created": "2019-11-23T00:36:02Z", "date_last_modified": "2019-11-23T00:36:02Z", "start_date": "2018-10-01", "finish_date": "2018-10-10", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012415", "href": "https://rest.gadventures.com/departures/1012415", "date_created": "2019-11-23T00:36:06Z", "date_last_modified": "2019-11-23T00:36:07Z", "start_date": "2018-10-15", "finish_date": "2018-10-24", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] }, { "id": "1012423", "href": "https://rest.gadventures.com/departures/1012423", "date_created": "2019-11-23T00:36:27Z", "date_last_modified": "2019-11-23T00:36:27Z", "start_date": "2019-01-07", "finish_date": "2019-01-16", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1190.00" }, { "currency": "AUD", "amount": "1530.00" }, { "currency": "CHF", "amount": "1105.00" }, { "currency": "GBP", "amount": "850.00" }, { "currency": "NZD", "amount": "1700.00" }, { "currency": "CAD", "amount": "1530.00" }, { "currency": "ZAR", "amount": "15504.00" }, { "currency": "EUR", "amount": "1020.00" } ] }, { "id": "1012425", "href": "https://rest.gadventures.com/departures/1012425", "date_created": "2019-11-23T00:36:32Z", "date_last_modified": "2019-11-23T00:36:33Z", "start_date": "2019-01-24", "finish_date": "2019-02-02", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1190.00" }, { "currency": "AUD", "amount": "1530.00" }, { "currency": "CHF", "amount": "1105.00" }, { "currency": "GBP", "amount": "850.00" }, { "currency": "NZD", "amount": "1700.00" }, { "currency": "CAD", "amount": "1530.00" }, { "currency": "ZAR", "amount": "15504.00" }, { "currency": "EUR", "amount": "1020.00" } ] }, { "id": "1012427", "href": "https://rest.gadventures.com/departures/1012427", "date_created": "2019-11-23T00:36:38Z", "date_last_modified": "2019-11-23T00:36:38Z", "start_date": "2019-01-31", "finish_date": "2019-02-09", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1190.00" }, { "currency": "AUD", "amount": "1530.00" }, { "currency": "CHF", "amount": "1105.00" }, { "currency": "GBP", "amount": "850.00" }, { "currency": "NZD", "amount": "1700.00" }, { "currency": "CAD", "amount": "1530.00" }, { "currency": "ZAR", "amount": "15504.00" }, { "currency": "EUR", "amount": "1020.00" } ] }, { "id": "1012433", "href": "https://rest.gadventures.com/departures/1012433", "date_created": "2019-11-23T00:36:56Z", "date_last_modified": "2019-11-23T00:36:56Z", "start_date": "2019-03-04", "finish_date": "2019-03-13", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1190.00" }, { "currency": "AUD", "amount": "1530.00" }, { "currency": "CHF", "amount": "1105.00" }, { "currency": "GBP", "amount": "850.00" }, { "currency": "NZD", "amount": "1700.00" }, { "currency": "CAD", "amount": "1530.00" }, { "currency": "ZAR", "amount": "15504.00" }, { "currency": "EUR", "amount": "1020.00" } ] }, { "id": "1012435", "href": "https://rest.gadventures.com/departures/1012435", "date_created": "2019-11-23T00:37:05Z", "date_last_modified": "2019-11-23T00:37:05Z", "start_date": "2019-04-01", "finish_date": "2019-04-10", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1190.00" }, { "currency": "AUD", "amount": "1530.00" }, { "currency": "CHF", "amount": "1105.00" }, { "currency": "GBP", "amount": "850.00" }, { "currency": "NZD", "amount": "1700.00" }, { "currency": "CAD", "amount": "1530.00" }, { "currency": "ZAR", "amount": "15504.00" }, { "currency": "EUR", "amount": "1020.00" } ] }, { "id": "1012441", "href": "https://rest.gadventures.com/departures/1012441", "date_created": "2019-11-23T00:37:36Z", "date_last_modified": "2019-11-23T00:37:37Z", "start_date": "2019-04-09", "finish_date": "2019-04-18", "date_cancelled": null, "flags": [ "TWIN_SHARE", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "DEFAULT_DEPARTURE_TIME" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1260.00" }, { "currency": "AUD", "amount": "1620.00" }, { "currency": "CHF", "amount": "1170.00" }, { "currency": "GBP", "amount": "900.00" }, { "currency": "NZD", "amount": "1800.00" }, { "currency": "CAD", "amount": "1620.00" }, { "currency": "ZAR", "amount": "16416.00" }, { "currency": "EUR", "amount": "1080.00" } ] }, { "id": "1012463", "href": "https://rest.gadventures.com/departures/1012463", "date_created": "2019-11-23T00:38:38Z", "date_last_modified": "2019-11-23T00:38:50Z", "start_date": "2018-02-22", "finish_date": "2018-03-09", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "DEFAULT_ARRIVAL_TIME", "ARRIVAL_TRANSFER_INCLUDED", "PARTIAL_MULTISHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 20 }, "lowest_pp2a_prices": [] } ] }
Operator Reference¶
Provided is a table of all operators one can use. The default operator is the equality check.
Operator |
Description |
---|---|
= |
The default equality operator. When forming any query string, it is necessary to use this, so it is always required. The default functionality does not do an exact match but rather checks the value is within the string you’re reviewing. It is not case sensitive. |
lt |
Searches for matches less than the value passed. |
lte |
Searches for matches less than or equal to the value passed. |
gt |
Searches for matches greater than the value passed. |
gte |
Searches for matches greater than or equal to the value passed. |
like |
Searches for matches like the value. How this differs from the default is you can use the |
notnull |
Searches for matches where the attribute is not null. Pass |
null |
Searches for matches where the attribute is null. Pass |
in |
Searches for matches where the attribute contains a set of values. For example, |
phrase |
Searches for specific phrase such as |
We recommend visiting our Playground and trying out some queries yourself. It’s the best way to get started!
Ordering Results¶
Additionally, you can order by specific attributes, just like you’d search. You
can order by using order_by
(Ascending by default), or use
order_by__desc
or order_by__asc
to be explicit about the ordering of
results.
- GET /departures?start_date__gt=2018-01-01&order_by=name¶
Request
curl -H "X-Application-Key: YOUR_APPLICATION_KEY"
https://rest.gadventures.com/departures?start_date__gt=2018-01-01&order_by=name
Response
{ "count": 556397, "max_per_page": 50, "current_page": 1, "links": [ { "href": "https://rest.gadventures.com/departures?max_per_page=50&order_by=name&page=2&start_date__gt=2018-01-01", "rel": "next" } ], "results": [ { "id": "1138869", "href": "https://rest.gadventures.com/departures/1138869", "date_created": "2021-08-16T14:32:23Z", "date_last_modified": "2021-09-21T13:55:27Z", "start_date": "2021-10-05", "finish_date": "2021-10-13", "date_cancelled": null, "flags": [ "DEFAULT_DEPARTURE_TIME", "ARRIVAL_TRANSFER_INCLUDED", "TWIN_SHARE", "CLOSED_GROUPS", "DEFAULT_ARRIVAL_TIME", "CHAT_ENABLED", "FULL_PAYMENT_REQUIRED_TO_BOOK" ], "availability": { "status": "NOT_BOOKABLE", "total": 6 }, "travel_ready_policy": { "code": "COVID_VACCINATED", "name": "COVID Vaccinated" }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "3499.00" }, { "currency": "AUD", "amount": "3559.00" }, { "currency": "CHF", "amount": "2759.00" }, { "currency": "KRW", "amount": "3654600.00" }, { "currency": "CNY", "amount": "21359.00" }, { "currency": "JPY", "amount": "336000.00" }, { "currency": "GBP", "amount": "2269.00" }, { "currency": "NZD", "amount": "3739.00" }, { "currency": "EUR", "amount": "2479.00" }, { "currency": "ZAR", "amount": "43699.00" }, { "currency": "SGD", "amount": "4239.00" }, { "currency": "HKD", "amount": "24259.00" }, { "currency": "CAD", "amount": "3779.00" } ] }, { "id": "742118", "href": "https://rest.gadventures.com/departures/742118", "date_created": "2016-05-18T21:12:43Z", "date_last_modified": "2018-08-24T04:28:43Z", "start_date": "2018-08-23", "finish_date": "2018-08-24", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 6 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742073", "href": "https://rest.gadventures.com/departures/742073", "date_created": "2016-05-18T21:12:21Z", "date_last_modified": "2018-08-15T04:44:14Z", "start_date": "2018-08-14", "finish_date": "2018-08-15", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "812629", "href": "https://rest.gadventures.com/departures/812629", "date_created": "2017-06-26T15:47:25Z", "date_last_modified": "2018-06-17T04:25:39Z", "start_date": "2018-06-16", "finish_date": "2018-06-17", "date_cancelled": "2018-03-14T18:39:44Z", "flags": [ "CLOSED_GROUPS" ], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "805291", "href": "https://rest.gadventures.com/departures/805291", "date_created": "2017-05-02T19:08:09Z", "date_last_modified": "2018-03-21T04:01:23Z", "start_date": "2018-03-20", "finish_date": "2018-03-31", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 4 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1119.00" } ] }, { "id": "805294", "href": "https://rest.gadventures.com/departures/805294", "date_created": "2017-05-02T19:08:40Z", "date_last_modified": "2018-05-09T04:30:25Z", "start_date": "2018-05-08", "finish_date": "2018-05-19", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 7 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "1119.00" } ] }, { "id": "805308", "href": "https://rest.gadventures.com/departures/805308", "date_created": "2017-05-02T19:19:08Z", "date_last_modified": "2018-11-15T05:57:58Z", "start_date": "2018-11-14", "finish_date": "2018-11-15", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 12 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "56.00" } ] }, { "id": "741474", "href": "https://rest.gadventures.com/departures/741474", "date_created": "2016-05-18T21:07:34Z", "date_last_modified": "2018-04-19T04:41:17Z", "start_date": "2018-04-18", "finish_date": "2018-04-19", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 7 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742123", "href": "https://rest.gadventures.com/departures/742123", "date_created": "2016-05-18T21:12:45Z", "date_last_modified": "2018-08-25T04:19:57Z", "start_date": "2018-08-24", "finish_date": "2018-08-25", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 5 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742133", "href": "https://rest.gadventures.com/departures/742133", "date_created": "2016-05-18T21:12:51Z", "date_last_modified": "2018-08-27T04:10:50Z", "start_date": "2018-08-26", "finish_date": "2018-08-27", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 6 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742138", "href": "https://rest.gadventures.com/departures/742138", "date_created": "2016-05-18T21:12:54Z", "date_last_modified": "2018-08-28T04:16:22Z", "start_date": "2018-08-27", "finish_date": "2018-08-28", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742028", "href": "https://rest.gadventures.com/departures/742028", "date_created": "2016-05-18T21:12:02Z", "date_last_modified": "2018-08-06T04:22:10Z", "start_date": "2018-08-05", "finish_date": "2018-08-06", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 13 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742023", "href": "https://rest.gadventures.com/departures/742023", "date_created": "2016-05-18T21:12:00Z", "date_last_modified": "2018-08-05T04:15:52Z", "start_date": "2018-08-04", "finish_date": "2018-08-05", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "812005", "href": "https://rest.gadventures.com/departures/812005", "date_created": "2017-06-20T14:06:00Z", "date_last_modified": "2018-07-01T04:48:38Z", "start_date": "2018-06-30", "finish_date": "2018-07-01", "date_cancelled": "2017-06-20T14:22:41Z", "flags": [ "CLOSED_GROUPS" ], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "896253", "href": "https://rest.gadventures.com/departures/896253", "date_created": "2018-08-15T19:36:06Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-02-07", "finish_date": "2019-02-13", "date_cancelled": "2018-11-26T17:35:24Z", "flags": [ "TWIN_SHARE", "CLOSED_GROUPS", "FULL_PAYMENT_REQUIRED_TO_BOOK" ], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "669.00" } ] }, { "id": "742128", "href": "https://rest.gadventures.com/departures/742128", "date_created": "2016-05-18T21:12:48Z", "date_last_modified": "2018-08-26T04:04:04Z", "start_date": "2018-08-25", "finish_date": "2018-08-26", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "809247", "href": "https://rest.gadventures.com/departures/809247", "date_created": "2017-05-26T19:11:54Z", "date_last_modified": "2018-07-28T04:21:15Z", "start_date": "2018-07-27", "finish_date": "2018-08-09", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "2208.00" } ] }, { "id": "809249", "href": "https://rest.gadventures.com/departures/809249", "date_created": "2017-05-26T19:12:13Z", "date_last_modified": "2018-08-11T04:15:08Z", "start_date": "2018-08-10", "finish_date": "2018-08-23", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "2208.00" } ] }, { "id": "792977", "href": "https://rest.gadventures.com/departures/792977", "date_created": "2017-02-13T21:05:42Z", "date_last_modified": "2018-10-12T05:15:31Z", "start_date": "2018-10-11", "finish_date": "2018-10-12", "date_cancelled": "2017-02-13T21:12:08Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "79.00" } ] }, { "id": "785929", "href": "https://rest.gadventures.com/departures/785929", "date_created": "2017-01-12T18:57:43Z", "date_last_modified": "2018-10-25T13:30:44Z", "start_date": "2018-12-14", "finish_date": "2018-12-16", "date_cancelled": "2017-03-17T21:40:12Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "182.00" } ] }, { "id": "785899", "href": "https://rest.gadventures.com/departures/785899", "date_created": "2017-01-12T18:56:01Z", "date_last_modified": "2018-09-08T05:20:55Z", "start_date": "2018-09-07", "finish_date": "2018-09-09", "date_cancelled": "2017-03-17T21:40:11Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "182.00" } ] }, { "id": "792983", "href": "https://rest.gadventures.com/departures/792983", "date_created": "2017-02-13T21:05:52Z", "date_last_modified": "2018-11-09T06:17:08Z", "start_date": "2018-11-08", "finish_date": "2018-11-09", "date_cancelled": "2017-02-13T21:12:29Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "79.00" } ] }, { "id": "834520", "href": "https://rest.gadventures.com/departures/834520", "date_created": "2017-10-26T16:30:29Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-08-20", "finish_date": "2019-08-21", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 12 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "834503", "href": "https://rest.gadventures.com/departures/834503", "date_created": "2017-10-26T16:30:16Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-08-23", "finish_date": "2019-08-24", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 16 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "834385", "href": "https://rest.gadventures.com/departures/834385", "date_created": "2017-10-26T16:29:12Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-07-24", "finish_date": "2019-07-25", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 12 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "831955", "href": "https://rest.gadventures.com/departures/831955", "date_created": "2017-10-03T20:41:24Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-02-21", "finish_date": "2019-02-27", "date_cancelled": null, "flags": [ "TWIN_SHARE", "FULL_PAYMENT_REQUIRED_TO_BOOK" ], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "669.00" } ] }, { "id": "834593", "href": "https://rest.gadventures.com/departures/834593", "date_created": "2017-10-26T16:31:09Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-09-10", "finish_date": "2019-09-11", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 16 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "834030", "href": "https://rest.gadventures.com/departures/834030", "date_created": "2017-10-26T16:25:44Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-05-14", "finish_date": "2019-05-15", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 4 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "773089", "href": "https://rest.gadventures.com/departures/773089", "date_created": "2016-09-14T20:49:06Z", "date_last_modified": "2017-11-03T01:00:08Z", "start_date": "2018-12-22", "finish_date": "2018-12-31", "date_cancelled": "2017-03-16T18:30:53Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [] }, { "id": "905012", "href": "https://rest.gadventures.com/departures/905012", "date_created": "2018-09-13T21:17:19Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2020-04-28", "finish_date": "2020-04-29", "date_cancelled": null, "flags": [ "TWIN_SHARE", "CLOSED_GROUPS" ], "availability": { "status": "NOT_BOOKABLE", "total": 16 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741847", "href": "https://rest.gadventures.com/departures/741847", "date_created": "2016-05-18T21:10:39Z", "date_last_modified": "2018-12-12T20:23:31Z", "start_date": "2018-06-30", "finish_date": "2018-07-01", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741434", "href": "https://rest.gadventures.com/departures/741434", "date_created": "2016-05-18T21:07:15Z", "date_last_modified": "2018-04-11T04:03:29Z", "start_date": "2018-04-10", "finish_date": "2018-04-11", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 8 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741097", "href": "https://rest.gadventures.com/departures/741097", "date_created": "2016-05-18T21:04:36Z", "date_last_modified": "2018-12-14T03:12:09Z", "start_date": "2018-01-08", "finish_date": "2018-01-09", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 3 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "871416", "href": "https://rest.gadventures.com/departures/871416", "date_created": "2018-03-27T20:47:06Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-07-14", "finish_date": "2019-07-15", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 16 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "286.00" } ] }, { "id": "833818", "href": "https://rest.gadventures.com/departures/833818", "date_created": "2017-10-26T16:23:20Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-04-08", "finish_date": "2019-04-09", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 16 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "741307", "href": "https://rest.gadventures.com/departures/741307", "date_created": "2016-05-18T21:06:15Z", "date_last_modified": "2018-03-18T04:24:13Z", "start_date": "2018-03-17", "finish_date": "2018-03-18", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741515", "href": "https://rest.gadventures.com/departures/741515", "date_created": "2016-05-18T21:07:54Z", "date_last_modified": "2018-12-14T16:22:04Z", "start_date": "2018-02-17", "finish_date": "2018-02-18", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 11 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741500", "href": "https://rest.gadventures.com/departures/741500", "date_created": "2016-05-18T21:07:48Z", "date_last_modified": "2018-12-12T18:34:41Z", "start_date": "2018-04-23", "finish_date": "2018-04-24", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 1 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "742306", "href": "https://rest.gadventures.com/departures/742306", "date_created": "2016-05-18T21:14:14Z", "date_last_modified": "2018-10-07T05:02:04Z", "start_date": "2018-10-06", "finish_date": "2018-10-07", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 15 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "742398", "href": "https://rest.gadventures.com/departures/742398", "date_created": "2016-05-18T21:15:04Z", "date_last_modified": "2018-12-14T09:25:40Z", "start_date": "2018-10-18", "finish_date": "2018-10-19", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741900", "href": "https://rest.gadventures.com/departures/741900", "date_created": "2016-05-18T21:11:02Z", "date_last_modified": "2018-12-14T04:03:03Z", "start_date": "2018-07-17", "finish_date": "2018-07-18", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 16 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "741932", "href": "https://rest.gadventures.com/departures/741932", "date_created": "2016-05-18T21:11:19Z", "date_last_modified": "2018-07-18T04:04:00Z", "start_date": "2018-07-17", "finish_date": "2018-07-18", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "750150", "href": "https://rest.gadventures.com/departures/750150", "date_created": "2016-06-23T18:10:47Z", "date_last_modified": "2018-08-24T04:53:02Z", "start_date": "2018-08-23", "finish_date": "2018-08-29", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 2 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "669.00" } ] }, { "id": "871407", "href": "https://rest.gadventures.com/departures/871407", "date_created": "2018-03-27T20:46:25Z", "date_last_modified": "2019-01-29T17:19:36Z", "start_date": "2019-04-14", "finish_date": "2019-04-15", "date_cancelled": null, "flags": [ "TWIN_SHARE" ], "availability": { "status": "NOT_BOOKABLE", "total": 9 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "286.00" } ] }, { "id": "742706", "href": "https://rest.gadventures.com/departures/742706", "date_created": "2016-05-18T21:17:36Z", "date_last_modified": "2018-12-07T17:47:04Z", "start_date": "2018-12-25", "finish_date": "2018-12-26", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 12 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "742703", "href": "https://rest.gadventures.com/departures/742703", "date_created": "2016-05-18T21:17:36Z", "date_last_modified": "2018-12-07T17:47:04Z", "start_date": "2018-12-18", "finish_date": "2018-12-19", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 12 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "741670", "href": "https://rest.gadventures.com/departures/741670", "date_created": "2016-05-18T21:09:16Z", "date_last_modified": "2018-06-02T04:39:59Z", "start_date": "2018-06-01", "finish_date": "2018-06-02", "date_cancelled": "2018-04-10T16:01:01Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "400.00" } ] }, { "id": "741917", "href": "https://rest.gadventures.com/departures/741917", "date_created": "2016-05-18T21:11:11Z", "date_last_modified": "2018-12-12T20:24:14Z", "start_date": "2018-07-14", "finish_date": "2018-07-15", "date_cancelled": null, "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 1 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "320.00" } ] }, { "id": "755444", "href": "https://rest.gadventures.com/departures/755444", "date_created": "2016-07-28T17:51:52Z", "date_last_modified": "2018-12-12T20:34:50Z", "start_date": "2018-09-05", "finish_date": "2018-09-06", "date_cancelled": "2018-07-16T19:14:24Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "56.00" } ] }, { "id": "763498", "href": "https://rest.gadventures.com/departures/763498", "date_created": "2016-07-29T17:52:49Z", "date_last_modified": "2018-04-26T04:48:55Z", "start_date": "2018-04-25", "finish_date": "2018-04-26", "date_cancelled": "2018-01-22T18:05:33Z", "flags": [], "availability": { "status": "NOT_BOOKABLE", "total": 0 }, "lowest_pp2a_prices": [ { "currency": "USD", "amount": "56.00" } ] } ] }
Best Practices¶
With great power comes great responsibility. The search functionality is offered as a means of improving the customer experience, and ensuring the success of your integration in every facet. We recommend the following:
Search functionality can be used for auto-completion style search on your website, but we do recommend you sync data to a local database when you need to display tours. The search should be a means of providing an entry way into G API data, and from there, supplemented by a synced integration.
Search functionality can be used to keep your data in check, or provide means of building small scripts that fetch G API data in a specific manner, but you should continue to rely on webhooks as means of maintaining a real time sync.
Otherwise, enjoy exploring and we’re excited to hear how you are able to leverage the search functionality!