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

Note

Make sure the origin and destination is a valid place code from trip.com

Simple Example

One Way Trip Flights

in this example, we’ll scrape flights data from trip.com trip from Jakarta (CGK) to Singapore (SIN) at 12 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/trip/async' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
    "market": "SG",
    "tripType": "OW",
    "locale": "en-SG",
    "currency": "SGD",
    "origin": "CGK",
    "destination": "SIN",
    "departureDate": "2025-04-12",
    "class": "Economy",
    "adults": 1,
    "childs": 0,
    "infants": 0
}'
  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": [
        {
            "country": "en-SG",
            "currency": "SGD",
            "brand_id": "3K",
            "departure_brand_id": "3K",
            "departure_time": "21:50:00",
            "departure_date": "2025-04-12",
            "departure_duration_minute": "120",
            "departure_arrival_time": "00:50:00",
            "departure_arrival_date": "2025-04-13",
            "departure_flight_number": "206",
            "departure_route_airport": "CGK SIN",
            "departure_stop": "0",
            "fare": "46",
            "flight_class": "ECONOMY",
            "client_interface": "MOBILE-ANDROID",
            "site": "tripcomapp",
            "trip_type": "ONE_WAY",
            "login_type": "NON_LOGIN",
            "return_brand_id": null,
            "return_date": null,
            "return_departure_time": null,
            "return_arrival_date": null,
            "return_arrival_time": null,
            "return_flight_number": null,
            "return_route_airport": null,
            "return_stop": null,
            "return_duration_minute": null,
            "route_airport": "CGK SIN",
            "scrape_date": "2025-03-28",
            "scrape_time": "14:55:46.572Z",
            "scraping_type": "SCHEDULED",
            "type": "ECONOMY",
            "num_adult": 1,
            "num_child": null,
            "num_infant": null
        },
        ...rest
    ]
}

Round Trip Flights

in this example, we’ll scrape flights data from trip.com trip from Jakarta (CGK) to Singapore (SIN) at 12 April 2025 and return at 16 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/trip/async' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
    "market": "SG",
    "tripType": "RT",
    "locale": "en-SG",
    "currency": "SGD",
    "origin": "CGK",
    "destination": "SIN",
    "departureDate": "2025-04-12",
    "returnDate": "2025-04-16",
    "class": "Economy",
    "adults": 1,
    "childs": 0,
    "infants": 0
}'
  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": [
        {
            "country": "en-SG",
            "currency": "SGD",
            "brand_id": "XX",
            "departure_brand_id": "3K",
            "departure_time": "21:50:00",
            "departure_date": "2025-04-12",
            "departure_duration_minute": "120",
            "departure_arrival_time": "00:50:00",
            "departure_arrival_date": "2025-04-13",
            "departure_flight_number": "206",
            "departure_route_airport": "CGK SIN",
            "departure_stop": "0",
            "fare": "130",
            "flight_class": "ECONOMY",
            "client_interface": "MOBILE-ANDROID",
            "site": "tripcomapp",
            "trip_type": "ROUND_TRIP",
            "login_type": "NON_LOGIN",
            "return_brand_id": "QZ",
            "return_date": "2025-04-16",
            "return_departure_time": "12:00:00",
            "return_arrival_date": "2025-04-16",
            "return_arrival_time": "12:50:00",
            "return_flight_number": "267",
            "return_route_airport": "SIN CGK",
            "return_stop": "0",
            "return_duration_minute": "110",
            "route_airport": "CGK SIN",
            "scrape_date": "2025-03-28",
            "scrape_time": "15:01:32.534Z",
            "scraping_type": "SCHEDULED",
            "type": "ECONOMY",
            "num_adult": 1,
            "num_child": null,
            "num_infant": null
        },
        ...rest
    ]
}

Demo Example