views:

103

answers:

2

I am trying to aggregate movie times off of google/movies search into a usable format such as json or xml

http://www.google.com/movies?q=movie+times&sc=1&mid=&hl=en&oi=showtimes&ct=change-location&near=new+york

The Google AJAX api does not seem to work for this as you cannot do a movie search.

Does anyone know how this can be done?

+2  A: 

Lookup the technique called web scraping.

Basically, you have to fetch the results page using some server-side scripting, and then extract data from it, to present in a formated way (json, xml, etc). Regular expressions or a DOM/XML parser could help.

Maciej Łebkowski
A: 

This guy has a PHP script that converts Google results to RSS.

brien