RedTube API Documentation
Welcome to the RedTube API developer documentation! Here you can find detailed information needed to get data and integrate RedTube videos on your website or application. Below you can find a list of all supported API methods with a short description and code examples.
Content
Quick start guide
Here is a quick example of how you can get started with the API using PHP
<?php // Simple url builder function. // You can use CURL for passing HTTP GET parameters and to call the RedTube API. function RedTubeApiCall($http_server, $params = array()) { $query_string = '?'; if(is_array($params) && count($params)){ foreach($params as $k=>$v){ $query_string .= $k.'='.$v.'&'; } $query_string = rtrim($query_string,'&'); } $content = file_get_contents($http_server.$query_string); return $content; } $http = 'http://api.redtube.com/'; $call = 'redtube.Categories.getCategoriesList'; $params = array( 'output' => 'xml', 'data' => $call ); $response = RedTubeApiCall($http , $params); if ($response) { // handle the response } ?>
An example of how to view all active videos on RedTube.com
The following is an example of how to view all active videos on the site.
Please note that if no category parameter is used, only straight videos are retrieved by default. If you would also like to view gay or extreme videos (shemale, mature, etc.), you should pass a second parameter to the getRedtubeVideos function, using the name of the category.
You can use the function getCategoriesList to retrieve a list of all available categories.
<?php set_time_limit(0); function RedTubeApiCall($http_server, $params = array()) { $query_string = '?'; if(is_array($params) && count($params)){ foreach($params as $k=>$v){ $query_string .= $k.'='.$v.'&'; } $query_string = rtrim($query_string,'&'); } return file_get_contents($http_server.$query_string); } function getRedtubeVideos($page = 0, $category = false) { $http = 'http://api.redtube.com/'; $call = 'redtube.Videos.searchVideos'; $params = array( 'output' => 'json', 'data' => $call, 'page' => $page ); if($category){ $params['category'] = $category; } $response = RedTubeApiCall($http , $params); if ($response) { $json = json_decode($response); if(isset($json->code) && isset($json->message)){ throw new Exception($json->message, $json->code); } return $json; } return false; } $page = 1; $pages = 2; while(true) { try{ if($page > $pages) break; $videoResponse = getRedtubeVideos($page); // If you want to get videos from specific category you should pass second parameter to getRedtubeVideos function which is the name of the category. // getRedtubeVideos($page,'CATEGORY_NAME_HERE'); $videos = $videoResponse->videos; foreach($videos as $video) { $video_obj = $video->video; // $video_obj->title // $video_obj->duration ... etc // you can do whatever you want with that video details } $pages = $videoResponse->count % 20 == 0 ? $videoResponse->count / 20 : floor($videoResponse->count) / 20; $page++; unset($videoResponse); unset($videos); sleep(2); } catch(Exception $e){ // Something is wrong with the response. You should handle that exception. } } ?>
Video methods
Method searchVideos
Retrieves video list, can be filtered by multiple parameters, including the possibility to query the API for videos containing a specific string in the title or description.
Parameters
- category (Optional) String
- page (Optional) Integer / default 1 /
- search (Optional) String / search query string /
- tags (Optional) Array
- stars (Optional) Array
- thumbsize (Optional) If set, provides additional thumbnails in different formats. Possible values are: medium, small, big, all, medium1, medium2.
- ordering (Optional) If set, the returned XML output is ordered according the selected value. Possible values are: newest, mostviewed, rating.
- period (Optional - works only when 'ordering' parameter is used!) If set, the returned XML output will deliver videos from a period, based on the selected value. Possible values are: weekly, monthly, alltime.
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <root> <count>5</count> <videos> <video duration="24:25" views="1023316" video_id="114915" rating="4.49" ratings="1499" url="http://www.redtube.com/114915" default_thumb="http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_001m.jpg" thumb="http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_001m.jpg" publish_date="2012-01-11 13:58:02"> <title><![CDATA[Cute teen Michelle Maylene fucked hard]]></title> <tags> <tag><![CDATA[Couple]]></tag> <tag><![CDATA[Vaginal Sex]]></tag> <tag><![CDATA[Masturbation]]></tag> <tag><![CDATA[Oral Sex]]></tag> <tag><![CDATA[Teen]]></tag> <tag><![CDATA[Brunette]]></tag> <tag><![CDATA[Vaginal Masturbation]]></tag> <tag><![CDATA[Blowjob]]></tag> <tag><![CDATA[Shaved]]></tag> <tag><![CDATA[Cum Shot]]></tag> <tag><![CDATA[Facial]]></tag> <tag><![CDATA[High Heels]]></tag> </tags> <thumbs> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_003b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_003m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_003s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_003p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_003r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_004b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_004m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_004s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_004p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_004r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_005b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_005m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_005s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_005p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_005r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_006b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_006m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_006s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_006p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_006r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_007b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_007m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_007s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_007p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_007r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_008b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_008m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_008s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_008p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_008r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_009b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_009m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_009s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_009p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_009r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_010b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_010m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_010s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_010p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_010r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_011b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_011m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_011s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_011p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_011r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_012b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_012m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_012s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_012p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_012r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_013b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_013m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_013s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_013p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_013r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_014b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_014m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_014s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_014p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_014r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_016b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_016m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_016s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_016p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_016r.jpg</thumb> </thumbs> </video> <video duration="32:42" views="586532" video_id="73554" rating="4.43" ratings="836" url="http://www.redtube.com/73554" default_thumb="http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_001m.jpg" thumb="http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_001m.jpg" publish_date="2012-01-05 18:04:01"> <title><![CDATA[Teen Micah Moore is hot tight and likes it hard]]></title> <tags> <tag><![CDATA[Couple]]></tag> <tag><![CDATA[Vaginal Sex]]></tag> <tag><![CDATA[Masturbation]]></tag> <tag><![CDATA[Caucasian]]></tag> <tag><![CDATA[Vaginal Masturbation]]></tag> <tag><![CDATA[Blowjob]]></tag> <tag><![CDATA[Licking Vagina]]></tag> <tag><![CDATA[Kissing]]></tag> <tag><![CDATA[Stockings]]></tag> <tag><![CDATA[Skinny]]></tag> <tag><![CDATA[Spanking]]></tag> <tag><![CDATA[Cum Shot]]></tag> <tag><![CDATA[High Heels]]></tag> </tags> <stars> <star><![CDATA[Michael Stefano]]></star> <star><![CDATA[ Micah]]></star> <star><![CDATA[Remi]]></star> <star><![CDATA[Micah Moore]]></star> </stars> <thumbs> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_002b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_002m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_002s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_002p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_002r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_003b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_003m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_003s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_003p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_003r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_004b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_004m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_004s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_004p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_004r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_005b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_005m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_005s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_005p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_005r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_006b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_006m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_006s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_006p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_006r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_007b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_007m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_007s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_007p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_007r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_008b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_008m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_008s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_008p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_008r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_009b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_009m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_009s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_009p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_009r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_010b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_010m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_010s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_010p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_010r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_011b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_011m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_011s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_011p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_011r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_012b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_012m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_012s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_012p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_012r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_013b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_013m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_013s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_013p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_013r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_014b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_014m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_014s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_014p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_014r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_015b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_015m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_015s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_015p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_015r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_016b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_016m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_016s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_016p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_016r.jpg</thumb> </thumbs> </video> <video duration="5:03" views="1303407" video_id="90261" rating="4.27" ratings="1521" url="http://www.redtube.com/90261" default_thumb="http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_001m.jpg" thumb="http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_001m.jpg" publish_date="2012-01-05 09:06:01"> <title><![CDATA[Petite girl fucked hard]]></title> <tags> <tag><![CDATA[Couple]]></tag> <tag><![CDATA[Vaginal Sex]]></tag> <tag><![CDATA[Oral Sex]]></tag> <tag><![CDATA[Teen]]></tag> <tag><![CDATA[Caucasian]]></tag> <tag><![CDATA[Blowjob]]></tag> <tag><![CDATA[Cum Shot]]></tag> </tags> <thumbs> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_001b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_001m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_001s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_001p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_001r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_002b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_002m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_002s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_002p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_002r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_003b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_003m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_003s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_003p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_003r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_004b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_004m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_004s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_004p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_004r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_005b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_005m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_005s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_005p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_005r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_006b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_006m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_006s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_006p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_006r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_007b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_007m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_007s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_007p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_007r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_008b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_008m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_008s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_008p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_008r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_009b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_009m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_009s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_009p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_009r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_010b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_010m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_010s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_010p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_010r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_011b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_011m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_011s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_011p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_011r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_012b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_012m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_012s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_012p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_012r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_013b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_013m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_013s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_013p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_013r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_014b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_014m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_014s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_014p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_014r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_015b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_015m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_015s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_015p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_015r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_016b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_016m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_016s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_016p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_016r.jpg</thumb> </thumbs> </video> <video duration="24:05" views="719736" video_id="113368" rating="4.43" ratings="1039" url="http://www.redtube.com/113368" default_thumb="http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_001m.jpg" thumb="http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_001m.jpg" publish_date="2011-12-28 22:04:02"> <title><![CDATA[Cute cook gets hard cock]]></title> <tags> <tag><![CDATA[Couple]]></tag> <tag><![CDATA[Vaginal Sex]]></tag> <tag><![CDATA[Anal Sex]]></tag> <tag><![CDATA[Teen]]></tag> <tag><![CDATA[Brunette]]></tag> <tag><![CDATA[Small Tits]]></tag> <tag><![CDATA[Asian]]></tag> <tag><![CDATA[Funny]]></tag> </tags> <stars> <star><![CDATA[ Miss Amai]]></star> <star><![CDATA[ Tiny Tabby]]></star> <star><![CDATA[Amai Liu]]></star> <star><![CDATA[Pashpalata]]></star> <star><![CDATA[ Jamai Liu]]></star> </stars> <thumbs> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_001b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_001m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_001s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_001p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_001r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_002b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_002m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_002s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_002p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_002r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_003b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_003m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_003s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_003p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_003r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_004b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_004m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_004s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_004p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_004r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_005b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_005m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_005s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_005p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_005r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_006b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_006m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_006s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_006p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_006r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_007b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_007m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_007s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_007p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_007r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_008b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_008m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_008s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_008p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_008r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_009b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_009m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_009s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_009p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_009r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_010b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_010m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_010s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_010p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_010r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_011b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_011m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_011s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_011p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_011r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_012b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_012m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_012s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_012p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_012r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_013b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_013m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_013s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_013p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_013r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_014b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_014m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_014s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_014p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_014r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_015b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_015m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_015s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_015p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_015r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_016b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_016m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_016s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_016p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_016r.jpg</thumb> </thumbs> </video> <video duration="18:47" views="557629" video_id="81363" rating="4.20" ratings="635" url="http://www.redtube.com/81363" default_thumb="http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_001m.jpg" thumb="http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_001m.jpg" publish_date="2011-12-14 14:52:02"> <title><![CDATA[Teen fucks hard]]></title> <tags> <tag><![CDATA[Couple]]></tag> <tag><![CDATA[Vaginal Sex]]></tag> <tag><![CDATA[Oral Sex]]></tag> <tag><![CDATA[Teen]]></tag> <tag><![CDATA[Blonde]]></tag> <tag><![CDATA[Caucasian]]></tag> <tag><![CDATA[Blowjob]]></tag> <tag><![CDATA[Cum Shot]]></tag> </tags> <thumbs> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_002b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_002m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_002s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_002p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_002r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_003b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_003m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_003s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_003p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_003r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_004b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_004m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_004s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_004p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_004r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_005b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_005m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_005s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_005p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_005r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_006b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_006m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_006s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_006p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_006r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_007b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_007m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_007s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_007p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_007r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_008b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_008m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_008s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_008p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_008r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_009b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_009m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_009s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_009p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_009r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_010b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_010m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_010s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_010p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_010r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_011b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_011m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_011s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_011p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_011r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_012b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_012m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_012s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_012p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_012r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_013b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_013m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_013s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_013p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_013r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_014b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_014m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_014s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_014p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_014r.jpg</thumb> <thumb size="big" width="432" height="324">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_015b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_015m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_015s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_015p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_015r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_016b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_016m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_016s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_016p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_016r.jpg</thumb> </thumbs> </video> </videos> </root>
Sample method request (for JSON output)
Example JSON response
{ "count" : 5,
"videos" : [ { "video" : { "default_thumb" : "http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_001m.jpg",
"duration" : "24:25",
"publish_date" : "2012-01-11 13:58:02",
"rating" : "4.49",
"ratings" : "1499",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Teen" } },
{ "tag" : { "tag_name" : "Brunette" } },
{ "tag" : { "tag_name" : "Vaginal Masturbation" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Shaved" } },
{ "tag" : { "tag_name" : "Cum Shot" } },
{ "tag" : { "tag_name" : "Facial" } },
{ "tag" : { "tag_name" : "High Heels" } },
{ "tag" : { "tag_name" : "" } }
],
"thumb" : "http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_001m.jpg",
"thumbs" : [ { "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_003m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_004m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000114/0114915/0114915_005m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_006m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_007m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_008m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_009m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_010m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000114/0114915/0114915_011m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_012m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000114/0114915/0114915_013m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_014m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000114/0114915/0114915_016m.jpg",
"width" : 180
}
],
"title" : "Cute teen Michelle Maylene fucked hard",
"url" : "http://www.redtube.com/114915",
"video_id" : "114915",
"views" : 1023379
} },
{ "video" : { "default_thumb" : "http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_001m.jpg",
"duration" : "32:42",
"publish_date" : "2012-01-05 18:04:01",
"rating" : "4.43",
"ratings" : "836",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Teen" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Small Tits" } },
{ "tag" : { "tag_name" : "Caucasian" } },
{ "tag" : { "tag_name" : "Vaginal Masturbation" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Licking Vagina" } },
{ "tag" : { "tag_name" : "Kissing" } },
{ "tag" : { "tag_name" : "Stockings" } },
{ "tag" : { "tag_name" : "Skinny" } },
{ "tag" : { "tag_name" : "Spanking" } },
{ "tag" : { "tag_name" : "Cum Shot" } },
{ "tag" : { "tag_name" : "High Heels" } },
{ "tag" : { "tag_name" : "" } }
],
"thumb" : "http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_001m.jpg",
"thumbs" : [ { "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_002m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_003m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_004m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_005m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_006m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_007m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_008m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_009m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_010m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_011m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000073/0073554/0073554_012m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000073/0073554/0073554_013m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_014m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000073/0073554/0073554_015m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000073/0073554/0073554_016m.jpg",
"width" : 180
}
],
"title" : "Teen Micah Moore is hot tight and likes it hard",
"url" : "http://www.redtube.com/73554",
"video_id" : "73554",
"views" : 586563
} },
{ "video" : { "default_thumb" : "http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_001m.jpg",
"duration" : "5:03",
"publish_date" : "2012-01-05 09:06:01",
"rating" : "4.27",
"ratings" : "1521",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Teen" } },
{ "tag" : { "tag_name" : "Caucasian" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Cum Shot" } },
{ "tag" : { "tag_name" : "" } }
],
"thumb" : "http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_001m.jpg",
"thumbs" : [ { "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_001m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_002m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_003m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000090/0090261/0090261_004m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_005m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_006m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_007m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_008m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_009m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000090/0090261/0090261_010m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_011m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000090/0090261/0090261_012m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_013m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_014m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_015m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000090/0090261/0090261_016m.jpg",
"width" : 180
}
],
"title" : "Petite girl fucked hard",
"url" : "http://www.redtube.com/90261",
"video_id" : "90261",
"views" : 1303468
} },
{ "video" : { "default_thumb" : "http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_001m.jpg",
"duration" : "24:05",
"publish_date" : "2011-12-28 22:04:02",
"rating" : "4.43",
"ratings" : "1039",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Anal Sex" } },
{ "tag" : { "tag_name" : "Teen" } },
{ "tag" : { "tag_name" : "Brunette" } },
{ "tag" : { "tag_name" : "Small Tits" } },
{ "tag" : { "tag_name" : "Asian" } },
{ "tag" : { "tag_name" : "Funny" } },
{ "tag" : { "tag_name" : "" } }
],
"thumb" : "http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_001m.jpg",
"thumbs" : [ { "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_001m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_002m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_003m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_004m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_005m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000113/0113368/0113368_006m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_007m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_008m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_009m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_010m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_011m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000113/0113368/0113368_012m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_013m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_014m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000113/0113368/0113368_015m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000113/0113368/0113368_016m.jpg",
"width" : 180
}
],
"title" : "Cute cook gets hard cock",
"url" : "http://www.redtube.com/113368",
"video_id" : "113368",
"views" : 719809
} },
{ "video" : { "default_thumb" : "http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_001m.jpg",
"duration" : "18:47",
"publish_date" : "2011-12-14 14:52:02",
"rating" : "4.20",
"ratings" : "635",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Teen" } },
{ "tag" : { "tag_name" : "Blonde" } },
{ "tag" : { "tag_name" : "Caucasian" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Cum Shot" } },
{ "tag" : { "tag_name" : "" } }
],
"thumb" : "http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_001m.jpg",
"thumbs" : [ { "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_002m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_003m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_004m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_005m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_006m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000081/0081363/0081363_007m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_008m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_009m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_010m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_011m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_012m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_013m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000081/0081363/0081363_014m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000081/0081363/0081363_015m.jpg",
"width" : 180
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000081/0081363/0081363_016m.jpg",
"width" : 180
}
],
"title" : "Teen fucks hard",
"url" : "http://www.redtube.com/81363",
"video_id" : "81363",
"views" : 557634
} }
]
}Method getVideoById
Retrieves additional information about specific video by video_id parameter.
Parameters
- video_id (Required) Integer
- thumbsize (Optional) If set, provides additional thumbnails in different formats. Possible values are medium,small,big,all,medium1,medium2.
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <video duration="8:18" views="712165" video_id="15485" rating="3.87" ratings="929" url="http://www.redtube.com/15485" default_thumb="http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_001m.jpg" thumb="http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_001m.jpg" publish_date="2008-11-16 03:37:29"> <title><![CDATA[Sucking chocolate stick]]></title> <tags> <tag>Couple</tag> <tag>Oral Sex</tag> <tag>Brunette</tag> <tag>Caucasian</tag> <tag>Interracial</tag> <tag>Blowjob</tag> <tag>Cum Shot</tag> <tag>Outdoor</tag> </tags> <thumbs> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_001b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_001m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_001s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_001p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_001r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_002b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_002m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_002s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_002p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_002r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_003b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_003m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_003s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_003p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_003r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_004b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_004m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_004s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_004p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_004r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_005b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_005m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_005s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_005p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_005r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_006b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_006m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_006s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_006p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_006r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_007b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_007m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_007s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_007p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_007r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_008b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_008m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_008s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_008p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_008r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_009b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_009m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_009s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_009p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_009r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_010b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_010m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_010s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_010p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_010r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_011b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_011m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_011s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_011p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_011r.jpg</thumb> <thumb size="big" width="432" height="324">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_012b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_012m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_012s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_012p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_012r.jpg</thumb> <thumb size="big" width="432" height="324">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_013b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_013m.jpg</thumb> <thumb size="small" width="120" height="90">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_013s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_013p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_013r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_014b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_014m.jpg</thumb> <thumb size="small" width="120" height="90">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_014s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_014p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_014r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_015b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015m.jpg</thumb> <thumb size="small" width="120" height="90">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_015p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015r.jpg</thumb> <thumb size="big" width="432" height="324">http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_016b.jpg</thumb> <thumb size="medium" width="180" height="135">http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_016m.jpg</thumb> <thumb size="small" width="120" height="90">http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_016s.jpg</thumb> <thumb size="medium1" width="240" height="180">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_016p.jpg</thumb> <thumb size="medium2" width="320" height="240">http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_016r.jpg</thumb> </thumbs> </video>
Sample method request (for JSON output)
Example JSON response
{ "video" : { "default_thumb" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_001m.jpg",
"duration" : "8:18",
"publish_date" : "2008-11-16 03:37:29",
"rating" : "3.87",
"ratings" : "929",
"tags" : [ "Couple",
"Oral Sex",
"Brunette",
"Caucasian",
"Interracial",
"Blowjob",
"Cum Shot",
"Outdoor",
""
],
"thumb" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_001m.jpg",
"thumbs" : [ { "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_001b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_001m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_001s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_001p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_001r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_002b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_002m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_002s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_002p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_002r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_003b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_003m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_003s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_003p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_003r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_004b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_004m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_004s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_004p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_004r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_005b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_005m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_005s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_005p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_005r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_006b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_006m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_006s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_006p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_006r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_007b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_007m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_007s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_007p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_007r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_008b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_008m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_008s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_008p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_008r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_009b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_009m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_009s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_009p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_009r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_010b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_010m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_010s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_010p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_010r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_011b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_011m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_011s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_011p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_011r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_012b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_012m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_012s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_012p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_012r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_013b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_013m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_013s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_013p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_013r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_014b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_014m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_014s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img01.redtubefiles.com/_thumbs/0000015/0015485/0015485_014p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_014r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_015p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_015r.jpg",
"width" : 320
},
{ "height" : 324,
"size" : "big",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_016b.jpg",
"width" : 432
},
{ "height" : 135,
"size" : "medium",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_016m.jpg",
"width" : 180
},
{ "height" : 90,
"size" : "small",
"src" : "http://img02.redtubefiles.com/_thumbs/0000015/0015485/0015485_016s.jpg",
"width" : 120
},
{ "height" : 180,
"size" : "medium1",
"src" : "http://img04.redtubefiles.com/_thumbs/0000015/0015485/0015485_016p.jpg",
"width" : 240
},
{ "height" : 240,
"size" : "medium2",
"src" : "http://img03.redtubefiles.com/_thumbs/0000015/0015485/0015485_016r.jpg",
"width" : 320
}
],
"title" : "Sucking chocolate stick",
"url" : "http://www.redtube.com/15485",
"video_id" : "15485",
"views" : "712165"
} }Method isVideoActive
Retrieves state of a specific video specified by video_id parameter, which is useful in order to keep your embedded videos up to date.
Parameters
- video_id (Required) Integer
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <active> <video_id>38560</video_id> <is_active>1</is_active> </active>
Sample method request (for JSON output)
Example JSON response
{
"active":{
"video_id":"38560",
"is_active":true
}
}Method getVideoEmbedCode
Retrieves embed code (BASE64 encoded) for specific video by video_id parameter, which is useful to automatically embed videos.
Parameters
- video_id (Required) Integer
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <embed> <code> PG9iamVjdCBoZWlnaHQ9IjM0NCIgd2lkdGg9IjQzNCI+DQoJCQkJPHBhcmFtIG5hbWU9Im1vdmllIiB2YWx1ZT0iaHR0cDovL2VtYmVkLnJlZHR1YmUuY29tL3BsYXllci8iPg0KCQkJCTxwYXJhbSBuYW1lPSJGbGFzaFZhcnMiIHZhbHVlPSJpZD08Pz0kaVZpZGVvSWQ/PiZzdHlsZT1yZWR0dWJlJmF1dG9zdGFydD1mYWxzZSI+DQoJCQkJPGVtYmVkIHNyYz0iaHR0cDovL2VtYmVkLnJlZHR1YmUuY29tL3BsYXllci8/aWQ9MTU0ODUmc3R5bGU9cmVkdHViZSINCgkJCQlmbGFzaHZhcnM9ImF1dG9zdGFydD1mYWxzZSINCgkJCQlwbHVnaW5zcGFnZT0iaHR0cDovL3d3dy5hZG9iZS5jb20vc2hvY2t3YXZlL2Rvd25sb2FkL2Rvd25sb2FkLmNnaT9QMV9Qcm9kX1ZlcnNpb249U2hvY2t3YXZlRmxhc2giIA0KCQkJCXR5cGU9ImFwcGxpY2F0aW9uL3gtc2hvY2t3YXZlLWZsYXNoIiBoZWlnaHQ9IjM0NCIgd2lkdGg9IjQzNCIgLz4NCgkJCTwvb2JqZWN0PjxiciAvPjxhIGhyZWY9Imh0dHA6Ly93d3cucmVkdHViZS5jb20vMTU0ODU+IlN1Y2tpbmcgY2hvY29sYXRlIHN0aWNrPC9hPiBicm91Z2h0IHRvIHlvdSBieSA8YSBocmVmPSJodHRwOi8vd3d3LnJlZHR1YmUuY29tLyI+UmVkVHViZTwvYT4= </code> </embed>
Sample method request (for JSON output)
Example JSON response
{"embed":{"code":"PG9iamVjdCBoZWlnaHQ9IjM0NCIgd2lkdGg9IjQzNCI+DQoJCQkJPHBhcmFtIG5hbWU9Im1vdmllIiB2YWx1ZT0iaHR0cDovL2VtYmVkLnJlZHR1YmUuY29tL3BsYXllci8iPg0KCQkJCTxwYXJhbSBuYW1lPSJGbGFzaFZhcnMiIHZhbHVlPSJpZD08Pz0kaVZpZGVvSWQ\/PiZzdHlsZT1yZWR0dWJlJmF1dG9zdGFydD1mYWxzZSI+DQoJCQkJPGVtYmVkIHNyYz0iaHR0cDovL2VtYmVkLnJlZHR1YmUuY29tL3BsYXllci8\/aWQ9MTU0ODUmc3R5bGU9cmVkdHViZSINCgkJCQlmbGFzaHZhcnM9ImF1dG9zdGFydD1mYWxzZSINCgkJCQlwbHVnaW5zcGFnZT0iaHR0cDovL3d3dy5hZG9iZS5jb20vc2hvY2t3YXZlL2Rvd25sb2FkL2Rvd25sb2FkLmNnaT9QMV9Qcm9kX1ZlcnNpb249U2hvY2t3YXZlRmxhc2giIA0KCQkJCXR5cGU9ImFwcGxpY2F0aW9uL3gtc2hvY2t3YXZlLWZsYXNoIiBoZWlnaHQ9IjM0NCIgd2lkdGg9IjQzNCIgLz4NCgkJCTwvb2JqZWN0PjxiciAvPjxhIGhyZWY9Imh0dHA6Ly93d3cucmVkdHViZS5jb20vMTU0ODU+IlN1Y2tpbmcgY2hvY29sYXRlIHN0aWNrPC9hPiBicm91Z2h0IHRvIHlvdSBieSA8YSBocmVmPSJodHRwOi8vd3d3LnJlZHR1YmUuY29tLyI+UmVkVHViZTwvYT4="}}Method getDeletedVideos
Retrieves all deleted videos.
Parameters
- page (Required) Integer
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <root> <count>4486</count> <videos> <video duration="4:59" views="916785" video_id="42460" rating="4.1" ratings="665" url="http://www.redtube.com/42460" publish_date="2011-02-03"> <title><![CDATA[Two cute girls with a camera and a rod]]></title> </video> <video duration="9:50" views="51" video_id="70073" rating="1" ratings="1" url="http://www.redtube.com/70073" publish_date="2011-08-30"> <title><![CDATA[Hot brunette taking Bath]]></title> </video> <video duration="2:08" views="943874" video_id="24210" rating="4.23" ratings="865" url="http://www.redtube.com/24210" publish_date="2009-09-01"> <title><![CDATA[Fucked and choked]]></title> </video> <video duration="3:03" views="464789" video_id="29807" rating="4.29" ratings="402" url="http://www.redtube.com/29807" publish_date="2010-01-20"> <title><![CDATA[Bikini girl gets shagged]]></title> </video> <video duration="6:39" views="488" video_id="45966" rating="4.76" ratings="21" url="http://www.redtube.com/45966" publish_date="2011-05-12"> <title><![CDATA[me having fun with dildo and fingers]]></title> </video> <video duration="10:51" views="38" video_id="70129" rating="0" ratings="0" url="http://www.redtube.com/70129" publish_date="2011-08-30"> <title><![CDATA[jorge gettin oral]]></title> </video> <video duration="2:06" views="547167" video_id="28927" rating="4.16" ratings="421" url="http://www.redtube.com/28927" publish_date="2009-11-07"> <title><![CDATA[Riley Evans the hero pussy]]></title> </video> <video duration="2:26" views="1323985" video_id="31984" rating="4.45" ratings="1493" url="http://www.redtube.com/31984" publish_date="2010-02-09"> <title><![CDATA[Shyla searching for strong machine]]></title> </video> <video duration="4:54" views="613888" video_id="58766" rating="4.27" ratings="596" url="http://www.redtube.com/58766" publish_date="2011-07-12"> <title><![CDATA[Sweet sucking]]></title> </video> <video duration="0:23" views="256" video_id="42691" rating="1.8" ratings="10" url="http://www.redtube.com/42691" publish_date="2011-05-11"> <title><![CDATA[Beth Broderick - who cares]]></title> </video> <video duration="31:45" views="23" video_id="64224" rating="5" ratings="1" url="http://www.redtube.com/64224" publish_date="2011-07-31"> <title><![CDATA[Amateur Masturbation video w/ Dildo]]></title> </video> <video duration="0:20" views="849310" video_id="9614" rating="3.81" ratings="1085" url="http://www.redtube.com/9614" publish_date="2008-03-14"> <title><![CDATA[Hanna, Jackie and Rene in action]]></title> </video> <video duration="7:54" views="1921077" video_id="36790" rating="4.63" ratings="2934" url="http://www.redtube.com/36790" publish_date="2010-09-12"> <title><![CDATA[Sexy girls in bed]]></title> </video> </videos> </root>
Sample method request (for JSON output)
Example JSON response
{ "count" : "3205",
"videos" : [ { "video" : { "duration" : "0:41",
"publish_date" : "2011-09-08",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Solo Girl" } },
{ "tag" : { "tag_name" : "Squirting" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "squirt",
"url" : "http://www.redtube.com/72858",
"video_id" : "72858",
"views" : "2"
} },
{ "video" : { "duration" : "4:06",
"publish_date" : "2011-09-16",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Public" } },
{ "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Outdoor" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "muff diving nooner",
"url" : "http://www.redtube.com/76254",
"video_id" : "76254",
"views" : "0"
} },
{ "video" : { "duration" : "3:34",
"publish_date" : "2011-09-10",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Angy y Borr",
"url" : "http://www.redtube.com/74107",
"video_id" : "74107",
"views" : "1"
} },
{ "video" : { "duration" : "2:21",
"publish_date" : "2009-09-16",
"rating" : "4.39",
"ratings" : "1768",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Big Tits" } },
{ "tag" : { "tag_name" : "Caucasian" } },
{ "tag" : { "tag_name" : "Shaved" } },
{ "tag" : { "tag_name" : "Piercings" } },
{ "tag" : { "tag_name" : "Tattoos" } },
{ "tag" : { "tag_name" : "Pornstar" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Just leave it to Mommy!",
"url" : "http://www.redtube.com/24866",
"video_id" : "24866",
"views" : "1794292"
} },
{ "video" : { "duration" : "7:45",
"publish_date" : "2011-06-14",
"rating" : "3.98",
"ratings" : "258",
"tags" : [ { "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Asian" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Amateur couple in front of a camera",
"url" : "http://www.redtube.com/51021",
"video_id" : "51021",
"views" : "305608"
} },
{ "video" : { "duration" : "3:34",
"publish_date" : "2011-09-17",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Peeing" } },
{ "tag" : { "tag_name" : "Anal Masturbation" } },
{ "tag" : { "tag_name" : "Webcam" } },
{ "tag" : { "tag_name" : "Glory Hole" } },
{ "tag" : { "tag_name" : "Muscular" } },
{ "tag" : { "tag_name" : "Fetish" } },
{ "tag" : { "tag_name" : "Female-Friendly" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Ultimate Jerk-Off - Jerk, Pee ,Tiight Assplay",
"url" : "http://www.redtube.com/76931",
"video_id" : "76931",
"views" : "1"
} },
{ "video" : { "duration" : "5:07",
"publish_date" : "2011-08-30",
"rating" : "0",
"ratings" : "0",
"title" : "test storigeeee",
"url" : "http://www.redtube.com/70165",
"video_id" : "70165",
"views" : "1"
} },
{ "video" : { "duration" : "3:00",
"publish_date" : "2011-09-15",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Anal Sex" } },
{ "tag" : { "tag_name" : "Bondage" } },
{ "tag" : { "tag_name" : "Brunette" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Asian" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Bathroom" } },
{ "tag" : { "tag_name" : "Car" } },
{ "tag" : { "tag_name" : "Bikini" } },
{ "tag" : { "tag_name" : "Bareback" } },
{ "tag" : { "tag_name" : "Cartoon" } },
{ "tag" : { "tag_name" : "Behind the Scenes" } },
{ "tag" : { "tag_name" : "CFNM" } },
{ "tag" : { "tag_name" : "Big Cock" } },
{ "tag" : { "tag_name" : "Boots" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "o curva din alba iulia OLIMPIa",
"url" : "http://www.redtube.com/75809",
"video_id" : "75809",
"views" : "2"
} },
{ "video" : { "duration" : "0:13",
"publish_date" : "2011-09-08",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Solo Girl" } },
{ "tag" : { "tag_name" : "Squirting" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "squirt",
"url" : "http://www.redtube.com/72855",
"video_id" : "72855",
"views" : "1"
} },
{ "video" : { "duration" : "24:50",
"publish_date" : "2010-05-23",
"rating" : "4.5",
"ratings" : "1062",
"tags" : [ { "tag" : { "tag_name" : "Group Sex" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Bondage" } },
{ "tag" : { "tag_name" : "Vaginal Masturbation" } },
{ "tag" : { "tag_name" : "Licking Vagina" } },
{ "tag" : { "tag_name" : "Hentai" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "La blue girl fighting butterflies 1",
"url" : "http://www.redtube.com/35397",
"video_id" : "35397",
"views" : "0"
} }
]
}Method getDeletedVideos
Retrieves all deleted videos.
Parameters
- page (Required) Integer
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <root> <count>4486</count> <videos> <video duration="4:59" views="916785" video_id="42460" rating="4.1" ratings="665" url="http://www.redtube.com/42460" publish_date="2011-02-03"> <title><![CDATA[Two cute girls with a camera and a rod]]></title> </video> <video duration="9:50" views="51" video_id="70073" rating="1" ratings="1" url="http://www.redtube.com/70073" publish_date="2011-08-30"> <title><![CDATA[Hot brunette taking Bath]]></title> </video> <video duration="2:08" views="943874" video_id="24210" rating="4.23" ratings="865" url="http://www.redtube.com/24210" publish_date="2009-09-01"> <title><![CDATA[Fucked and choked]]></title> </video> <video duration="3:03" views="464789" video_id="29807" rating="4.29" ratings="402" url="http://www.redtube.com/29807" publish_date="2010-01-20"> <title><![CDATA[Bikini girl gets shagged]]></title> </video> <video duration="6:39" views="488" video_id="45966" rating="4.76" ratings="21" url="http://www.redtube.com/45966" publish_date="2011-05-12"> <title><![CDATA[me having fun with dildo and fingers]]></title> </video> <video duration="10:51" views="38" video_id="70129" rating="0" ratings="0" url="http://www.redtube.com/70129" publish_date="2011-08-30"> <title><![CDATA[jorge gettin oral]]></title> </video> <video duration="2:06" views="547167" video_id="28927" rating="4.16" ratings="421" url="http://www.redtube.com/28927" publish_date="2009-11-07"> <title><![CDATA[Riley Evans the hero pussy]]></title> </video> <video duration="2:26" views="1323985" video_id="31984" rating="4.45" ratings="1493" url="http://www.redtube.com/31984" publish_date="2010-02-09"> <title><![CDATA[Shyla searching for strong machine]]></title> </video> <video duration="4:54" views="613888" video_id="58766" rating="4.27" ratings="596" url="http://www.redtube.com/58766" publish_date="2011-07-12"> <title><![CDATA[Sweet sucking]]></title> </video> <video duration="0:23" views="256" video_id="42691" rating="1.8" ratings="10" url="http://www.redtube.com/42691" publish_date="2011-05-11"> <title><![CDATA[Beth Broderick - who cares]]></title> </video> <video duration="31:45" views="23" video_id="64224" rating="5" ratings="1" url="http://www.redtube.com/64224" publish_date="2011-07-31"> <title><![CDATA[Amateur Masturbation video w/ Dildo]]></title> </video> <video duration="0:20" views="849310" video_id="9614" rating="3.81" ratings="1085" url="http://www.redtube.com/9614" publish_date="2008-03-14"> <title><![CDATA[Hanna, Jackie and Rene in action]]></title> </video> <video duration="7:54" views="1921077" video_id="36790" rating="4.63" ratings="2934" url="http://www.redtube.com/36790" publish_date="2010-09-12"> <title><![CDATA[Sexy girls in bed]]></title> </video> </videos> </root>
Sample method request (for JSON output)
Example JSON response
{ "count" : "3205",
"videos" : [ { "video" : { "duration" : "0:41",
"publish_date" : "2011-09-08",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Solo Girl" } },
{ "tag" : { "tag_name" : "Squirting" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "squirt",
"url" : "http://www.redtube.com/72858",
"video_id" : "72858",
"views" : "2"
} },
{ "video" : { "duration" : "4:06",
"publish_date" : "2011-09-16",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Public" } },
{ "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Outdoor" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "muff diving nooner",
"url" : "http://www.redtube.com/76254",
"video_id" : "76254",
"views" : "0"
} },
{ "video" : { "duration" : "3:34",
"publish_date" : "2011-09-10",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Angy y Borr",
"url" : "http://www.redtube.com/74107",
"video_id" : "74107",
"views" : "1"
} },
{ "video" : { "duration" : "2:21",
"publish_date" : "2009-09-16",
"rating" : "4.39",
"ratings" : "1768",
"tags" : [ { "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Big Tits" } },
{ "tag" : { "tag_name" : "Caucasian" } },
{ "tag" : { "tag_name" : "Shaved" } },
{ "tag" : { "tag_name" : "Piercings" } },
{ "tag" : { "tag_name" : "Tattoos" } },
{ "tag" : { "tag_name" : "Pornstar" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Just leave it to Mommy!",
"url" : "http://www.redtube.com/24866",
"video_id" : "24866",
"views" : "1794292"
} },
{ "video" : { "duration" : "7:45",
"publish_date" : "2011-06-14",
"rating" : "3.98",
"ratings" : "258",
"tags" : [ { "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Asian" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Amateur couple in front of a camera",
"url" : "http://www.redtube.com/51021",
"video_id" : "51021",
"views" : "305608"
} },
{ "video" : { "duration" : "3:34",
"publish_date" : "2011-09-17",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Peeing" } },
{ "tag" : { "tag_name" : "Anal Masturbation" } },
{ "tag" : { "tag_name" : "Webcam" } },
{ "tag" : { "tag_name" : "Glory Hole" } },
{ "tag" : { "tag_name" : "Muscular" } },
{ "tag" : { "tag_name" : "Fetish" } },
{ "tag" : { "tag_name" : "Female-Friendly" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "Ultimate Jerk-Off - Jerk, Pee ,Tiight Assplay",
"url" : "http://www.redtube.com/76931",
"video_id" : "76931",
"views" : "1"
} },
{ "video" : { "duration" : "5:07",
"publish_date" : "2011-08-30",
"rating" : "0",
"ratings" : "0",
"title" : "test storigeeee",
"url" : "http://www.redtube.com/70165",
"video_id" : "70165",
"views" : "1"
} },
{ "video" : { "duration" : "3:00",
"publish_date" : "2011-09-15",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Anal Sex" } },
{ "tag" : { "tag_name" : "Bondage" } },
{ "tag" : { "tag_name" : "Brunette" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Asian" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Bathroom" } },
{ "tag" : { "tag_name" : "Car" } },
{ "tag" : { "tag_name" : "Bikini" } },
{ "tag" : { "tag_name" : "Bareback" } },
{ "tag" : { "tag_name" : "Cartoon" } },
{ "tag" : { "tag_name" : "Behind the Scenes" } },
{ "tag" : { "tag_name" : "CFNM" } },
{ "tag" : { "tag_name" : "Big Cock" } },
{ "tag" : { "tag_name" : "Boots" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "o curva din alba iulia OLIMPIa",
"url" : "http://www.redtube.com/75809",
"video_id" : "75809",
"views" : "2"
} },
{ "video" : { "duration" : "0:13",
"publish_date" : "2011-09-08",
"rating" : "0",
"ratings" : "0",
"tags" : [ { "tag" : { "tag_name" : "Solo Girl" } },
{ "tag" : { "tag_name" : "Squirting" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "squirt",
"url" : "http://www.redtube.com/72855",
"video_id" : "72855",
"views" : "1"
} },
{ "video" : { "duration" : "24:50",
"publish_date" : "2010-05-23",
"rating" : "4.5",
"ratings" : "1062",
"tags" : [ { "tag" : { "tag_name" : "Group Sex" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Bondage" } },
{ "tag" : { "tag_name" : "Vaginal Masturbation" } },
{ "tag" : { "tag_name" : "Licking Vagina" } },
{ "tag" : { "tag_name" : "Hentai" } },
{ "tag" : { "tag_name" : "" } }
],
"title" : "La blue girl fighting butterflies 1",
"url" : "http://www.redtube.com/35397",
"video_id" : "35397",
"views" : "0"
} }
]
}Additional methods
Method getCategoriesList
Retrieves all available categories.
Parameters
- There are no parameters for this method.
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <categories> <category><![CDATA[amateur]]></category> <category><![CDATA[anal]]></category> <category><![CDATA[asian]]></category> <category><![CDATA[bigtits]]></category> <category><![CDATA[blonde]]></category> <category><![CDATA[blowjob]]></category> <category><![CDATA[creampie]]></category> <category><![CDATA[cumshot]]></category> <category><![CDATA[doublepenetration]]></category> <category><![CDATA[ebony]]></category> <category><![CDATA[facials]]></category> <category><![CDATA[fetish]]></category> <category><![CDATA[gangbang]]></category> <category><![CDATA[gay]]></category> <category><![CDATA[group]]></category> <category><![CDATA[hentai]]></category> <category><![CDATA[interracial]]></category> <category><![CDATA[japanese]]></category> <category><![CDATA[latina]]></category> <category><![CDATA[lesbian]]></category> <category><![CDATA[lingerie]]></category> <category><![CDATA[masturbation]]></category> <category><![CDATA[mature]]></category> <category><![CDATA[milf]]></category> <category><![CDATA[pov]]></category> <category><![CDATA[public]]></category> <category><![CDATA[redhead]]></category> <category><![CDATA[shemale]]></category> <category><![CDATA[squirting]]></category> <category><![CDATA[teens]]></category> <category><![CDATA[vintage]]></category> <category><![CDATA[wildcrazy]]></category> </categories>
Sample method request (for JSON output)
Example JSON response
{ "categories" : [ { "category" : "amateur" },
{ "category" : "anal" },
{ "category" : "asian" },
{ "category" : "bigtits" },
{ "category" : "blonde" },
{ "category" : "blowjob" },
{ "category" : "creampie" },
{ "category" : "cumshot" },
{ "category" : "doublepenetration" },
{ "category" : "ebony" },
{ "category" : "facials" },
{ "category" : "fetish" },
{ "category" : "gangbang" },
{ "category" : "gay" },
{ "category" : "group" },
{ "category" : "hentai" },
{ "category" : "interracial" },
{ "category" : "japanese" },
{ "category" : "latina" },
{ "category" : "lesbian" },
{ "category" : "lingerie" },
{ "category" : "masturbation" },
{ "category" : "mature" },
{ "category" : "milf" },
{ "category" : "pov" },
{ "category" : "public" },
{ "category" : "redhead" },
{ "category" : "shemale" },
{ "category" : "squirting" },
{ "category" : "teens" },
{ "category" : "vintage" },
{ "category" : "wildcrazy" }
] }Method getTagList
Retrieves all tags available.
Parameters
- There are no parameters for this method.
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <tags> <tag><![CDATA[Amateur]]></tag> <tag><![CDATA[Anal Masturbation]]></tag> <tag><![CDATA[Anal Sex]]></tag> <tag><![CDATA[Animated]]></tag> <tag><![CDATA[Asian]]></tag> <tag><![CDATA[Bareback]]></tag> <tag><![CDATA[Bathroom]]></tag> <tag><![CDATA[BBW]]></tag> <tag><![CDATA[Behind the Scenes]]></tag> <tag><![CDATA[Big Ass]]></tag> <tag><![CDATA[Big Cock]]></tag> <tag><![CDATA[Big Tits]]></tag> <tag><![CDATA[Bikini]]></tag> <tag><![CDATA[Bisexual]]></tag> <tag><![CDATA[Black-haired]]></tag> <tag><![CDATA[Blonde]]></tag> <tag><![CDATA[Blowjob]]></tag> <tag><![CDATA[Bondage]]></tag> <tag><![CDATA[Boots]]></tag> <tag><![CDATA[Brunette]]></tag> <tag><![CDATA[Bukkake]]></tag> <tag><![CDATA[Car]]></tag> <tag><![CDATA[Cartoon]]></tag> <tag><![CDATA[Caucasian]]></tag> <tag><![CDATA[Celebrity]]></tag> <tag><![CDATA[CFNM]]></tag> <tag><![CDATA[Chubby]]></tag> <tag><![CDATA[Compilation]]></tag> <tag><![CDATA[Couple]]></tag> <tag><![CDATA[Cream Pie]]></tag> <tag><![CDATA[Cum Shot]]></tag> <tag><![CDATA[Cum Swap]]></tag> <tag><![CDATA[Deepthroat]]></tag> <tag><![CDATA[Domination]]></tag> <tag><![CDATA[Double Penetration]]></tag> <tag><![CDATA[Ebony]]></tag> <tag><![CDATA[Facial]]></tag> <tag><![CDATA[Fat]]></tag> <tag><![CDATA[Female-Friendly]]></tag> <tag><![CDATA[Femdom]]></tag> <tag><![CDATA[Fetish]]></tag> <tag><![CDATA[Fisting]]></tag> <tag><![CDATA[Footjob]]></tag> <tag><![CDATA[Funny]]></tag> <tag><![CDATA[Gagging]]></tag> <tag><![CDATA[Gangbang]]></tag> <tag><![CDATA[Gay]]></tag> <tag><![CDATA[Gay Couple]]></tag> <tag><![CDATA[Gay Group Sex]]></tag> <tag><![CDATA[German]]></tag> <tag><![CDATA[Glamour]]></tag> <tag><![CDATA[Glasses]]></tag> <tag><![CDATA[Glory Hole]]></tag> <tag><![CDATA[Granny]]></tag> <tag><![CDATA[Group Sex]]></tag> <tag><![CDATA[Gym]]></tag> <tag><![CDATA[Hairy]]></tag> <tag><![CDATA[Handjob]]></tag> <tag><![CDATA[Hentai]]></tag> <tag><![CDATA[High Heels]]></tag> <tag><![CDATA[Hospital]]></tag> <tag><![CDATA[Indian]]></tag> <tag><![CDATA[Interracial]]></tag> <tag><![CDATA[Japanese]]></tag> <tag><![CDATA[Kissing]]></tag> <tag><![CDATA[Latex]]></tag> <tag><![CDATA[Latin]]></tag> <tag><![CDATA[Lesbian]]></tag> <tag><![CDATA[Licking Vagina]]></tag> <tag><![CDATA[Lingerie]]></tag> <tag><![CDATA[Maid]]></tag> <tag><![CDATA[Massage]]></tag> <tag><![CDATA[Masturbation]]></tag> <tag><![CDATA[Mature]]></tag> <tag><![CDATA[Midget]]></tag> <tag><![CDATA[MILF]]></tag> <tag><![CDATA[Muscular]]></tag> <tag><![CDATA[Nurse]]></tag> <tag><![CDATA[Office]]></tag> <tag><![CDATA[Oral Sex]]></tag> <tag><![CDATA[Oriental]]></tag> <tag><![CDATA[Outdoor]]></tag> <tag><![CDATA[Pantyhose]]></tag> <tag><![CDATA[Party]]></tag> <tag><![CDATA[Peeing]]></tag> <tag><![CDATA[Piercings]]></tag> <tag><![CDATA[Police]]></tag> <tag><![CDATA[Pool]]></tag> <tag><![CDATA[Pornstar]]></tag> <tag><![CDATA[Position 69]]></tag> <tag><![CDATA[POV]]></tag> <tag><![CDATA[Pregnant]]></tag> <tag><![CDATA[Public]]></tag> <tag><![CDATA[Redhead]]></tag> <tag><![CDATA[Rimming]]></tag> <tag><![CDATA[Romantic]]></tag> <tag><![CDATA[Russian]]></tag> <tag><![CDATA[School]]></tag> <tag><![CDATA[Secretary]]></tag> <tag><![CDATA[Shaved]]></tag> <tag><![CDATA[Shemale]]></tag> <tag><![CDATA[Skinny]]></tag> <tag><![CDATA[Small Tits]]></tag> <tag><![CDATA[Solo Gay]]></tag> <tag><![CDATA[Solo Girl]]></tag> <tag><![CDATA[Solo Male]]></tag> <tag><![CDATA[Spanking]]></tag> <tag><![CDATA[Spectacular]]></tag> <tag><![CDATA[Spycam]]></tag> <tag><![CDATA[Squirting]]></tag> <tag><![CDATA[Stockings]]></tag> <tag><![CDATA[Strap-on]]></tag> <tag><![CDATA[Striptease]]></tag> <tag><![CDATA[Swallow]]></tag> <tag><![CDATA[Tattoos]]></tag> <tag><![CDATA[Teen]]></tag> <tag><![CDATA[Threesome]]></tag> <tag><![CDATA[Titfuck]]></tag> <tag><![CDATA[Toilet]]></tag> <tag><![CDATA[Toys]]></tag> <tag><![CDATA[Tribbing]]></tag> <tag><![CDATA[Uniform]]></tag> <tag><![CDATA[Vaginal Masturbation]]></tag> <tag><![CDATA[Vaginal Sex]]></tag> <tag><![CDATA[Vintage]]></tag> <tag><![CDATA[Wanking]]></tag> <tag><![CDATA[Webcam]]></tag> <tag><![CDATA[Young & Old]]></tag> </tags>
Sample method request (for JSON output)
Example JSON response
{ "tags" : [ { "tag" : { "tag_name" : "Amateur" } },
{ "tag" : { "tag_name" : "Anal Masturbation" } },
{ "tag" : { "tag_name" : "Anal Sex" } },
{ "tag" : { "tag_name" : "Animated" } },
{ "tag" : { "tag_name" : "Asian" } },
{ "tag" : { "tag_name" : "Bareback" } },
{ "tag" : { "tag_name" : "Bathroom" } },
{ "tag" : { "tag_name" : "BBW" } },
{ "tag" : { "tag_name" : "Behind the Scenes" } },
{ "tag" : { "tag_name" : "Big Ass" } },
{ "tag" : { "tag_name" : "Big Cock" } },
{ "tag" : { "tag_name" : "Big Tits" } },
{ "tag" : { "tag_name" : "Bikini" } },
{ "tag" : { "tag_name" : "Bisexual" } },
{ "tag" : { "tag_name" : "Black-haired" } },
{ "tag" : { "tag_name" : "Blonde" } },
{ "tag" : { "tag_name" : "Blowjob" } },
{ "tag" : { "tag_name" : "Bondage" } },
{ "tag" : { "tag_name" : "Boots" } },
{ "tag" : { "tag_name" : "Brunette" } },
{ "tag" : { "tag_name" : "Bukkake" } },
{ "tag" : { "tag_name" : "Car" } },
{ "tag" : { "tag_name" : "Cartoon" } },
{ "tag" : { "tag_name" : "Caucasian" } },
{ "tag" : { "tag_name" : "Celebrity" } },
{ "tag" : { "tag_name" : "CFNM" } },
{ "tag" : { "tag_name" : "Chubby" } },
{ "tag" : { "tag_name" : "Compilation" } },
{ "tag" : { "tag_name" : "Couple" } },
{ "tag" : { "tag_name" : "Cream Pie" } },
{ "tag" : { "tag_name" : "Cum Shot" } },
{ "tag" : { "tag_name" : "Cum Swap" } },
{ "tag" : { "tag_name" : "Deepthroat" } },
{ "tag" : { "tag_name" : "Domination" } },
{ "tag" : { "tag_name" : "Double Penetration" } },
{ "tag" : { "tag_name" : "Ebony" } },
{ "tag" : { "tag_name" : "Facial" } },
{ "tag" : { "tag_name" : "Fat" } },
{ "tag" : { "tag_name" : "Female-Friendly" } },
{ "tag" : { "tag_name" : "Femdom" } },
{ "tag" : { "tag_name" : "Fetish" } },
{ "tag" : { "tag_name" : "Fisting" } },
{ "tag" : { "tag_name" : "Footjob" } },
{ "tag" : { "tag_name" : "Funny" } },
{ "tag" : { "tag_name" : "Gagging" } },
{ "tag" : { "tag_name" : "Gangbang" } },
{ "tag" : { "tag_name" : "Gay" } },
{ "tag" : { "tag_name" : "Gay Couple" } },
{ "tag" : { "tag_name" : "Gay Group Sex" } },
{ "tag" : { "tag_name" : "German" } },
{ "tag" : { "tag_name" : "Glamour" } },
{ "tag" : { "tag_name" : "Glasses" } },
{ "tag" : { "tag_name" : "Glory Hole" } },
{ "tag" : { "tag_name" : "Granny" } },
{ "tag" : { "tag_name" : "Group Sex" } },
{ "tag" : { "tag_name" : "Gym" } },
{ "tag" : { "tag_name" : "Hairy" } },
{ "tag" : { "tag_name" : "Handjob" } },
{ "tag" : { "tag_name" : "Hentai" } },
{ "tag" : { "tag_name" : "High Heels" } },
{ "tag" : { "tag_name" : "Hospital" } },
{ "tag" : { "tag_name" : "Indian" } },
{ "tag" : { "tag_name" : "Interracial" } },
{ "tag" : { "tag_name" : "Japanese" } },
{ "tag" : { "tag_name" : "Kissing" } },
{ "tag" : { "tag_name" : "Latex" } },
{ "tag" : { "tag_name" : "Latin" } },
{ "tag" : { "tag_name" : "Lesbian" } },
{ "tag" : { "tag_name" : "Licking Vagina" } },
{ "tag" : { "tag_name" : "Lingerie" } },
{ "tag" : { "tag_name" : "Maid" } },
{ "tag" : { "tag_name" : "Massage" } },
{ "tag" : { "tag_name" : "Masturbation" } },
{ "tag" : { "tag_name" : "Mature" } },
{ "tag" : { "tag_name" : "Midget" } },
{ "tag" : { "tag_name" : "MILF" } },
{ "tag" : { "tag_name" : "Muscular" } },
{ "tag" : { "tag_name" : "Nurse" } },
{ "tag" : { "tag_name" : "Office" } },
{ "tag" : { "tag_name" : "Oral Sex" } },
{ "tag" : { "tag_name" : "Oriental" } },
{ "tag" : { "tag_name" : "Outdoor" } },
{ "tag" : { "tag_name" : "Pantyhose" } },
{ "tag" : { "tag_name" : "Party" } },
{ "tag" : { "tag_name" : "Peeing" } },
{ "tag" : { "tag_name" : "Piercings" } },
{ "tag" : { "tag_name" : "Police" } },
{ "tag" : { "tag_name" : "Pool" } },
{ "tag" : { "tag_name" : "Pornstar" } },
{ "tag" : { "tag_name" : "Position 69" } },
{ "tag" : { "tag_name" : "POV" } },
{ "tag" : { "tag_name" : "Pregnant" } },
{ "tag" : { "tag_name" : "Public" } },
{ "tag" : { "tag_name" : "Redhead" } },
{ "tag" : { "tag_name" : "Rimming" } },
{ "tag" : { "tag_name" : "Romantic" } },
{ "tag" : { "tag_name" : "Russian" } },
{ "tag" : { "tag_name" : "School" } },
{ "tag" : { "tag_name" : "Secretary" } },
{ "tag" : { "tag_name" : "Shaved" } },
{ "tag" : { "tag_name" : "Shemale" } },
{ "tag" : { "tag_name" : "Skinny" } },
{ "tag" : { "tag_name" : "Small Tits" } },
{ "tag" : { "tag_name" : "Solo Gay" } },
{ "tag" : { "tag_name" : "Solo Girl" } },
{ "tag" : { "tag_name" : "Solo Male" } },
{ "tag" : { "tag_name" : "Spanking" } },
{ "tag" : { "tag_name" : "Spectacular" } },
{ "tag" : { "tag_name" : "Spycam" } },
{ "tag" : { "tag_name" : "Squirting" } },
{ "tag" : { "tag_name" : "Stockings" } },
{ "tag" : { "tag_name" : "Strap-on" } },
{ "tag" : { "tag_name" : "Striptease" } },
{ "tag" : { "tag_name" : "Swallow" } },
{ "tag" : { "tag_name" : "Tattoos" } },
{ "tag" : { "tag_name" : "Teen" } },
{ "tag" : { "tag_name" : "Threesome" } },
{ "tag" : { "tag_name" : "Titfuck" } },
{ "tag" : { "tag_name" : "Toilet" } },
{ "tag" : { "tag_name" : "Toys" } },
{ "tag" : { "tag_name" : "Tribbing" } },
{ "tag" : { "tag_name" : "Uniform" } },
{ "tag" : { "tag_name" : "Vaginal Masturbation" } },
{ "tag" : { "tag_name" : "Vaginal Sex" } },
{ "tag" : { "tag_name" : "Vintage" } },
{ "tag" : { "tag_name" : "Wanking" } },
{ "tag" : { "tag_name" : "Webcam" } },
{ "tag" : { "tag_name" : "Young & Old" } }
] }Method getStarList
Retrieves all pornstars available.
Parameters
- There are no parameters for this method.
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <stars> <star><![CDATA[Aaliyah Jolie]]></star> <star><![CDATA[Aaralyn Barra]]></star> <star><![CDATA[Aarielle Alexis]]></star> <star><![CDATA[Abbey Brooks]]></star> <star><![CDATA[Abbie Cat]]></star> <star><![CDATA[Abby Lane]]></star> <star><![CDATA[Abby Rode]]></star> <star><![CDATA[Abella Anderson]]></star> </stars>
Sample method request (for JSON output)
Example JSON response
{ "stars" : [ { "star" : { "star_name" : "Aaliyah Jolie" } },
{ "star" : { "star_name" : "Aaralyn Barra" } },
{ "star" : { "star_name" : "Aarielle Alexis" } },
{ "star" : { "star_name" : "Abbey Brooks" } },
{ "star" : { "star_name" : "Abbie Cat" } },
{ "star" : { "star_name" : "Abby Lane" } },
{ "star" : { "star_name" : "Abby Rode" } },
{ "star" : { "star_name" : "Abella Anderson" } }
] }Method getStarDetailedList
Retrieves all pornstars available with details (page url and star's thumb).
Parameters
- There are no parameters for this method.
Sample method request (for XML output)
Example XML response
<?xml version="1.0" encoding="UTF-8"?> <stars> <star url="http://www.redtube.com/pornstar/aaliyah+jolie" thumb="http://img03.redtubefiles.com/_thumbs/stars/00000593.jpg"><![CDATA[Aaliyah Jolie]]></star> <star url="http://www.redtube.com/pornstar/aaliyah+love" thumb="http://img03.redtubefiles.com/_thumbs/stars/no_image_f.jpg"><![CDATA[Aaliyah Love]]></star> <star url="http://www.redtube.com/pornstar/aaralyn+barra" thumb="http://img03.redtubefiles.com/_thumbs/stars/00000594.jpg"><![CDATA[Aaralyn Barra]]></star> <star url="http://www.redtube.com/pornstar/aarielle+alexis" thumb="http://img03.redtubefiles.com/_thumbs/stars/00002047.jpg"><![CDATA[Aarielle Alexis]]></star> <star url="http://www.redtube.com/pornstar/aaron+wilcox" thumb="http://img03.redtubefiles.com/_thumbs/stars/no_image_m.jpg"><![CDATA[Aaron Wilcox]]></star> <star url="http://www.redtube.com/pornstar/abbey" thumb="http://img03.redtubefiles.com/_thumbs/stars/00003279.jpg"><![CDATA[Abbey]]></star> <star url="http://www.redtube.com/pornstar/abbey+brooks" thumb="http://img03.redtubefiles.com/_thumbs/stars/00000595.jpg"><![CDATA[Abbey Brooks]]></star> <star url="http://www.redtube.com/pornstar/abbie" thumb="http://img03.redtubefiles.com/_thumbs/stars/00002885.jpg"><![CDATA[Abbie]]></star> <star url="http://www.redtube.com/pornstar/abbie+cat" thumb="http://img03.redtubefiles.com/_thumbs/stars/00000904.jpg"><![CDATA[Abbie Cat]]></star> <star url="http://www.redtube.com/pornstar/abby+cross" thumb="http://img03.redtubefiles.com/_thumbs/stars/00003739.jpg"><![CDATA[Abby Cross]]></star> <star url="http://www.redtube.com/pornstar/abby+lane" thumb="http://img03.redtubefiles.com/_thumbs/stars/00000399.jpg"><![CDATA[Abby Lane]]></star> <star url="http://www.redtube.com/pornstar/abby+rode" thumb="http://img03.redtubefiles.com/_thumbs/stars/00001460.jpg"><![CDATA[Abby Rode]]></star> <star url="http://www.redtube.com/pornstar/abella+anderson" thumb="http://img03.redtubefiles.com/_thumbs/stars/00001234.jpg"><![CDATA[Abella Anderson]]></star> <star url="http://www.redtube.com/pornstar/abigaile+johnson" thumb="http://img03.redtubefiles.com/_thumbs/stars/00002677.jpg"><![CDATA[Abigaile Johnson]]></star> </stars>
Sample method request (for JSON output)
Example JSON response
{ "stars" : [ { "star" : { "star_name" : "Aaliyah Jolie",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00000593.jpg",
"star_url" : "http://www.redtube.com/pornstar/aaliyah+jolie"
} },
{ "star" : { "star_name" : "Aaliyah Love",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/no_image_f.jpg",
"star_url" : "http://www.redtube.com/pornstar/aaliyah+love"
} },
{ "star" : { "star_name" : "Aaralyn Barra",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00000594.jpg",
"star_url" : "http://www.redtube.com/pornstar/aaralyn+barra"
} },
{ "star" : { "star_name" : "Aarielle Alexis",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00002047.jpg",
"star_url" : "http://www.redtube.com/pornstar/aarielle+alexis"
} },
{ "star" : { "star_name" : "Aaron Wilcox",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/no_image_m.jpg",
"star_url" : "http://www.redtube.com/pornstar/aaron+wilcox"
} },
{ "star" : { "star_name" : "Abbey",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00003279.jpg",
"star_url" : "http://www.redtube.com/pornstar/abbey"
} },
{ "star" : { "star_name" : "Abbey Brooks",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00000595.jpg",
"star_url" : "http://www.redtube.com/pornstar/abbey+brooks"
} },
{ "star" : { "star_name" : "Abbie",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00002885.jpg",
"star_url" : "http://www.redtube.com/pornstar/abbie"
} },
{ "star" : { "star_name" : "Abbie Cat",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00000904.jpg",
"star_url" : "http://www.redtube.com/pornstar/abbie+cat"
} },
{ "star" : { "star_name" : "Abby Cross",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00003739.jpg",
"star_url" : "http://www.redtube.com/pornstar/abby+cross"
} },
{ "star" : { "star_name" : "Abby Lane",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00000399.jpg",
"star_url" : "http://www.redtube.com/pornstar/abby+lane"
} },
{ "star" : { "star_name" : "Abby Rode",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00001460.jpg",
"star_url" : "http://www.redtube.com/pornstar/abby+rode"
} },
{ "star" : { "star_name" : "Abella Anderson",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00001234.jpg",
"star_url" : "http://www.redtube.com/pornstar/abella+anderson"
} },
{ "star" : { "star_name" : "Abigaile Johnson",
"star_thumb" : "http://img03.redtubefiles.com/_thumbs/stars/00002677.jpg",
"star_url" : "http://www.redtube.com/pornstar/abigaile+johnson"
} }
] }Error messages
-
Global error messages
- 1001:No such method.
- 1002:No such data provider.
- 1003:No input parameters specified.
- Video methods error messages
- 2001:No videos found.
- 2002:No video with this ID.
-
Additional methods error messages
- 3001:No categories found.
- 3002:No tags found.
- 3003:No stars found.