This API operation returns the movie used in AdultWork.com.
GET
/v1/movie/getMovieDetails
Property | Type | Description |
---|---|---|
MovieID |
string | Required Returns the movie with this id. |
VATIPAddress |
string | If supplied it will check the country of that IP address and add the local VAT to the price. For example: IP addresses from the UK will add 20 % to the price. |
VATUserID |
integer | If supplied it will overrule VATIPAddress . It will get the users vat details and add the vat to the price. |
Parameters can be passed to this operation using the HTTP GET method by passing parameters over the query string of the URI.
The REST API uses HTTP request headers to determine what data type is returned or to authenticate the developer's API key. More information can be found in the overview section.
This endpoint has the following optional headers:
Headers | Value | |
---|---|---|
X-MaskImages |
1 |
What's this? |
Your API-Key is required with every request and can be passed in as a header or a query-string parameter. Don't have an API-Key? Get one now.
https://api-sandbox.adultwork.com/v1/movies/getMovieDetails
?apiKey={your-api-key}&movieID=123456789
Property | Type | Description |
---|---|---|
Movie |
aws:Movie | The movie data. |
The following example returns an example result of the movie listed on AdultWork.com.
{
"MovieID": "123456789",
"Title": "Boat Fun",
"Details": "A lot of fun on the boat",
"ThumbSafe": false,
"ThumbURL": "https://cdn1.adultwork.com/clips/thumbnails/1.jpg",
"ImageSafe": false,
"ImageURL": "https://cdn1.adultwork.com/clips/1.jpg",
"Credits": 1.20,
"Seconds": 180,
"Size": 480586466,
"Format": "video/quicktime",
"Categories": [
{
"CategoryID": 1,
"CategoryName": "A Levels"
},
{
"CategoryID": 2,
"CategoryName": "Audio"
},
{
"CategoryID": 3,
"CategoryName": "BDSM"
}
],
"DateUploaded": "2015-07-30T15:40:16.117",
"GendersInClip": {
"GenderID": 3,
"GenderName": "MF | Male & Female"
},
"User": {
"MovieCount": 7,
"MovieCount": 3,
"GenderID": 2,
"UserID": 123456,
"Nickname": "JosepheneBlogs",
"IsEscort":true,
"IsWebcam":false,
"IsPhoneChat":false,
"IsSMSChat":false,
"IsAlternative":false,
"AvailableTodayEscort": true,
"AvailableNowWebcam": false,
"AvailableNowPhoneChat": false,
"Age": 21,
"Ratings":{
"Total":33,
"Positive":34,
"Neutral":0,
"Negative":1,
"Ratings":35,
"Disputes":0
}
}
}
<MovieResult>
<Categories>
<MovieCategories>
<CategoryID>1</CategoryID>
<CategoryName>A Levels</CategoryName>
</MovieCategories>
<MovieCategories>
<CategoryID>2</CategoryID>
<CategoryName>Audio</CategoryName>
</MovieCategories>
<MovieCategories>
<CategoryID>3</CategoryID>
<CategoryName>BDSM</CategoryName>
</MovieCategories>
</Categories>
<Credits>1.2000</Credits>
<DateUploaded>2015-07-30T15:40:16.117</DateUploaded>
<Details>A lot of fun on the boat</Details>
<Format>video/quicktime</Format>
<GendersInClip xmlns:d4p1="http://schemas.datacontract.org/2004/07/API.Models.Gender">
<d4p1:GenderID>3</d4p1:GenderID>
<d4p1:GenderName>MF | Male & Female</d4p1:GenderName>
</GendersInClip>
<ImageSafe>false</ImageSafe>
<ImageURL>https://cdn1.adultwork.com/clips/1.jpg</ImageURL>
<MovieID>123456789</MovieID>
<Seconds>180</Seconds>
<Size>480586466</Size>
<ThumbSafe>false</ThumbSafe>
<ThumbURL>https://cdn1.adultwork.com/clips/thumbnails/1.jpg</ThumbURL>
<Title>Boat Fun</Title>
<User>
<Age xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">21</Age>
<AvailableNowPhoneChat xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">false</AvailableNowPhoneChat>
<AvailableNowWebcam xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">false</AvailableNowWebcam>
<AvailableTodayEscort xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">true</AvailableTodayEscort>
<IsEscort xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">true</IsEscort>
<IsPhoneChat xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">false</IsPhoneChat>
<IsSMSChat xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">true</IsSMSChat>
<IsWebcam xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">false</IsWebcam>
<Nickname xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">JosepheneBlogs</Nickname>
<Ratings xmlns:d5p1="http://schemas.datacontract.org/2004/07/API.Models.Profile" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">
<d5p1:Disputes>0</d5p1:Disputes>
<d5p1:Negative>1</d5p1:Negative>
<d5p1:Neutral>0</d5p1:Neutral>
<d5p1:Positive>34</d5p1:Positive>
<d5p1:Ratings>35</d5p1:Ratings>
<d5p1:Total>33</d5p1:Total>
</Ratings>
<UserID xmlns="http://schemas.datacontract.org/2004/07/API.Models.Pictures">123456</UserID>
<GenderID>2</GenderID>
<MovieCount>7</MovieCount>
<MobileMovieCount>7</MobileMovieCount>
</User>
</MovieResult>