API

make a POST request to http://imdber.org/api with the following parameters:
  • search - imdb title/url/id


you will get a JSON response with all the available variables (with a 200 HTTP code) if it was successful.

Example:

PHP Code: 
curl -"search=batman rises" http://imdber.org/api
{"title":"The Dark Knight Rises","poster":"http:\/\/i.imgur.com\/uCUp2.jpg","length":"165 min","year":"2012","director":"Christopher Nolan","writer":"Jonathan Nolan, Christopher Nolan","plot":"Eight years on, a new terrorist leader, Bane, overwhelms Gotham's finest, and the Dark Knight resurfaces to protect a city that has branded him an enemy.","stars":"Christian Bale, Tom Hardy, Anne Hathaway","genre":"Action, Crime, Drama","released":"20 July 2012","rating":"8.8","rating_count":"374,939","trailer":"GokKUqLcvD8","imdb_url":"http:\/\/www.imdb.com\/title\/tt1345836\/"}
curl -"nonexistentparam=hello" http://imdber.org/api
{"error":"Invalid Request"}
curl -"search=nonexistentmovie" http://imdber.org/api
{"error":["404 Movie Not Found (81)"]}