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

Get Free Gallery

Use this method to get the free gallery of an AdultWork.com member.

Your project needs to be approved to be able to use this endpoint. Submitting your project is easy. Open your Project and click Start Submission.

URL / Endpoint

Need help with Postman?

GET /v1/pictures/getFreeGallery

Request

PropertyTypeDescription
UserID integer Required. The User ID of the AdultWork.com member you wish the API to return the gallery of.
PageSize integer Sets the number of pictures on each page of the result set. Accepts values from 1 to 100. Default it 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. Don't have an API-Key? Get one now.

Samples

GET method

GET https://api.adultwork.com/v1/pictures/getFreeGallery?UserID=123456

Host: https://api.adultwork.com

Response

PropertyTypeDescription
PageNumber integer Represents the current page number.
PageCount integer Represents the total number of pages in the result set.
PageSize integer Represents how many pictures are listed on each page.
PicturesTotal integer Represents the total number of pictures in the result set.
User aws:FreeGalleryUser The user.
Pictures Array of aws:FreePicture List of free pictures data.

Response Sample

The following example shows the picture of one user.

{
"PageNumber": 1,
"PageCount": 1,
"PageSize": 1,
"PicturesTotal": 1,
"User": {
"PrivateGallerySize": 1,
"UserID": 123456,
"Nickname": "
JosepheneBlogs",
"IsEscort": true,
"IsWebcam": false,
"IsPhoneChat": false,
"IsSMSChat": false,
"AvailableTodayEscort": false,
"AvailableNowWebcam": false,
"AvailableNowPhoneChat": false,
"Age": 21,
"Ratings": {
"Total": 1001,
"Positive": 1001,
"Neutral": 0,
"Negative": 0,
"Ratings": 0,
"Disputes": 0
}
},
"Pictures": [
{
"PictureID": 1,
"Description": "",
"ThumbSafe": false,
"ThumbUrl": "https://cdn1.adultwork.com/gallery/G3/thumbnails/1.jpg",
"PreviewSafe": false,
"PreviewUrl": "https://cdn1.adultwork.com/gallery/G3/images/1.jpg",
"FullSafe": false,
"FullUrl": "https://cdn1.adultwork.com/gallery/G3/1.jpg",
"DateAdded": "2010-01-12T13:13:46.873"
}
]
}
    <PageCount>1</PageCount>
<PageNumber>1</PageNumber>
<PageSize>1</PageSize>
<Pictures>
<FreeGalleryResult>
<PictureID>1
</PictureID> <DateAdded>2010-01-12T13:13:46.873</DateAdded>
<Description></Description>
<FullSafe>false</FullSafe>
<FullUrl>https://cdn1.adultwork.com/gallery/G3/1.jpg</FullUrl>
<PreviewSafe>false</PreviewSafe>
<PreviewUrl>https://cdn1.adultwork.com/gallery/G3/images/1.jpg</PreviewUrl>
<ThumbSafe</ThumbSafe>
<ThumbUrl>https://cdn1.adultwork.com/gallery/G3/thumbnails/1.jpg</ThumbUrl>
</FreeGalleryResult>
</Pictures>
<PicturesTotal>1</PicturesTotal>
<User i:type="FreeGalleryUser">
<Age>21</Age>
<AvailableNowPhoneChat>false</AvailableNowPhoneChat>
<AvailableNowWebcam>false</AvailableNowWebcam>
<AvailableTodayEscort>false</AvailableTodayEscort>
<IsEscort>true</IsEscort>
<IsPhoneChat>false</IsPhoneChat>
<IsSMSChat>false</IsSMSChat>
<IsWebcam>false</IsWebcam>
<Nickname>
JosepheneBlogs</Nickname>
<Ratings xmlns:d3p1="http://schemas.datacontract.org/2004/07/API.Models.Profile">
<d3p1:Disputes>0</d3p1:Disputes>
<d3p1:Negative>0</d3p1:Negative>
<d3p1:Neutral>0</d3p1:Neutral>
<d3p1:Positive>1001</d3p1:Positive>
<d3p1:Ratings>0</d3p1:Ratings>
<d3p1:Total>1001</d3p1:Total>
</Ratings>
<UserID>123456</UserID>
<PrivateGallerySize>1</PrivateGallerySize>
</User>