In this example, we’ll demonstrate how to leverage our Trip API to extract flights data from skyscanner website.

Note

Make sure the origin and destination is a valid place code from skyscanner

Simple Example

One Way Trip Flights

in this example, we’ll scrape flights data from skyscanner MY trip from Kuala Lumpur (KUL) to jakarta (CGK) at 10 April 2025.

Follow the steps below to use our Skyscanner flight Scraper API:

  1. Use the request body below:
curl --location 'https://trip.queue.scraper.mrscraper.com/api/skyscanner/async' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
 "market": "MY", 
 "origin": "KUL",
 "destination": "CGK",
 "outboundDate": "2025-04-10",
 "tripType": "OW", 
 "cabinClass": "economy", 
 "domain": "com.my",
 "adults": 1,
 "children": 0,
 "locale": "ms-MY",
 "currency": "MYR",
 "flightCount": 20
}'
  1. Replace “Authorization” with your API token
  2. The request above will return the following JSON response:
{
    "success": true,
    "message": "URLs saved to queue",
    "data": {
        "result_id": <result_id>
    }
}
  1. After sending the request you can check your scraper result with this following request:
curl --location 'https://trip.queue.scraper.mrscraper.com/api/scraper/async/result/<result_id>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
  1. Replace the token with your API Token and replace the result_id with the result_id from number 3.
  2. The request above will return these following JSON responses

If the scraper is still running:

{
    "success": false,
    "message": "Result still in pending status, try again later",
    "data": {
        "status": "PENDING"
    }
}

If the result are not found in our server:

{
    "success": false,
    "message": "Not found",
    "data": "Result not found"
}

If the scraper finished and result are found in our server:

{
    "success": true,
    "message": "urls successfully netted",
    "data": [
        {
            "scrape_date": "2025-03-28T16:00:18",
            "scrape_time": "16:00:18",
            "country": "MY",
            "currency": "MYR",
            "fare": 412.49,
            "brand_id": "MR",
            "route_airport": "KUL CGK",
            "departure_brand_id": "MR - MR",
            "departure_time": "08:20:00",
            "departure_date": "2025-04-10",
            "departure_duration_minute": 740,
            "departure_arrival_time": "19:40:00",
            "departure_arrival_date": "2025-04-10",
            "departure_flight_number": "2102, 345",
            "departure_route_airport": "KUL PEN, PEN CGK",
            "departure_stop": 1,
            "return_brand_id": null,
            "return_time": null,
            "return_date": null,
            "return_duration_minute": null,
            "return_arrival_time": null,
            "return_arrival_date": null,
            "return_flight_number": null,
            "return_route_airport": null,
            "return_stop": 0,
            "flight_class": "ECONOMY",
            "client_interface": "APP",
            "site": "skyscanner",
            "trip_type": "ONE_WAY",
            "login_type": "NON_LOGIN",
            "platform": "Mytrip",
            "search_Category": "CHEAPEST",
            "search_rank": 1,
            "platform_rating": 4.48,
            "platform_review_ammount": 1091,
            "platform_fare_rank_within_category": 1,
            "num_adult": 1,
            "num_children": 0,
            "num_infants": null
        },
        ...rest
    ]
}

Round Trip Flights

in this example, we’ll scrape flights data from skyscanner AU trip from Melbourne (MEL) to singapore (SIN) at 10 April 2025 and return at 15 April 2025.

Follow the steps bellow to use our scraper API

  1. Use the request bellow:
curl --location 'https://trip.queue.scraper.mrscraper.com/api/skyscanner/async' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
 "market": "MY", 
 "origin": "KUL",
 "destination": "CGK",
 "outboundDate": "2025-04-10",
 "returnDate": "2025-04-15", 
 "tripType": "RT", 
 "cabinClass": "economy", 
 "domain": "com.my",
 "adults": 1,
 "children": 0,
 "locale": "ms-MY",
 "currency": "MYR",
 "flightCount": 20
}'
  1. Replace Authorization with your API token.
  2. The request above will return the following JSON response:
{
    "success": true,
    "message": "URLs saved to queue",
    "data": {
        "result_id": <result_id>
    }
}
  1. After sending the request you can check your scraper result with this following request:
curl --location 'https://trip.queue.scraper.mrscraper.com/api/scraper/async/result/<result_id>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
  1. Replace the token with your API Token and replace the result_id with the result_id from number 3.
  2. The request above will return these following JSON responses

If the scraper is still running:

{
    "success": false,
    "message": "Result still in pending status, try again later",
    "data": {
        "status": "PENDING"
    }
}

If the result are not found in our server:

{
    "success": false,
    "message": "Not found",
    "data": "Result not found"
}

If the scraper finished and result are found in our server:

{
    "success": true,
    "message": "urls successfully netted",
    "data": [
        {
            "scrape_date": "2025-03-28T14:26:31",
            "scrape_time": "14:26:31",
            "country": "MY",
            "currency": "MYR",
            "fare": 581.74,
            "brand_id": "XX",
            "route_airport": "KUL CGK",
            "departure_brand_id": "MR - QZ",
            "departure_time": "17:00:00",
            "departure_date": "2025-04-10",
            "departure_duration_minute": 1495,
            "departure_arrival_time": "16:55:00",
            "departure_arrival_date": "2025-04-11",
            "departure_flight_number": "1636, 531",
            "departure_route_airport": "KUL KCH, KCH CGK",
            "departure_stop": 1,
            "return_brand_id": "MR",
            "return_time": "05:15:00",
            "return_date": "2025-04-15",
            "return_duration_minute": 135,
            "return_arrival_time": "08:30:00",
            "return_arrival_date": "2025-04-15",
            "return_flight_number": "329",
            "return_route_airport": "CGK KUL",
            "return_stop": 0,
            "flight_class": "ECONOMY",
            "client_interface": "APP",
            "site": "skyscanner",
            "trip_type": "ROUND_TRIP",
            "login_type": "NON_LOGIN",
            "platform": "Gotogate",
            "search_Category": "CHEAPEST",
            "search_rank": 1,
            "platform_rating": 3.88,
            "platform_review_ammount": 207,
            "platform_fare_rank_within_category": 1,
            "num_adult": 1,
            "num_children": 0,
            "num_infants": null
        },
        ...rest
    ]
}


# Demo Example
<iframe width="560" height="315" src="https://www.youtube.com/embed/HvWLcuhL7fc?si=T-XBIm5CnZoVB62J" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="allowfullscreen"></iframe>