Momondo Flight Prices Scraper avatar

Momondo Flight Prices Scraper

Pricing

from $10.00 / 1,000 flight price results

Go to Apify Store
Momondo Flight Prices Scraper

Momondo Flight Prices Scraper

Scrape public Momondo flight prices, airlines, schedules, durations, stops, and booking links for route research, fare monitoring, and travel data workflows.

Pricing

from $10.00 / 1,000 flight price results

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

14 days ago

Last modified

Categories

Share

Search the public Momondo flight finder and return normalized flight prices, airlines, times, durations, stops, and booking links for route research and fare monitoring.

Inputs

Provide origin, destination, and departureDate (YYYY-MM-DD). Optional inputs include returnDate, tripType, cabinClass, passenger counts, currency, and maxResults (1–100).

Output

Each dataset item is one public result. Price values are normalized when Momondo exposes a recognizable currency and amount; fields that are not exposed by the result card are null. Run diagnostics are stored in the SUMMARY key-value record.

{
"flightId": "atl-cdg-2026-09-15-0-245-delta",
"price": "USD 245",
"priceValue": 245,
"currency": "USD",
"airline": "Delta Air Lines",
"departureTime": "08:30 AM",
"arrivalTime": "11:15 PM",
"durationMinutes": 465,
"stops": 0,
"origin": "ATL",
"destination": "CDG",
"departureDate": "2026-09-15",
"returnDate": "2026-09-22",
"tripType": "roundtrip",
"cabinClass": "economy",
"bookingUrl": "https://www.momondo.com/"
}

Pricing and limitations

Pay per event charges the Actor start event and each dataset flight result. At the default 2 GB memory setting, a 20-result run has a maximum event charge of about $0.2002, excluding any platform usage pass-through configured by the owner. Momondo prices are dynamic and can change after extraction. If Momondo serves a challenge, access-denied page, or an unrecognizable result page, the Actor emits no fabricated records and explains the outcome in SUMMARY.

Use the data in accordance with Momondo/KAYAK terms, robots guidance, and applicable law. This Actor is for public, non-authenticated search results; it does not bypass CAPTCHA, login, paywalls, or other access controls.

What data does Momondo Flight Prices Scraper return?

FieldTypeDescription
flightIdstringFlight ID
pricestringDisplay price
priceValuenumber or nullNumeric price
currencystring or nullCurrency
airlinestringAirline
departureAirportstring or nullDeparture airport
arrivalAirportstring or nullArrival airport
departureTimestring or nullDeparture time
arrivalTimestring or nullArrival time
durationstring or nullDuration
durationMinutesinteger or nullDuration in minutes
stopsinteger or nullNumber of stops
stopCitiesarrayStop cities
originstringOrigin
destinationstringDestination
departureDatestringDeparture date
returnDatestring or nullReturn date
tripTypestringTrip type
cabinClassstringCabin class
bookingUrlstring or nullBooking URL
scrapedAtstringScraped at

Use cases

  • Compare public travel inventory, routes, locations, availability, or prices.
  • Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
  • Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
  • Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.

Run Momondo Flight Prices Scraper with the Apify API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/momondo-flight-prices-scraper').call({
"origin": "JFK",
"destination": "LHR",
"departureDate": "2026-09-15",
"returnDate": "2026-09-22",
"tripType": "roundtrip",
"cabinClass": "economy",
"adults": 1,
"children": 0
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.

Responsible use

Use this Actor only for data you are authorized to access. Follow the target website's terms, robots and access policies, and applicable privacy, database, copyright, anti-spam, and data-protection laws. Do not use it to bypass authentication or other access controls, collect private data, harass people, or make high-impact decisions without independent verification.

Support

When reporting a problem, include the Actor run ID, a redacted input, the expected result, and a small public example URL when applicable. Do not post API tokens, cookies, credentials, or personal data in an issue.

Frequently asked questions

Can I schedule Momondo Flight Prices Scraper?

Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.

How should I test a new input?

Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.

How do I export the results?

Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.

Can an AI agent call this Actor?

Yes. Add muhammadafzal/momondo-flight-prices-scraper through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.