API Methods
Account ...
Blogs ...
Bookings ...
CreditHistory ...
Dashboard ...
DirectCam ...
DirectChat ...
Email ...
FieldReport ...
Groups ...
HotLists ...
Interview ...
Lists ...
Movie ...
Newsfeed ...
PhoneChat ...
Pictures ...
Profile ...
Search ...
Tours ...
Webcam ...

Movie Collections

This API operation returns the movies collctions used in AdultWork.com.

URL / Endpoint

Need help with Postman?

GET /v1/search/searchMovieCollections

Request

PropertyTypeDescription
UserID integer Returns all collections of the profile with the specified UserID.
MinimumAmountOfMovies integer The minimum amount of movies in the collection.
MaximumAmountOfMovies integer The maximum amount of movies in the collection.
OrderBy string Sets the order in which the collections will be returned. Default is numberofmovies. Order options are title and nickname.
CollectionsPerPage integer Sets the number of collections on each page of the result set. Accepts values from 1 to 100. Default is 50.
PageNumber integer Returns a specific page in the result set. Accepts values from 1 onwards.

Request Information

HTTP Method / Verb

Parameters can be passed to this operation using the HTTP GET method by passing parameters over the query string of the URI.

Headers

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:

HeadersValue
X-MaskImages 1 What's this?

Authentication

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.

Samples

GET method

https://api-sandbox.adultwork.com/v1/search/searchMovieCollections
  ?apiKey={your-api-key}

Response

PropertyTypeDescription
PageCount integer Represents the total number of pages in the result set.
PageNumber integer Represents the current page number.
CollectionsTotal integer Represents the total number of collections in the result set.
CollectionsPerPage integer Represents how many collections are listed on each page.
Collections Array of aws:MovieCollection List of MovieCollection data.

Response Sample

The following example returns an example result of the movies listed on AdultWork.com.

{
"PageCount": 1,
"PageNumber": 1,
"CollectionsTotal": 1,
"CollectionsPerPage": 1,
"Collections": [
{
"CollectionID": 1,
"Title": "Cool collection",
"Description": "Check out my collection of movies",
"MoviesTotal": 7,
"ThumbSafe": false,
"ThumbURL": "https://cdn1.adultwork.com/clips/thumbnails/217.jpg",
"ImageSafe": false,
"ImageURL": "https://cdn1.adultwork.com/clips/217.jpg",
"User": {
"GenderID": 2,
"UserID": 123456,
"Nickname": "JosepheneBlogs",
"IsEscort": true,
"IsWebcam": false,
"IsPhoneChat": false,
"IsSMSChat": false,
"AvailableTodayEscort": true,
"AvailableNowWebcam": false,
"AvailableNowPhoneChat": false,
"Age": 21,
"Ratings":{
"Total":33,
"Positive":34,
"Neutral":0,
"Negative":1,
"Ratings":35,
"Disputes":0
}
}
}
]
}
<MovieCollectionResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Movies">
<Collections>
<MovieCollection>
<CollectionID>1</CollectionID>
<Description>Check out my collection of movies</Description>
<ImageSafe>false</ImageSafe>
<ImageURL>https://cdn1.adultwork.com/clips/217.jpg</ImageURL>
<MoviesTotal>7</MoviesTotal>
<ThumbSafe>false</ThumbSafe>
<ThumbURL>https://cdn1.adultwork.com/clips/thumbnails/217.jpg</ThumbURL>
<Title>Cool collection</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">false</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>
</User>
</MovieCollection>
<CollectionsPerPage>1</CollectionsPerPage>
<CollectionsTotal>1</CollectionsTotal>
<PageCount>1</PageCount>
<PageNumber>1</PageNumber>
</MovieCollectionResult>