We have published our site API for all webmasters who wants to publish our movies on their sites. Our API is based on well-known XML language and should be really simple to implement. We also prepared some examples in PHP to make it easiest for you.
<eporner-data>
<movie>
<id>id of movie</id>
<title>title of the movie</title>
<keywords>keywords</keywords>
<views># of views</views>
<loc>URL to watch page</loc>
<imgthumb>URL thumbnail with preview</imgthumb>
<added>add date (UNIX timestamp)</added>
<added2>add date (YYYY-MM-DD HH:MM format)</added2>
<lenghtsec>lenght of movie in seconds</lenghtsec>
<lenghtmin>lenght of movie id MM:SS format</lenghtmin>
<embedscript>URL to javascript file inserting embeded movie to your site</embedscript>
<embedscriptmini>URL to javascript file inserting embeded movie to your site</embedscriptmini>
</movie>
....
</eporner-data>
URL scheme looks like this:
http://www.eporner.com/api_xml/KEYWORDS/NUMBER_OF_MOVIES
Where KEYWORDS are the keywords of the movies you like to display eg. "anal", "black", "blowjob" OR "all" you you want to display all movies
NUMBER_OF_MOVIES is number of movies you would like to display on your site. For example 5, 10, 15, 30
Sample URLs:
http://www.eporner.com/api_xml/all/5
http://www.eporner.com/api_xml/anal/10
http://www.eporner.com/api_xml/girlfriend/45
If you want to get all movies list try this (filesize is over 12MB) :
http://www.eporner.com/api_xml/all/1000000
List of last 5 movies with thumbnails:
Preview:
http://www.eporner.com/api_example2
Source code:
http://www.eporner.com/api_src/api_example2
Last 5 movies with embed watch code:
Preview:
http://www.eporner.com/api_example1
Source code:
http://www.eporner.com/api_src/api_example1
Advanced URL scheme:
http://www.eporner.com/api_xml/KEYWORDS/NUMBER_OF_MOVIES/START_FROM/ORDER_BY
Where KEYWORDS are the keywords of the movies you like to display eg. "anal", "black", "blowjob" OR "all" you you want to display all movies
NUMBER_OF_MOVIES is number of movies you would like to display on your site. For example 5, 10, 15, 30
START_FROM is the number of movies you would like to skip from the beginning of list
ORDER_BY is movies sorting. Currently supported "adddate" and "id". Movies sorted by "adddate" will change every database update. Movies sorted by "id" will be always the same.
Sample advanced URLs:
http://www.eporner.com/api_xml/all/10/0/id
http://www.eporner.com/api_xml/all/10/5/id
http://www.eporner.com/api_xml/blowjob/5/10/adddate
http://www.eporner.com/api_xml/anal/15/0/adddate


