Priceline

Intro

You can get Priceline results by providing your own URLs to our service. We can return the HTML of any Priceline page you like.

Please note that you will scrape Priceline by employing the universal source. To learn about all the various ways you can fine-tune this source, please visit this page.

Input

The example below illustrates how you can get a Priceline listing page result in HTML format.

{
    "source": "universal", 
    "url": "https://www.priceline.com/relax/at/16651104/from/20230816/to/20230818/rooms/1/adults/1?pclnId=3910CC549829DDD288570372322831B599C900AC4320F775AB2147699E3F85158873A0D4C703127128F0B62954D080F9C476E83704843566613C90B20891A10115C0A93D27A7CDC9&gid=2016&cityId=3000035833&cur=EUR&backlink-id=vcq5lcygs1s&psl=16651104&qdp=157&vrid=91dcfd43af8b169df66837487203222b"
}

The example uses the Realtime integration method. If you would like to use some other integration method in your query (e.g. Push-Pull or Proxy Endpoint), refer to the integration methods section.

Although we do not have a dedicated parser for Priceline, you can write your own parsing instructions with Custom Parser feature and get structured data.

Output

After executing the code example above, you can expect to get an output similar to this:

{
    "results": [
        {
            "content":"<!doctype html>\n<html lang=\"en\">\n<head>
            ...
            </script></body>\n</html>\n",
            "created_at": "2022-11-17 14:53:52",
            "updated_at": "2022-11-17 14:53:54",
            "page": 1,
            "url": "https://www.priceline.com/relax/at/16651104/from/20230816/to/20230818/rooms/1/adults/1?pclnId=3910CC549829DDD288570372322831B599C900AC4320F775AB2147699E3F85158873A0D4C703127128F0B62954D080F9C476E83704843566613C90B20891A10115C0A93D27A7CDC9&gid=2016&cityId=3000035833&cur=EUR&backlink-id=vcq5lcygs1s&psl=16651104&qdp=157&vrid=91dcfd43af8b169df66837487203222b",
            "job_id": "6999021798385787905",
            "status_code": 200
        }
    ]
}

Last updated