It seems they have done away with their API. They have a much less powerful tool called the Search Gateway. How would I go about scraping airfare price data using this? Is it even possible? I would rather work in PHP or Ruby on Rails if possible.

Specifically, I want to start gathering data on the lowest airfare price between approximately 10 pairs of cities. I would like to have data for each hour of the day. I could just check kayak by hand, but I would like to be able to automate this process.

link|improve this question
1  
I wouldn't do that because screen scrapping is a basic hack, I mean everytime they are going to update their website you would have to update your script. Plus on the legal point of view they can sue you for using their data without their consent or just ban your server IP. – RageZ Feb 23 '11 at 2:33
1  
Yes, you can be sure that if they have gotten rid of their API, they probably don't want you in there getting data from them. – Brad Feb 23 '11 at 2:54
Good point. I have just written kayak an email and asked permission. Hopefully they won't mind, because my small project won't be putting any undue strain on their servers. – David Leibovic Feb 23 '11 at 3:27
feedback

3 Answers

up vote 1 down vote accepted

Railscast has an episode on screen scraping. Basically you can use the nokogiri gem for parsing the website to get at the data you need.

As for running it regularly, you can create a cron job for that. Here's a related stackoverflow question on it.

If you want to host the site somewhere I'd suggest Heroku. The only thing that wont be free is running the cron job more than once a day. But if you're ok with running it just once a day everything will be hosted for free.

link|improve this answer
feedback

check out http://www.kayak.com/labs/rss/

link|improve this answer
feedback

Try iMacros, i used it for screen scraping various hotel booking websites.

But even with a good tool, it is still a lot of work. So I would not do it for just booking one flight...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.