{"info":{"_postman_id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","name":"Price Checker API","description":"<html><head></head><body><p>The Price Checker API is a cache for GOL API, storing the flight`s prices. Allows to get price history and search lowest price in time period.</p>\n<h2 id=\"authorization\">Authorization</h2>\n<p>Use header: <code>Authorization: obtained-user-token</code></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"7744352","collectionId":"6c879e33-fe7a-414f-9834-ece9fb48f13b","publishedId":"Szzq5vfh","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-06-24T13:41:45.000Z"},"item":[{"name":"Exact search","id":"82f39dc7-667f-44de-b98f-b04fa8124e50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"origin\": \"PRG\",\n    \"destination\": \"LON\",\n    \"flightType\": \"return\",\n    \"departure\": \"2020-12-12\",\n    \"arrival\": \"2020-12-14\",\n    \"maximumAgeMinutes\": 60,\n    \"golApiUrl\": \"https://golapi.golibe.com\",\n    \"golApiUsername\": \"user\",\n    \"golApiPassword\": \"pass\",\n    \"resultUrl\": \"https://your-webhook.cz\"\n}"},"url":"https://price-checker-api.cee-systems.com/exact","description":"<p>Get price for exact departure (date from) and arrival (date to). Search in GOL API and contains agency fees.</p>\n<h2 id=\"input-json-attributes\">Input JSON attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>origin</td>\n<td>IATA destination, supports multiple, e.g. <code>PRG/VIE</code></td>\n</tr>\n<tr>\n<td>destination</td>\n<td>IATA destination, supports multiple</td>\n</tr>\n<tr>\n<td>flightType</td>\n<td><code>oneway</code> or <code>return</code></td>\n</tr>\n<tr>\n<td>departure</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>arrival</td>\n<td>Date in format YYYY-MM-DD, for return flight use <code>null</code> or <code>undefined</code></td>\n</tr>\n<tr>\n<td>maximumAgeMinutes</td>\n<td>Number between <code>0</code> and <code>43200</code> (30 days)</td>\n</tr>\n<tr>\n<td>golApiUrl</td>\n<td>GOL API url</td>\n</tr>\n<tr>\n<td>golApiUsername</td>\n<td>GOL API username</td>\n</tr>\n<tr>\n<td>golApiPassword</td>\n<td>GOL API password</td>\n</tr>\n<tr>\n<td>resultUrl</td>\n<td>Your webhook url or <code>null</code> / <code>undefined</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"output-json-example\">Output JSON example</h2>\n<p>The result contains <code>searchId</code> to identify an asynchronise search result with a price</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"result\": \"Success\",\n    \"context\": {\n        \"searchId\": \"123456...\"\n    }\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","name":"Price Checker API","type":"collection"}},"urlObject":{"protocol":"https","path":["exact"],"host":["price-checker-api","cee-systems","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"82f39dc7-667f-44de-b98f-b04fa8124e50"},{"name":"Exact search webhook","id":"d58b6340-6e95-4629-afcd-d7acc9244a72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-url.cz?searchId=123456&price=1000 CZK","description":"<p>The search result is send to <code>resultUrl</code> as GET method with parameters <code>searchId</code> and <code>price</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","name":"Price Checker API","type":"collection"}},"urlObject":{"protocol":"https","host":["your-url","cz"],"query":[{"key":"searchId","value":"123456"},{"key":"price","value":"1000 CZK"}],"variable":[]}},"response":[],"_postman_id":"d58b6340-6e95-4629-afcd-d7acc9244a72"},{"name":"History","id":"90052364-39f9-4c94-878b-56b271fafbfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"origin\": \"PRG\",\n    \"destination\": \"LON\",\n    \"flightType\": \"return\",\n    \"departure\": \"2020-12-12\",\n    \"arrival\": \"2020-12-14\",\n    \"maxResults\": 10,\n    \"maxResultsPerDay\": 2,\n    \"maxTransfers\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://price-checker-api.cee-systems.com/history","description":"<p>Get price history for the flight.</p>\n<h2 id=\"input-json-attributes\">Input JSON attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>origin</td>\n<td>IATA destination, supports multiple, e.g. <code>PRG/VIE</code></td>\n</tr>\n<tr>\n<td>destination</td>\n<td>IATA destination, supports multiple</td>\n</tr>\n<tr>\n<td>flightType</td>\n<td><code>oneway</code> or <code>return</code></td>\n</tr>\n<tr>\n<td>departure</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>arrival</td>\n<td>Date in format YYYY-MM-DD, for return flight use <code>null</code> or <code>undefined</code></td>\n</tr>\n<tr>\n<td>maxResults</td>\n<td>Number between <code>0</code> and <code>1000</code></td>\n</tr>\n<tr>\n<td>maximumAgeMinutes</td>\n<td>Number between <code>0</code> and <code>43200</code> (30 days)</td>\n</tr>\n<tr>\n<td>maxResultsPerDay</td>\n<td>Number between <code>1</code> and <code>1000</code>, default is <code>1</code></td>\n</tr>\n<tr>\n<td>maxTransfers</td>\n<td>Number <code>0</code>, <code>1</code> or <code>2</code>, default is <code>2</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>Increasing attribute <code>maximumAgeMinutes</code> has negative effect to response latency.</p>\n<h2 id=\"output-json-example\">Output JSON example</h2>\n<p>The result contains <code>searchId</code> to identify an asynchronise search result with a price. If the price is not provided, search was done without any results.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"result\": \"Success\",\n    \"context\": [\n        {\n            \"created\": \"2020-01-01T11:57:00.000Z\",\n            \"price\": \"500 CZK\"\n        },\n        {\n            \"created\": \"2020-01-01T11:58:00.000Z\"\n        },\n        {\n            \"created\": \"2020-01-01T11:59:00.000Z\",\n            \"price\": \"600 CZK\"\n        }\n      ]\n}\n\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","name":"Price Checker API","type":"collection"}},"urlObject":{"protocol":"https","path":["history"],"host":["price-checker-api","cee-systems","com"],"query":[],"variable":[]}},"response":[{"id":"baeaace5-7710-4e6b-bd33-a17dc529fd48","name":"Ok","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/history?origin=PRG&destination=LON&flightType=return&departure=2019-07-01&arrival=2019-07-12","host":["{{url}}"],"path":["history"],"query":[{"key":"origin","value":"PRG"},{"key":"destination","value":"LON"},{"key":"flightType","value":"return"},{"key":"departure","value":"2019-07-01"},{"key":"arrival","value":"2019-07-12"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n\t\"status\": \"done\",\n\t\"results\": [\n\t\t{\n\t\t\t\"created\": \"2019-07-12 12:00:00\",\n\t\t\t\"price\": \"8260 CZK\"\n\t\t}\t\n\t]\n}"}],"_postman_id":"90052364-39f9-4c94-878b-56b271fafbfe"},{"name":"Period search","id":"d8ab4f49-e606-4a9d-9f73-3668fb1004cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"origin\": \"PRG\",\n    \"destination\": \"LON\",\n    \"flightType\": \"return\",\n    \"periodStart\": \"2020-10-11\",\n    \"periodEnd\": \"2020-12-12\",\n    \"maxResults\": 2,\n    \"maxTransfers\": 2\n}","options":{"raw":{"language":"json"}}},"url":"https://price-checker-api.cee-systems.com/period","description":"<p>Get flights in custom defined time period. Results are sorted by the lowest price.</p>\n<h2 id=\"input-json-attributes\">Input JSON attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>origin</td>\n<td>IATA destination, supports multiple, e.g. <code>PRG/VIE</code></td>\n</tr>\n<tr>\n<td>destination</td>\n<td>IATA destination, supports multiple</td>\n</tr>\n<tr>\n<td>flightType</td>\n<td><code>oneway</code> or <code>return</code></td>\n</tr>\n<tr>\n<td>periodStart</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>periodEnd</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>maxResults</td>\n<td>Number between <code>0</code> and <code>1000</code></td>\n</tr>\n<tr>\n<td>maxTransfers</td>\n<td>Number <code>0</code>, <code>1</code> or <code>2</code>, defalut is <code>2</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The result contains <code>searchId</code> to identify an asynchronise search result with a price</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","name":"Price Checker API","type":"collection"}},"urlObject":{"protocol":"https","path":["period"],"host":["price-checker-api","cee-systems","com"],"query":[],"variable":[]}},"response":[{"id":"41038624-2e3c-47e1-9bc9-2f992e49f89a","name":"Ok","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"origin\": \"PRG\",\r\n    \"destination\": \"LON\",\r\n    \"flightType\": \"return\",\r\n    \"periodStart\": \"2020-10-11\",\r\n    \"periodEnd\": \"2020-12-12\",\r\n    \"maxResults\": 2,\r\n    \"maxTransfers\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/period"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"Success\",\n  \"results\": [\n    {\n      \"created\": \"2021-12-20 12:00:00\",\n      \"price\": \"20582 CZK\",\n      \"departure\": \"2021-12-20\",\n      \"arrival\": \"2021-12-23\",\n      \"detail\": {\n        \"Module\": \"GALILEO\",\n        \"FlightSegments\": [\n          {\n            \"Origin\": \"PRG\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"IST\",\n            \"DepartureTime\": \"2021-12-20T12:00:00+01:00\",\n            \"Number\": \"1768\",\n            \"Plane\": \"737\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 0,\n            \"ArrivalTime\": \"2021-12-20T15:40:00+03:00\"\n          },\n          {\n            \"Origin\": \"IST\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"JFK\",\n            \"DepartureTime\": \"2021-12-20T18:20:00+03:00\",\n            \"Number\": \"11\",\n            \"Plane\": \"330\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 0,\n            \"ArrivalTime\": \"2021-12-20T21:55:00-05:00\"\n          },\n          {\n            \"Origin\": \"JFK\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"IST\",\n            \"DepartureTime\": \"2021-12-22T12:50:00-05:00\",\n            \"Number\": \"4\",\n            \"Plane\": \"330\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 1,\n            \"ArrivalTime\": \"2021-12-23T05:40:00+03:00\"\n          },\n          {\n            \"Origin\": \"IST\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"PRG\",\n            \"DepartureTime\": \"2021-12-23T09:20:00+03:00\",\n            \"Number\": \"1767\",\n            \"Plane\": \"32S\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 1,\n            \"ArrivalTime\": \"2021-12-23T11:05:00+01:00\"\n          }\n        ],\n        \"Key\": \"PD01-FO01-FO10\",\n        \"MaxTransfers\": 1,\n        \"BaggageLimit\": {\n          \"Quantity\": \"1 pc(s)\",\n          \"Weight\": \"20 kg\"\n        }\n      }\n    }\n  ]\n}\n"}],"_postman_id":"d8ab4f49-e606-4a9d-9f73-3668fb1004cb"},{"name":"Period calendar search","id":"0c2c219a-a766-4db7-b540-382cf11d2749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"origin\": \"PRG\",\n    \"destination\": \"BKK\",\n    \"flightType\": \"return\",\n    \"periodStart\": \"2023-11-01\",\n    \"periodEnd\": \"2024-03-31\",\n    \"maxTransfers\": 2,\n    \"airCompanyCode\": \"OK\"\n}","options":{"raw":{"language":"json"}}},"url":"https://price-checker-api.cee-systems.com/period-calendar","description":"<p>Get flights in custom defined time period for each day. Results are sorted by the lowest price.</p>\n<h2 id=\"input-json-attributes\">Input JSON attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>origin</td>\n<td>IATA destination, supports multiple, e.g. <code>PRG/VIE</code></td>\n</tr>\n<tr>\n<td>destination</td>\n<td>IATA destination, supports multiple</td>\n</tr>\n<tr>\n<td>flightType</td>\n<td><code>oneway</code> or <code>return</code></td>\n</tr>\n<tr>\n<td>periodStart</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>periodEnd</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>maxTransfers</td>\n<td>Number <code>0</code>, <code>1</code> or <code>2</code>, defalut is <code>2</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["period-calendar"],"host":["price-checker-api","cee-systems","com"],"query":[],"variable":[]}},"response":[{"id":"7e2a072f-ee31-41de-946e-90b08b875de9","name":"Ok","originalRequest":{"method":"GET","header":[],"url":{"raw":"flexible?origin=PRG&destination=NYC&flightType=return&datePeriodStart=2019-07-01&datePeriodEnd=2019-07-12&maxTransfers=2","host":["flexible"],"query":[{"key":"origin","value":"PRG"},{"key":"destination","value":"NYC"},{"key":"flightType","value":"return"},{"key":"datePeriodStart","value":"2019-07-01"},{"key":"datePeriodEnd","value":"2019-07-12"},{"key":"maxTransfers","value":"2"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"done\",\n  \"results\": {\n    \"2021-12-20\": {\n      \"created\": \"2021-12-20 12:00:00\",\n      \"price\": \"20582 CZK\",\n      \"departure\": \"2021-12-20\",\n      \"arrival\": \"2021-12-23\",\n      \"detail\": {\n        \"Module\": \"GALILEO\",\n        \"FlightSegments\": [\n          {\n            \"Origin\": \"PRG\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"IST\",\n            \"DepartureTime\": \"2021-12-20T12:00:00+01:00\",\n            \"Number\": \"1768\",\n            \"Plane\": \"737\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 0,\n            \"ArrivalTime\": \"2021-12-20T15:40:00+03:00\"\n          },\n          {\n            \"Origin\": \"IST\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"JFK\",\n            \"DepartureTime\": \"2021-12-20T18:20:00+03:00\",\n            \"Number\": \"11\",\n            \"Plane\": \"330\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 0,\n            \"ArrivalTime\": \"2021-12-20T21:55:00-05:00\"\n          },\n          {\n            \"Origin\": \"JFK\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"IST\",\n            \"DepartureTime\": \"2021-12-22T12:50:00-05:00\",\n            \"Number\": \"4\",\n            \"Plane\": \"330\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 1,\n            \"ArrivalTime\": \"2021-12-23T05:40:00+03:00\"\n          },\n          {\n            \"Origin\": \"IST\",\n            \"CabinClass\": \"Unknown\",\n            \"Destination\": \"PRG\",\n            \"DepartureTime\": \"2021-12-23T09:20:00+03:00\",\n            \"Number\": \"1767\",\n            \"Plane\": \"32S\",\n            \"OperatingCarrier\": \"TK\",\n            \"MarketingCarrier\": \"TK\",\n            \"SegmentGroup\": 1,\n            \"ArrivalTime\": \"2021-12-23T11:05:00+01:00\"\n          }\n        ],\n        \"Key\": \"PD01-FO01-FO10\",\n        \"MaxTransfers\": 1,\n        \"BaggageLimit\": {\n          \"Quantity\": \"1 pc(s)\",\n          \"Weight\": \"20 kg\"\n        }\n      }\n    }\n  }\n}\n"}],"_postman_id":"0c2c219a-a766-4db7-b540-382cf11d2749"},{"name":"Period calendar search V2","id":"5cb25513-250b-43c0-935d-f09a024a6a17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"origin\": \"PRG\",\n    \"destination\": \"AMS\",\n    \"flightType\": \"return\",\n    \"periodStart\": \"2024-09-01\",\n    \"periodEnd\": \"2024-10-31\",\n    \"maxTransfers\": 2,\n    \"airCompanyCode\": \"OK\",\n    \"maxResultsPerDay\": 2\n}","options":{"raw":{"language":"json"}}},"url":"https://price-checker-api.cee-systems.com/v2/period-calendar","description":"<p>Get flights in custom defined time period for each day. Results are sorted by the lowest price.</p>\n<h2 id=\"input-json-attributes\">Input JSON attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>origin</td>\n<td>IATA destination, supports multiple, e.g. <code>PRG/VIE</code></td>\n</tr>\n<tr>\n<td>destination</td>\n<td>IATA destination, supports multiple</td>\n</tr>\n<tr>\n<td>flightType</td>\n<td><code>oneway</code> or <code>return</code></td>\n</tr>\n<tr>\n<td>periodStart</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>periodEnd</td>\n<td>Date in format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>maxTransfers</td>\n<td>Number <code>0</code>, <code>1</code> or <code>2</code>, defalut is <code>2</code></td>\n</tr>\n<tr>\n<td>maxResultsPerDay</td>\n<td>Number <code>1</code> - <code>10</code> , default <code>1</code></td>\n</tr>\n<tr>\n<td>airCompanyCode</td>\n<td>Filter results by air company code, 2 char string</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","id":"6c879e33-fe7a-414f-9834-ece9fb48f13b","name":"Price Checker API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2","period-calendar"],"host":["price-checker-api","cee-systems","com"],"query":[],"variable":[]}},"response":[{"id":"b808252c-ab8e-4d34-b0de-313913442d50","name":"Ok","originalRequest":{"method":"GET","header":[],"url":{"raw":"flexible?origin=PRG&destination=NYC&flightType=return&datePeriodStart=2019-07-01&datePeriodEnd=2019-07-12&maxTransfers=2","host":["flexible"],"query":[{"key":"origin","value":"PRG"},{"key":"destination","value":"NYC"},{"key":"flightType","value":"return"},{"key":"datePeriodStart","value":"2019-07-01"},{"key":"datePeriodEnd","value":"2019-07-12"},{"key":"maxTransfers","value":"2"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"Success\",\n    \"context\": {\n        \"2024-09-06\": [\n            {\n                \"price\": \"3141 CZK\",\n                \"created\": \"2023-12-27T17:06:36.000Z\",\n                \"departure\": \"2024-09-06\",\n                \"arrival\": \"2024-09-09\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3141,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-06T20:40:00+02:00\",\n                            \"Number\": \"7930\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-06T22:15:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-09T18:30:00+02:00\",\n                            \"Number\": \"7929\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-09T20:00:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO002\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"1 pc(s)\",\n                        \"Weight\": \"20 kg\"\n                    }\n                }\n            },\n            {\n                \"price\": \"5069 CZK\",\n                \"created\": \"2023-12-27T17:06:36.000Z\",\n                \"departure\": \"2024-09-06\",\n                \"arrival\": \"2024-09-09\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 5069,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-06T20:40:00+02:00\",\n                            \"Number\": \"7930\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-06T22:15:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-09T18:30:00+02:00\",\n                            \"Number\": \"7929\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-09T20:00:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001PD005-FO009-FO010\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"1 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            }\n        ],\n        \"2024-09-20\": [\n            {\n                \"price\": \"3231 CZK\",\n                \"created\": \"2023-12-27T17:04:40.000Z\",\n                \"departure\": \"2024-09-20\",\n                \"arrival\": \"2024-09-23\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3231,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-20T20:40:00+02:00\",\n                            \"Number\": \"7930\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-20T22:15:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-23T07:05:00+02:00\",\n                            \"Number\": \"7925\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-23T08:35:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO002\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"0 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            },\n            {\n                \"price\": \"3231 CZK\",\n                \"created\": \"2023-12-27T17:04:40.000Z\",\n                \"departure\": \"2024-09-20\",\n                \"arrival\": \"2024-09-23\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3231,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-20T20:40:00+02:00\",\n                            \"Number\": \"7930\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-20T22:15:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-23T18:30:00+02:00\",\n                            \"Number\": \"7929\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-23T20:00:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO003\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"0 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            }\n        ],\n        \"2024-09-13\": [\n            {\n                \"price\": \"3115 CZK\",\n                \"created\": \"2023-12-27T17:03:27.000Z\",\n                \"departure\": \"2024-09-13\",\n                \"arrival\": \"2024-09-16\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3115,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-13T20:40:00+02:00\",\n                            \"Number\": \"7930\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-13T22:15:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-16T07:05:00+02:00\",\n                            \"Number\": \"7925\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-16T08:35:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO002\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"0 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            },\n            {\n                \"price\": \"3115 CZK\",\n                \"created\": \"2023-12-27T17:03:27.000Z\",\n                \"departure\": \"2024-09-13\",\n                \"arrival\": \"2024-09-16\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3115,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-13T20:40:00+02:00\",\n                            \"Number\": \"7930\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-13T22:15:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-16T18:30:00+02:00\",\n                            \"Number\": \"7929\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-16T20:00:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO003\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"0 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            }\n        ],\n        \"2024-09-27\": [\n            {\n                \"price\": \"3289 CZK\",\n                \"created\": \"2023-12-27T17:03:09.000Z\",\n                \"departure\": \"2024-09-27\",\n                \"arrival\": \"2024-09-30\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3289,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-27T09:05:00+02:00\",\n                            \"Number\": \"7926\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-27T10:40:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-30T07:05:00+02:00\",\n                            \"Number\": \"7925\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-30T08:35:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO003\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"0 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            },\n            {\n                \"price\": \"3289 CZK\",\n                \"created\": \"2023-12-27T17:03:09.000Z\",\n                \"departure\": \"2024-09-27\",\n                \"arrival\": \"2024-09-30\",\n                \"detail\": {\n                    \"Module\": \"TF\",\n                    \"Price\": 3289,\n                    \"PriceCurrency\": \"CZK\",\n                    \"FlightSegments\": [\n                        {\n                            \"Origin\": \"PRG\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"AMS\",\n                            \"DepartureTime\": \"2024-09-27T09:05:00+02:00\",\n                            \"Number\": \"7926\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 0,\n                            \"ArrivalTime\": \"2024-09-27T10:40:00+02:00\"\n                        },\n                        {\n                            \"Origin\": \"AMS\",\n                            \"CabinClass\": \"Economy\",\n                            \"Destination\": \"PRG\",\n                            \"DepartureTime\": \"2024-09-30T18:30:00+02:00\",\n                            \"Number\": \"7929\",\n                            \"Plane\": \"\",\n                            \"MarketingCarrier\": \"U2\",\n                            \"OperatingCarrier\": \"U2\",\n                            \"SegmentGroup\": 1,\n                            \"ArrivalTime\": \"2024-09-30T20:00:00+02:00\"\n                        }\n                    ],\n                    \"Key\": \"PD001-FO001-FO004\",\n                    \"MaxTransfers\": 0,\n                    \"BaggageLimit\": {\n                        \"Quantity\": \"0 pc(s)\",\n                        \"Weight\": \"\"\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"5cb25513-250b-43c0-935d-f09a024a6a17"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"<value>"}]}},"event":[{"listen":"prerequest","script":{"id":"0a405ea7-1d56-42c5-b218-ccef5e8a1b2a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fca19146-41cb-4d32-a997-a6ac05ad0982","type":"text/javascript","exec":[""]}}]}