Free Flight Ticket Scraper avatar
Free Flight Ticket Scraper

Deprecated

Pricing

Pay per usage

Go to Store
Free Flight Ticket Scraper

Free Flight Ticket Scraper

Deprecated

Developed by

Jindřich Bär

Maintained by Community

Free version of the Flight Ticket Scraper Actor. Search for great deals on flight tickets. Specify the airports you want to fly from and to, the dates you want to fly on, and the number of transfers you want to have on your flight.

0.0 (0)

Pricing

Pay per usage

2

Monthly users

3

Last modified

2 years ago

You can access the Free Flight Ticket Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "3AR5ZL3odeaSutye5"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/jindrich.bar~free-flight-ticket-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-jindrich.bar-free-flight-ticket-scraper",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/jindrich.bar~free-flight-ticket-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-jindrich.bar-free-flight-ticket-scraper",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/jindrich.bar~free-flight-ticket-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-jindrich.bar-free-flight-ticket-scraper",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "fromIATAs",
135          "toIATAs",
136          "dateFrom",
137          "currency"
138        ],
139        "properties": {
140          "fromIATAs": {
141            "title": "From (IATA airport codes)",
142            "type": "array",
143            "description": "Array of IATA codes of the airports you want to fly from. You can find the codes <a href=\"https://www.iata.org/en/publications/directories/code-search/\" target=\"_blank\">here</a>.",
144            "items": {
145              "type": "string"
146            }
147          },
148          "toIATAs": {
149            "title": "To (IATA airport codes)",
150            "type": "array",
151            "description": "IATA code of the airport you want to fly to. You can find the code <a href=\"https://www.iata.org/en/publications/directories/code-search/\" target=\"_blank\">here</a>.",
152            "items": {
153              "type": "string"
154            }
155          },
156          "currency": {
157            "title": "Currency",
158            "enum": [
159              "ADP",
160              "AED",
161              "AFA",
162              "AFN",
163              "ALK",
164              "ALL",
165              "AMD",
166              "ANG",
167              "AOA",
168              "AOK",
169              "AON",
170              "AOR",
171              "ARA",
172              "ARP",
173              "ARS",
174              "ARY",
175              "ATS",
176              "AUD",
177              "AWG",
178              "AYM",
179              "AZM",
180              "AZN",
181              "BAD",
182              "BAM",
183              "BBD",
184              "BDT",
185              "BEC",
186              "BEF",
187              "BEL",
188              "BGJ",
189              "BGK",
190              "BGL",
191              "BGN",
192              "BHD",
193              "BIF",
194              "BMD",
195              "BND",
196              "BOB",
197              "BOP",
198              "BOV",
199              "BRB",
200              "BRC",
201              "BRE",
202              "BRL",
203              "BRN",
204              "BRR",
205              "BSD",
206              "BTN",
207              "BUK",
208              "BWP",
209              "BYB",
210              "BYN",
211              "BYR",
212              "BZD",
213              "CAD",
214              "CDF",
215              "CHC",
216              "CHE",
217              "CHF",
218              "CHW",
219              "CLF",
220              "CLP",
221              "CNX",
222              "CNY",
223              "COP",
224              "COU",
225              "CRC",
226              "CSD",
227              "CSJ",
228              "CSK",
229              "CUC",
230              "CUP",
231              "CVE",
232              "CYP",
233              "CZK",
234              "DDM",
235              "DEM",
236              "DJF",
237              "DKK",
238              "DOP",
239              "DZD",
240              "ECS",
241              "ECV",
242              "EEK",
243              "EGP",
244              "ERN",
245              "ESA",
246              "ESB",
247              "ESP",
248              "ETB",
249              "EUR",
250              "FIM",
251              "FJD",
252              "FKP",
253              "FRF",
254              "GBP",
255              "GEK",
256              "GEL",
257              "GHC",
258              "GHP",
259              "GHS",
260              "GIP",
261              "GMD",
262              "GNE",
263              "GNF",
264              "GNS",
265              "GQE",
266              "GRD",
267              "GTQ",
268              "GWE",
269              "GWP",
270              "GYD",
271              "HKD",
272              "HNL",
273              "HRD",
274              "HRK",
275              "HTG",
276              "HUF",
277              "IDR",
278              "IEP",
279              "ILP",
280              "ILR",
281              "ILS",
282              "INR",
283              "IQD",
284              "IRR",
285              "ISJ",
286              "ISK",
287              "ITL",
288              "JMD",
289              "JOD",
290              "JPY",
291              "KES",
292              "KGS",
293              "KHR",
294              "KMF",
295              "KPW",
296              "KRW",
297              "KWD",
298              "KYD",
299              "KZT",
300              "LAJ",
301              "LAK",
302              "LBP",
303              "LKR",
304              "LRD",
305              "LSL",
306              "LSM",
307              "LTL",
308              "LTT",
309              "LUC",
310              "LUF",
311              "LUL",
312              "LVL",
313              "LVR",
314              "LYD",
315              "MAD",
316              "MDL",
317              "MGA",
318              "MGF",
319              "MKD",
320              "MLF",
321              "MMK",
322              "MNT",
323              "MOP",
324              "MRO",
325              "MTL",
326              "MTP",
327              "MUR",
328              "MVQ",
329              "MVR",
330              "MWK",
331              "MXN",
332              "MXP",
333              "MXV",
334              "MYR",
335              "MZE",
336              "MZM",
337              "MZN",
338              "NAD",
339              "NGN",
340              "NIC",
341              "NIO",
342              "NLG",
343              "NOK",
344              "NPR",
345              "NZD",
346              "OMR",
347              "PAB",
348              "PEH",
349              "PEI",
350              "PEN",
351              "PES",
352              "PGK",
353              "PHP",
354              "PKR",
355              "PLN",
356              "PLZ",
357              "PTE",
358              "PYG",
359              "QAR",
360              "RHD",
361              "ROK",
362              "ROL",
363              "RON",
364              "RSD",
365              "RUB",
366              "RUR",
367              "RWF",
368              "SAR",
369              "SBD",
370              "SCR",
371              "SDD",
372              "SDG",
373              "SDP",
374              "SEK",
375              "SGD",
376              "SHP",
377              "SIT",
378              "SKK",
379              "SLL",
380              "SOS",
381              "SRD",
382              "SRG",
383              "SSP",
384              "STD",
385              "SUR",
386              "SVC",
387              "SYP",
388              "SZL",
389              "THB",
390              "TJR",
391              "TJS",
392              "TMM",
393              "TMT",
394              "TND",
395              "TOP",
396              "TPE",
397              "TRL",
398              "TRY",
399              "TTD",
400              "TWD",
401              "TZS",
402              "UAH",
403              "UAK",
404              "UGS",
405              "UGW",
406              "UGX",
407              "USD",
408              "USN",
409              "USS",
410              "UYI",
411              "UYN",
412              "UYP",
413              "UYU",
414              "UZS",
415              "VEB",
416              "VEF",
417              "VNC",
418              "VND",
419              "VUV",
420              "WST",
421              "XAF",
422              "XAG",
423              "XAU",
424              "XBA",
425              "XBB",
426              "XBC",
427              "XBD",
428              "XCD",
429              "XDR",
430              "XEU",
431              "XFO",
432              "XFU",
433              "XOF",
434              "XPD",
435              "XPF",
436              "XPT",
437              "XRE",
438              "XSU",
439              "XTS",
440              "XUA",
441              "XXX",
442              "YDD",
443              "YER",
444              "YUD",
445              "YUM",
446              "YUN",
447              "ZAL",
448              "ZAR",
449              "ZMK",
450              "ZMW",
451              "ZRN",
452              "ZRZ",
453              "ZWC",
454              "ZWD",
455              "ZWL",
456              "ZWN",
457              "ZWR"
458            ],
459            "type": "string",
460            "description": "Currency for displayed prices.",
461            "default": "USD"
462          },
463          "dateFrom": {
464            "title": "Departure date (range from) (YYYY-MM-DD)",
465            "type": "string",
466            "description": "",
467            "default": "2023-12-01"
468          },
469          "dateUntil": {
470            "title": "Departure date (range to) (YYYY-MM-DD)",
471            "type": "string",
472            "description": ""
473          },
474          "dateFromRet": {
475            "title": "Return date (range from) (YYYY-MM-DD). If unset, the search will be for one-way tickets only.",
476            "type": "string",
477            "description": ""
478          },
479          "dateUntilRet": {
480            "title": "Return date (range to) (YYYY-MM-DD). If unset, the Actor will search for returns only on the date specified in the previous field.",
481            "type": "string",
482            "description": ""
483          },
484          "transfers": {
485            "title": "No. of transfers",
486            "enum": [
487              "0",
488              "1",
489              "2",
490              "3"
491            ],
492            "type": "string",
493            "description": "Number of transfers.",
494            "default": "0"
495          }
496        }
497      },
498      "runsResponseSchema": {
499        "type": "object",
500        "properties": {
501          "data": {
502            "type": "object",
503            "properties": {
504              "id": {
505                "type": "string"
506              },
507              "actId": {
508                "type": "string"
509              },
510              "userId": {
511                "type": "string"
512              },
513              "startedAt": {
514                "type": "string",
515                "format": "date-time",
516                "example": "2025-01-08T00:00:00.000Z"
517              },
518              "finishedAt": {
519                "type": "string",
520                "format": "date-time",
521                "example": "2025-01-08T00:00:00.000Z"
522              },
523              "status": {
524                "type": "string",
525                "example": "READY"
526              },
527              "meta": {
528                "type": "object",
529                "properties": {
530                  "origin": {
531                    "type": "string",
532                    "example": "API"
533                  },
534                  "userAgent": {
535                    "type": "string"
536                  }
537                }
538              },
539              "stats": {
540                "type": "object",
541                "properties": {
542                  "inputBodyLen": {
543                    "type": "integer",
544                    "example": 2000
545                  },
546                  "rebootCount": {
547                    "type": "integer",
548                    "example": 0
549                  },
550                  "restartCount": {
551                    "type": "integer",
552                    "example": 0
553                  },
554                  "resurrectCount": {
555                    "type": "integer",
556                    "example": 0
557                  },
558                  "computeUnits": {
559                    "type": "integer",
560                    "example": 0
561                  }
562                }
563              },
564              "options": {
565                "type": "object",
566                "properties": {
567                  "build": {
568                    "type": "string",
569                    "example": "latest"
570                  },
571                  "timeoutSecs": {
572                    "type": "integer",
573                    "example": 300
574                  },
575                  "memoryMbytes": {
576                    "type": "integer",
577                    "example": 1024
578                  },
579                  "diskMbytes": {
580                    "type": "integer",
581                    "example": 2048
582                  }
583                }
584              },
585              "buildId": {
586                "type": "string"
587              },
588              "defaultKeyValueStoreId": {
589                "type": "string"
590              },
591              "defaultDatasetId": {
592                "type": "string"
593              },
594              "defaultRequestQueueId": {
595                "type": "string"
596              },
597              "buildNumber": {
598                "type": "string",
599                "example": "1.0.0"
600              },
601              "containerUrl": {
602                "type": "string"
603              },
604              "usage": {
605                "type": "object",
606                "properties": {
607                  "ACTOR_COMPUTE_UNITS": {
608                    "type": "integer",
609                    "example": 0
610                  },
611                  "DATASET_READS": {
612                    "type": "integer",
613                    "example": 0
614                  },
615                  "DATASET_WRITES": {
616                    "type": "integer",
617                    "example": 0
618                  },
619                  "KEY_VALUE_STORE_READS": {
620                    "type": "integer",
621                    "example": 0
622                  },
623                  "KEY_VALUE_STORE_WRITES": {
624                    "type": "integer",
625                    "example": 1
626                  },
627                  "KEY_VALUE_STORE_LISTS": {
628                    "type": "integer",
629                    "example": 0
630                  },
631                  "REQUEST_QUEUE_READS": {
632                    "type": "integer",
633                    "example": 0
634                  },
635                  "REQUEST_QUEUE_WRITES": {
636                    "type": "integer",
637                    "example": 0
638                  },
639                  "DATA_TRANSFER_INTERNAL_GBYTES": {
640                    "type": "integer",
641                    "example": 0
642                  },
643                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
644                    "type": "integer",
645                    "example": 0
646                  },
647                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
648                    "type": "integer",
649                    "example": 0
650                  },
651                  "PROXY_SERPS": {
652                    "type": "integer",
653                    "example": 0
654                  }
655                }
656              },
657              "usageTotalUsd": {
658                "type": "number",
659                "example": 0.00005
660              },
661              "usageUsd": {
662                "type": "object",
663                "properties": {
664                  "ACTOR_COMPUTE_UNITS": {
665                    "type": "integer",
666                    "example": 0
667                  },
668                  "DATASET_READS": {
669                    "type": "integer",
670                    "example": 0
671                  },
672                  "DATASET_WRITES": {
673                    "type": "integer",
674                    "example": 0
675                  },
676                  "KEY_VALUE_STORE_READS": {
677                    "type": "integer",
678                    "example": 0
679                  },
680                  "KEY_VALUE_STORE_WRITES": {
681                    "type": "number",
682                    "example": 0.00005
683                  },
684                  "KEY_VALUE_STORE_LISTS": {
685                    "type": "integer",
686                    "example": 0
687                  },
688                  "REQUEST_QUEUE_READS": {
689                    "type": "integer",
690                    "example": 0
691                  },
692                  "REQUEST_QUEUE_WRITES": {
693                    "type": "integer",
694                    "example": 0
695                  },
696                  "DATA_TRANSFER_INTERNAL_GBYTES": {
697                    "type": "integer",
698                    "example": 0
699                  },
700                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
701                    "type": "integer",
702                    "example": 0
703                  },
704                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
705                    "type": "integer",
706                    "example": 0
707                  },
708                  "PROXY_SERPS": {
709                    "type": "integer",
710                    "example": 0
711                  }
712                }
713              }
714            }
715          }
716        }
717      }
718    }
719  }
720}

Free Flight Ticket Scraper OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Free Flight Ticket Scraper from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Pricing

Pricing model

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.