Calling the SMLive Available Performer API
The URL for the SMLive API is http://affiliate.streamate.com/SMLive/SMLResult.xml. Use HTTP POST to send an XML request to this URL. Make sure that the HTTP POST specifies a "Content-type: text/xml" header.
You will receive a response structured as XML document. The format of both the XML request and XML response are defined in later sections of this document.
Please be aware that SMLive cannot be directly invoked from the client side due to CORS (Cross-Origin Resource Sharing) restrictions. Affiliates are advised to integrate SMLive within their backend services and utilize a proxy server to facilitate communication. This approach ensures compliance with SMLive's usage guidelines and prevents CORS-related errors during implementation.
XML results are sorted based on Streamate Ranking and Performance.
Example, Calling the SMLive API via PHP
<?php $xmlHeader = '';
$xmlRequest = $xmlHeader . "<SMLQuery><!-- XML Query Content--></SMLQuery>";
$ch = curl_init( );
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_HTTPHEADER, array( 'Content-Type: text/xml' ) );
curl_setopt( $ch, CURLOPT_POST, 1 ); curl_setopt( $ch, CURLOPT_POSTFIELDS, $xmlRequest );
$xmlResponse = curl_exec( $ch );
echo $xmlResponse . "\n";
?> |
Direct questions or concerns to Cambuilder Support.
XML Request Structure
Example, Real-World Generic
<?xml version="1.0" encoding="UTF-8"?>
<SMLQuery> <Options MaxResults="50" />
<AvailablePerformers QueryId="MyGenericQuery">
<Include> <Descriptions />
<Media>staticbiopic</Media> </Include> <Constraints> <PublicProfile />
<StreamType>live</StreamType> </Constraints> </AvailablePerformers></SMLQuery> |
Example, Real-World “Teen” Niche
<?xml version="1.0" encoding="UTF-8"?>
<SMLQuery> <Options MaxResults="50" />
<AvailablePerformers Exact="true" QueryId="MyQueryForTeens">
<Include> <Descriptions />
<Media>staticbiopic</Media> </Include> <Constraints> <PublicProfile />
<StreamType>live</StreamType> <Age Min="18" Max="21" />
<Weight Min="70" Max="120" />
<Gender>f,ff</Gender> </Constraints> </AvailablePerformers></SMLQuery> |
Example, all performers ordered by name
<?xml version="1.0" encoding="UTF-8"?>
<SMLQuery> <Options MaxResults="50" />
<AvailablePerformers QueryId="MyQueryforall">
<Include> <Descriptions />
<Media>staticbiopic</Media> <StaticSort />
</Include> <Constraints> <PublicProfile />
<StreamType>live,recorded,offline</StreamType> </Constraints> </AvailablePerformers></SMLQuery> |
Example, With All Request Tags
<?xml version="1.0" encoding="UTF-8"?>
<SMLQuery> <Options MaxResults="50" />
<AvailablePerformers Exact="false" PageNum="1" CountTotalResults="true" QueryId="MyQueryWithAllOptions">
<Include> <Rating />
<Descriptions />
<Media>staticbiopic,biopic,photogallery</Media> <PerformanceRandom />
<HDSort />
</Include> <Constraints> <StreamType>live,offline</StreamType> <SimilarPerformers>161661</SimilarPerformers> <NewPerformers />
<PublicProfile />
<RandomOrder />
<RelativeURLs />
<Keyword>smile</Keyword> <Name>Jolie</Name> <Height Min="60" Max="72" />
<Weight Min="90" Max="118" />
<Chest Min="28" Max="36" />
<Bust Min="29" Max="36" />
<Waist Min="20" Max="26" />
<Hips Min="32" Max="39" />
<Age Min="18" Max="31" />
<HairColor>blond</HairColor> <EyeColor>blue</EyeColor> <Build>average</Build> <Theme>housewives</Theme> <Fetishes>feet,submissive,underwear</Fetishes> <Zodiac>virgo</Zodiac> <Ethnicity>caucasian</Ethnicity> <SexPref>bi</SexPref> <BodyMods>tattoos,piercings</BodyMods> <BodyHair>shavedtrimmed</BodyHair> <Circumcised>uncut</Circumcised> <CupSize>b</CupSize> <CockSize>big</CockSize> <FacialHair>beard</FacialHair> <Language>en,es</Language> <PubicHair>bald</PubicHair> <Gender>f,ff,m,mm,mf</Gender> <Audio />
<Phone />
</Constraints> </AvailablePerformers></SMLQuery> |
Tag and Attribute Definitions
<SMLQuery>
Children: <Options>, <AvailablePerformers>
Attributes: n/a
<Options>
Parent: /SMLQuery
Children: n/a
Attributes:
| MaxResults | The maximum number of results you would like returned, up to 500. The default value is 12. | Unsigned Int (8) | 12 | No |
|---|---|---|---|---|
<AvailablePerformers>
Parent: /SMLQuery
Children: <Include>, <Constraints>
Attributes:
| Exact | If true, all performers returned will fit all constraints listed below. The default value is false. | Boolean | false | No |
|---|---|---|---|---|
| PageNum | Used to select the page number of your result set. The default value is 1. | Unsigned Int (8) | 1 | No |
| CountTotalResults | If true, the response will include an attribute stating the total number of performers in the result set regardless of how many are actually returned in the response. The default value is false. | Boolean | false | No |
| QueryId | An arbitrary value you can use to help distinguish the results of one query from another, if posting multiple queries in the same HTTP request. | Char (32) | Hello This Is My Query | No |
<Include>
Parent: /SMLQuery/AvailablePerformers
Children: <Rating>, <Descriptions>, <Media>, <StaticSort>, <PerformanceRandom>, <HDSort>
Attributes: n/a
<Rating>
Parent: /SMLQuery/AvailablePerformers/Include
Children: n/a
Attributes: n/a
Value:
<Rating> |
If set will return performers user based rating. | -- | -- | No |
|---|---|---|---|---|
<Descriptions>
Parent: /SMLQuery/AvailablePerformers/Include
Children: n/a
Attributes: n/a
Value:
<Descriptions> |
If set will return about, expertise and turn-ons. | -- | -- | No |
|---|---|---|---|---|
<Media>
Parent: /SMLQuery/AvailablePerformers/Include
Children: n/a
Attributes: n/a
Value:
<Media> |
Designate the type of media information to include in the results, for each performer. See Appendix A for a complete list of options. | Comma-delimited list of media types. | Biopic, photogallery | No |
|---|---|---|---|---|
<StaticSort>
Parent: /SMLQuery/AvailablePerformers/Include
Children: n/a
Attributes: n/a
Value:
<StaticSort> |
The field by which the sort will be done; “name” and “id” are the only supported options. By default, the static sort is done by “name” in ascending order. | char(32) | name | No |
|---|---|---|---|---|
<PerformanceRandom>
Parent: /SMLQuery/AvailablePerformers/Include
Children: n/a
Attributes: n/a
Value:
<PerformanceRandom> |
Allows results to be randomized. | 1- 99 | 50 | No |
|---|---|---|---|---|
<HDSort>
Parent: /SMLQuery/AvailablePerformers/Include
Children: n/a
Attributes: n/a
Value:
<HDSort> |
List the results by HD. See Appendix A for a complete list of options. | Unsigned Int (2) | 1 | No |
|---|---|---|---|---|
<Constraints>
Parent: /SMLQuery/AvailablePerformers
Children: <StreamType>, <SimilarPerformers>, <GallerySize>, <NewPerformers>, <PublicProfile>, <RandomOrder>, <RelativeURLs>, <Keyword>, <Name>, <Height>, <Weight>, <Chest>, <Bust>, <Waist>, <Hips>, <Age>, <HairColor>, <EyeColor>, <Build>, <Theme>, <Fetishes>, <Zodiac>, <Ethnicity>, <SexPref>, <BodyMods>, <BodyHair>, <Circumcised>, <CupSize>, <CockSize>, <FacialHair>, <Language>, <PubicHair>, <Gender>, <Audio>, <Phone>
Attributes: n/a
<StreamType>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<StreamType> |
List of possible streaming statuses the performer must be in to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of streaming statuses. | live, offline | No |
|---|---|---|---|---|
<SimilarPerformers>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<SimilarPerformers> |
A performer's Id value that identifies the performer to which others should be matched against when compiling the results. This match is based on <Gender>, <HairColor>, and <Build>. Note the performer specified here will not be included in the results. | Unsigned Int (32) | 161661 | No |
|---|---|---|---|---|
<GallerySize>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<GallerySize> |
<GallerySize> has been deprecated and should not be used. | -- | -- | No |
|---|---|---|---|---|
<NewPerformers>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<NewPerformers> |
A performer created in the last 30 days. | -- | -- | No |
|---|---|---|---|---|
<PublicProfile>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<PublicProfile> |
Whether the performer can be viewed by non-members | -- | -- | No |
|---|---|---|---|---|
<RandomOrder>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<RandomOrder> |
Randomizes performer search results a bit for a more dynamic feel. Sorting is still maintained. | -- | -- | No |
|---|---|---|---|---|
<RelativeURLs>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<RelativeURLs> |
All URLs are relative. | -- | -- | No |
|---|---|---|---|---|
<Keyword>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Keyword> |
Perform a search with the specified value, on the performer's nickname and text description fields. | Char (32) | smile | No |
|---|---|---|---|---|
<Name>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Name> |
Perform a search with the specified value on the performer's nickname only. | Char (32) | Jolie | No |
|---|---|---|---|---|
<Height>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum height of the performer, in inches. | Unsigned Int (8) | 60 | No |
|---|---|---|---|---|
| Max | The maximum height of the performer, in inches. | Unsigned Int (8) | 72 | No |
<Weight>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum weight of the performer, in pounds. | Unsigned Int (16) | 90 | No |
|---|---|---|---|---|
| Max | The maximum weight of the performer, in pounds. | Unsigned Int (16) | 118 | No |
<Chest>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum chest size of the performer, in inches. Applies to male performers. | Unsigned Int (8) | 28 | No |
|---|---|---|---|---|
| Max | The maximum chest size of the performer, in inches. Applies to male performers. | Unsigned Int (8) | 36 | No |
<Bust>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum chest size of the performer, in inches. Applies to female performers. | Unsigned Int (8) | 29 | No |
|---|---|---|---|---|
| Max | The maximum chest size of the performer, in inches. Applies to female performers. | Unsigned Int (8) | 36 | No |
<Waist>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum waist measurement of the performer, in inches. | Unsigned Int (8) | 20 | No |
|---|---|---|---|---|
| Max | The maximum waist measurement of the performer, in inches. | Unsigned Int (8) | 26 | No |
<Hips>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum hip measurement of the performer, in inches. Applies to female performers. | Unsigned Int (8) | 32 | No |
|---|---|---|---|---|
| Max | The maximum hip measurement of the performer, in inches. Applies to female performers. | Unsigned Int (8) | 39 | No |
<Age>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Min | The minimum age of the performer, in years. | Unsigned Int (8) | 18 | No |
|---|---|---|---|---|
| Max | The maximum age of the performer, in years. | Unsigned Int (8) | 31 | No |
<HairColor>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<HairColor> |
List of possible hair colors the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of hair colors. | blond | No |
|---|---|---|---|---|
<EyeColor>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<EyeColor> |
List of possible eye colors the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of eye colors. | blue, brown | No |
|---|---|---|---|---|
<Build>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Build> |
List of possible body types the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of body types. | average | No |
|---|---|---|---|---|
<Theme>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Theme> |
List of themes to include in the result. See Appendix A for a complete list of options. | Comma-delimited list of themes. | housewives | No |
|---|---|---|---|---|
<Fetishes>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Fetishes> |
List of possible fetishes the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of fetishes. | feet, submissive | No |
|---|---|---|---|---|
<Zodiac>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Zodiac> |
List of possible zodiac signs the performer must fall under to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of zodiac signs. | virgo | No |
|---|---|---|---|---|
<Ethnicity>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Ethnicity> |
List of possible ethnicities the performer must be to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of ethnicities. | caucasian | No |
|---|---|---|---|---|
<SexPref>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<SexPref> |
List of possible sexual preferences the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of sexual preferences. | bi | No |
|---|---|---|---|---|
<BodyMods>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<BodyMods> |
List of possible body modifications the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of body modifications. | tattoos, piercings | No |
|---|---|---|---|---|
<BodyHair>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<BodyHair> |
List of possible hair coverage the performer must have to be included in the results. Applies to male performers. See Appendix A for a complete list of options. | Comma-delimited list of body hair coverage. | shavedtrimmed | No |
|---|---|---|---|---|
<Circumcised>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Circumcised> |
Limit the results to circumcised or uncircumcised men. Applies to male performers. See Appendix A for a complete list of options. | Comma-delimited list of circumcision options. | uncut | No |
|---|---|---|---|---|
<CupSize>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<CupSize> |
List of possible cup sizes the performer must have to be included in the results. Applies to female performers. See Appendix A for a complete list of options. | Comma-delimited list of cup sizes | b | No |
|---|---|---|---|---|
<CockSize>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<CockSize> |
List of possible penis sizes the performer must have to be included in the results. Applies to male performers. See Appendix A for a complete list of options. | Comma-delimited list of penis sizes. | big | No |
|---|---|---|---|---|
<FacialHair>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<FacialHair> |
List of facial hair coverage the performer must have to be included in the results. Applies to male performers. See Appendix A for a complete list of options. | Comma-delimited list of facial hair coverage. | beard | No |
|---|---|---|---|---|
<Language>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Language> |
List of possible languages the performer must speak to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of spoken languages. | en,es | No |
|---|---|---|---|---|
<PubicHair>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<PubicHair> |
List of pubic hair coverage the performer must have to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of pubic hair coverage. | bald | No |
|---|---|---|---|---|
<Gender>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes: n/a
Value:
<Gender> |
List of possible genders the performer must be to be included in the results. See Appendix A for a complete list of options. | Comma-delimited list of genders. | f,ff,m,mm,mf | No |
|---|---|---|---|---|
<Audio>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Exact | Only show performers that have audio with the camera. | -- | true | No |
|---|---|---|---|---|
<Phone>
Parent: /SMLQuery/AvailablePerformers/Constraints
Children: n/a
Attributes:
| Exact | Only show performers with Voice Over IP Phone. | -- | true | No |
|---|---|---|---|---|
IV. XML Response Structure
Example, Generic
Example, With All Response Tags
Example, With Warning
Example, With Error
Tag and Attribute Definitions
<SMLResult>
Children: <ERROR>, <AvailablePerformers>, <Synopsis>
Attributes: n/a
<ERROR>
Parent: /SMLResult
Children: <Message>
Attributes: n/a
<Message>
Parent: /SMLResult/ERROR
Children: n/a
Attributes: n/a
Value:
<Message> |
Error Message. If this exists, SMLResult probably does not contain an AvailablePerformers tag due to the error. Make certain to check for this condition. | String | <![CDATA[ Basic error message ]]> |
|---|---|---|---|
<AvailablePerformers>
Parent: /SMLResult
Children: <Performer>
Attributes:
| QueryId | The value you have passed to us. | Char (32) | Foo |
|---|---|---|---|
| ExactMatches | The number of results which matched all constraints. | Unsigned Int (8) | 10 |
| TotalResultCount | The number of results that were found. If TotalResultCount > MaxResults than it means you received a full page of data, and you should submit a subsequent request incrementing the PageNum value if you want to receive the rest of the results. | Unsigned Int (16) | 204 |
<Performer>
Parent: /SMLResult/AvailablePerformers
Children: <Descriptions>, <Media>
Attributes:
| Id | Unique identifier for the performer. | Unsigned Int (32) | 12345 |
|---|---|---|---|
| Name | The performer's nickname. | Char (32) | Jolie |
| Relevance | A numeric representation of how well the performer matches the requested constraints, ranging from 1 to 100. | Unsigned Int (8) | 100 |
| StreamType | The current streaming status of the performer. See Appendix A for a complete list of possible values. | Char (32) | live |
| PerfFlag |
A bitfield of attributes associated with the performer. You can tell if a performer possesses an attribute by checking to see if the associated bit in the PerfFlag field is TRUE. Use a bitwise-AND operator with the following bitmask values:
NOTE: Bitmask values other than those listed above are not supported. |
Unsigned Int (32) |
269486080
NOTE: For example value 268437504
High Definition = TRUE Widescreen = TRUE Pledge Period = FALSE |
| Updated | When the performer's profile was last updated, GMT. |
MySQL Datetime Format: YYYY-MM-DD HH:mm:SS |
2007-01-01 23:59:59 |
| Height | The performer's height, in inches. | Unsigned Int (8) | 60 |
| Weight | The performer's weight, in pounds. | Unsigned Int (16) | 90 |
| Chest | The performer's chest size, in inches. Applies to male performers. | Unsigned Int (8) | 28 |
| Bust | The performer's chest size, in inches. Applies to female performers. | Unsigned Int (8) | 29 |
| Waist | The performer's waist measurement, in inches. | Unsigned Int (8) | 20 |
| Hips | The performer's hip measurement, in inches. Applies to female performers. | Unsigned Int (8) | 32 |
| Age | The performer's age, in years. | Unsigned Int (8) | 22 |
| HairColor | The performer's hair color. See Appendix A for a complete list of possible values. | Char (32) | blond |
| EyeColor | The performer's eye color. See Appendix A for a complete list of possible values. | Char (32) | blue |
| Build | The performer's body type. See Appendix A for a complete list of possible values. | Char (32) | average |
| Theme | The performer's selected themes. See Appendix A for a complete list of possible values. | Comma-delimited list of themes | college |
| Fetishes | The performer's selected fetishes. See Appendix A for a complete list of possible values. | Comma-delimited list of fetishes | feet,submissive |
| Zodiac | The zodiac sign the performer falls under. See Appendix A for a complete list of possible values. | Char (32) | virgo |
| Ethnicity | The performer's ethnicity. See Appendix A for a complete list of possible values. | Char (32) | caucasian |
| SexPref | The performer's sexual preference. See Appendix A for a complete list of possible values. | Char (32) | bi |
| BodyMods | The performer's body modifications. See Appendix A for a complete list of possible values. | Comma-delimited list of body modifications | tattoos,piercings |
| BodyHair | The performer's body hair coverage. Applies to male performers. See Appendix A for a complete list of possible values. | Char (32) | shavedtrimmed |
| Circumcised | Whether the performer is circumcised or not. Applies to male performers. See Appendix A for a complete list of possible values. | Char (32) | uncut |
| CupSize | The performer's cub size. Applies to female performers. See Appendix A for a complete list of possible values. | Char (32) | b |
| CockSize | The performer's penis size. Applies to male performers. See Appendix A for a complete list of possible values. | Char (32) | big |
| FacialHair | The performer's facial hair coverage. Applies to male performers. See Appendix A for a complete list of possible values. | Char (32) | scruff |
| Language | The languages that the performer speaks. See Appendix A for a complete list of possible values. | Comma-delimited list of languages | en,es |
| PubicHair | The performer's pubic hair coverage. See Appendix A for a complete list of possible values. | Char (32) | bald |
| Gender | The performer's gender. See Appendix A for a complete list of possible values. | Char (32) | f |
| Audio | Whether the performer's current stream has audio output. | Boolean | true |
| FreeChatAudio | Whether the performer's audio is available in non-paid chat session. | Boolean | true |
| Phone | Whether the performer is currently accepting Confidential Phone Service requests. | Boolean | false |
<Descriptions>
Parent: /SMLResult/AvailablePerformers/Performer
Children: <About>, <Expertise>, <TurnOns>
Attributes: n/a
<About>
Parent: /SMLResult/AvailablePerformers/Performer/Descriptions
Children: n/a
Attributes: n/a
Value:
<About> |
Performer-submitted text about themselves. | String | <![CDATA[Something special and sexy...]]> |
|---|---|---|---|
<Expertise>
Parent: /SMLResult/AvailablePerformers/Performer/Descriptions
Children: n/a
Attributes: n/a
Value:
<Expertise> |
Performer-submitted text about their expertise. | String | <![CDATA[come in to know it :)]]> |
|---|---|---|---|
<TurnOns>
Parent: /SMLResult/AvailablePerformers/Performer/Descriptions
Children: n/a
Attributes: n/a
Value:
<TurnOns> |
Performer-submitted text about their turn-ons. | String | <![CDATA[romantic things, strong men, hot kissing..]]> |
|---|---|---|---|
<Media>
Parent: /SMLResult/AvailablePerformers/Performer
Children: <Pic>, <PhotoGallery>
Attributes: n/a
<Pic>
Parent: /SMLResult/AvailablePerformers/Performer/Media
Children: <Full>, <Thumb>
Attributes: n/a
<Full>
Parent: /SMLResult/AvailablePerformers/Performer/Media/Pic
Children: n/a
Attributes:
| Src | A URL to the full size bio picture image (320x240). If RelativeURLs was specified in the request, the domain will be excluded. | Unsigned Int (32) | http://static.gfx.streamate.com/media/1/6/0/160752.jpg |
|---|---|---|---|
| Uploaded | The date and time when the image was uploaded, GMT. |
MySQL Datetime Format: YYYY-MM-DD HH:mm:SS |
2007-01-01 23:59:59 |
<Thumb>
Parent: /SMLResult/AvailablePerformers/Performer/Media/Pic
Children: n/a
Attributes:
| Src | A URL to the thumbnail size bio picture image (120x90). If RelativeURLs was specified in the request, the domain will be excluded. | Unsigned Int (32) | http://static.gfx.streamate.com/thumb/1/6/0/160752.jpg |
|---|---|---|---|
| Uploaded | The date and time when the image was uploaded, GMT. |
MySQL Datetime Format: YYYY-MM-DD HH:mm:SS |
2007-01-01 23:59:59 |
<PhotoGallery>
Parent: /SMLResult/AvailablePerformers/Performer/Media
Children: <Pic>
Attributes: n/a
<Pic>
Parent: /SMLResult/AvailablePerformers/Performer/Media/PhotoGallery
Children: <Full>, <Thumb>
Attributes: n/a
<Full>
Parent: /SMLResult/AvailablePerformers/Performer/Media/PhotoGallery/Pic
Children: n/a
Attributes:
| Src | A URL to the full size bio picture image (320x240). If RelativeURLs was specified in the request, the domain will be excluded. | Unsigned Int (32) | http://static.gfx.streamate.com/media/1/6/0/160752.jpg |
|---|---|---|---|
| Uploaded | The date and time when the image was uploaded, GMT. |
MySQL Datetime Format: YYYY-MM-DD HH:mm:SS |
2007-01-01 23:59:59 |
<Thumb>
Parent: /SMLResult/AvailablePerformers/Performer/Media/PhotoGallery/Pic
Children: n/a
Attributes:
| Src | A URL to the thumbnail size bio picture image (120x90). If RelativeURLs was specified in the request, the domain will be excluded. | Unsigned Int (32) | http://static.gfx.streamate.com/thumb/1/6/0/160752.jpg |
|---|---|---|---|
| Uploaded | The date and time when the image was uploaded, GMT. |
MySQL Datetime Format: YYYY-MM-DD HH:mm:SS |
2007-01-01 23:59:59 |
<Synopsis>
Parent: /SMLResult
Children: <Warning>
Attributes:
| Units | Specifies that the units returned in the response were English or Metric. | Char (32) | English |
|---|---|---|---|
| Generated | When the response was generated, Unix time. | Unsigned Int (32) | 1176355087 |
| CacheTTL | A time to live on the cache used or generated in assocation with this response. | Unsigned Int (32) | 90 |
| ResponseTime | The amount of time it took, in milliseconds, to generate the response. | Unsigned Int (32) | 318836 |
<Warning>
Parent: /SMLResult/Synopsis
Children: n/a
Attributes: n/a
Value:
<Warning> |
Any warnings associated with the request, such as if an unknown tag was included. | String | <![CDATA[Schedule inclusion not implemented]]> |
|---|---|---|---|
VI. Appendix A - Attributes
| HDSort | 0 | Sort is not based on HD |
|---|---|---|
| HDSort | 1 | Performers with HD in front |
| HDSort | -1 | Performers without HD in front |
| BodyHair | hairy | A good, manly amount of hair |
| BodyHair | furry | I'm a gorilla |
| BodyHair | smooth | Little or no body hair |
| BodyHair | shavedtrimmed | |
| BodyHair | moderatehair | |
| BodyMods | tattoos | Painted |
| BodyMods | piercings | Perforated |
| Build | curvaceous | |
| Build | petite | |
| Build | average | Average build |
| Build | littleguy | |
| Build | athletic | Body built for an active lifestyle |
| Build | slender | |
| Build | slim | |
| Build | muscular | |
| Build | fewextralbs | Few extra pounds |
| Build | bbw | Big Beautiful Woman |
| Circumcised | cut | circumcised |
| Circumcised | uncut | uncircumcised |
| CockSize | pocket size | nice and comfortable |
| CockSize | average | enough to satisfy anyone |
| CockSize | big | 8+ inches... |
| CockSize | whoa | Makes ya whinny. |
| CupSize | k+ | |
| CupSize | j | |
| CupSize | h | |
| CupSize | g | |
| CupSize | f | |
| CupSize | e | |
| CupSize | ddd | |
| CupSize | dd | |
| CupSize | d | |
| CupSize | c | |
| CupSize | b | |
| CupSize | a | |
| Ethnicity | nativeamerican | American Indian |
| Ethnicity | middleeastern | |
| Ethnicity | pacificislander | |
| Ethnicity | caucasian | White, Anglo-Saxon, Northern European, etc. |
| Ethnicity | mediterranean | |
| Ethnicity | ebony | Black, Afro-American, African, etc. |
| Ethnicity | european | Exotic European |
| Ethnicity | hispanic | Latin, Hispanic, Central/South American, etc. |
| Ethnicity | roma | Gypsy |
| Ethnicity | asian | East Asian |
| Ethnicity | eastindian | From India |
| EyeColor | blue | Blue eyes |
| EyeColor | green | Green eyes |
| EyeColor | hazel | Hazel eyes |
| EyeColor | brown | Brown eyes |
| EyeColor | grey | Grey eyes |
| FacialHair | goatee | |
| FacialHair | yes | General |
| FacialHair | beard | |
| FacialHair | mustache | |
| Fetishes | anal | |
| Fetishes | bdsm | |
| Fetishes | creampie | |
| Fetishes | cuckold | |
| Fetishes | deepthroat | |
| Fetishes | dominant | |
| Fetishes | facials | |
| Fetishes | feet | |
| Fetishes | femdom | |
| Fetishes | gagging | |
| Fetishes | lactation | |
| Fetishes | leather | |
| Fetishes | roleplay | |
| Fetishes | rubberlatex | |
| Fetishes | shaving | |
| Fetishes | smoking | |
| Fetishes | spankingpaddling | |
| Fetishes | stockingsnylons | |
| Fetishes | submissive | |
| Fetishes | underwear | |
| Fetishes | voyeur | |
| Fetishes | whips | |
| Gender | ff | Lesbian Couple (female and female) |
| Gender | mf | Straight Couple (male and female) |
| Gender | g | Group (3 or more) |
| Gender | m | |
| Gender | f | |
| Gender | tm2f | Transgendered (male to female) |
| Gender | tf2m | Transgendered (female to male) |
| Gender | mm | Gay Couple (male and male) |
| HairColor | dyed | For unnatural colors |
| HairColor | red | Red head, auburn, etc. |
| HairColor | brown | Brunettes |
| HairColor | black | Black hair |
| HairColor | white | White hair |
| HairColor | gray | Gray hair |
| HairColor | silver | Silver hair |
| HairColor | saltnpepper | salt and pepper hair |
| HairColor | blond | Blond, ash blond, platinum, etc. |
| Language | en | English |
| Language | fr | French |
| Language | es | Spanish |
| Language | it | Italian |
| Language | de | German |
| Language | sv | Swedish |
| Language | pt | Portuguese |
| Language | nl | Dutch |
| Media | biopic | Main profile picture, live snapshots updated regularly |
| Media | staticbiopic | Main profile picture, uploaded by the performer |
| Media | photogallery | Picture gallery, uploaded by the performer |
| PubicHair | hairy | |
| PubicHair | trimmed | |
| PubicHair | bald | |
| SexPref | gay | Homosexual |
| SexPref | bi | Bisexual |
| SexPref | straight | Heterosexual |
| StreamType | live | |
| StreamType | recorded | |
| Theme | alternative | |
| Theme | bears | |
| Theme | bondage | |
| Theme | college | |
| Theme | daddy | |
| Theme | guynextdoor | |
| Theme | housewives | |
| Theme | nonnude | |
| Theme | pornstar | |
| Theme | pregnancy | |
| Theme | toys | |
| Theme | twink | |
| Theme | uncategorized | |
| Zodiac | aquarius | |
| Zodiac | cancer | |
| Zodiac | pisces | |
| Zodiac | leo | |
| Zodiac | virgo | |
| Zodiac | libra | |
| Zodiac | scorpio | |
| Zodiac | aries | |
| Zodiac | taurus | |
| Zodiac | capricorn | |
| Zodiac | gemini | |
| Zodiac | sagittarius | |