<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
 <title>ShopStyle Developer Blog</title>
 <link>http://developer.shopstyle.com</link>
 <description>Feed their habit.</description>
 <language>en</language>
 <atom:link href="http://developer.shopstyle.com/posts/feed" rel="self" type="application/rss+xml" />
<item>
 <title>API Documentation</title>
 <link>http://developer.shopstyle.com/1898971</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/1898971&quot;&gt;&lt;/a&gt;&lt;p&gt;
&lt;style type=&quot;text/css&quot;&gt;&lt;!--
	/* note collapsing margins don&#039;t seem to work on tables, so wrap a div with this class around
	   the table that holds the param names and descriptions */
	.paramList {
	    margin:10px 20px 10px 32px;
	    line-height:15px;
            font-size: 11px;
	}

	.paramName {
	    font-family: Courier, monospace;
	    font-weight: bold;
	    width: 70px;
	    padding-right: 20px;
	    vertical-align: top;
            font-size:12px;
	}

	.paramDescription {
	    vertical-align: top;
	    margin-bottom: 9px;
            font-size:11px;
	}

	ul.paramValuesList {
	    margin: 8px 0px 2px 0px;
	}

	.paramValuesList li {
	    margin-bottom: 4px;
	}

	.pageTitle {
	    margin:8px 0px 15px;
	    text-align:center;
	    font-size:24px;
	    font-weight:bold;
	    width:100%;
	}

	.section {
	    margin:0px 18px;
	}

	.sectionTitle {
	    margin:34px 0px 12px;
	    font-size:18px;
	    font-weight:bold;
		color: #7F7F7F;
	}

	.subTitle {
	    margin:16px 0px 8px;
	    font-size:12px;
	    font-weight:bold;
	    color: #7F7F7F;
	}

	.method {
	    margin:12px 0px 30px;
	}

	.methodTitle {
	    margin:12px 0px;
	    font-family:Courier, monospace;
	    font-size:16px;
	    font-weight:bold;
		color: #7F7F7F;
	}

	.description {
	}

   .note {
            border:1px solid #CCCCCC;
            padding:8px;
            font-size:12px;
            font-style:bold;
			font-family:Courier, monospace;
        }
--&gt;&lt;/style&gt;
&lt;/p&gt;
&lt;div class=&quot;pageTitle&quot;&gt;ShopStyle API Developer&#039;s Guide&lt;/div&gt;
&lt;div class=&quot;sectionTitle&quot;&gt;Overview&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;div class=&quot;description&quot;&gt;Welcome to the Shopstyle developer portal! The &lt;b&gt;ShopStyle API&lt;/b&gt; allows client applications to retrieve the underlying data for all the basic     elements of the ShopStyle     websites, including products, brands, retailers, categories and looks.  For ease of development, the API is a     &lt;b&gt;REST-style web service&lt;/b&gt;, composed of simple HTTP GET requests.  Data is returned to the client in either &lt;b&gt;XML&lt;/b&gt; or &lt;b&gt;JSON&lt;/b&gt; formats.  The API is client language independent, and easy to use from PHP, Java, JavaScript or     any other modern development context.&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;description&quot;&gt;To use the ShopStyle API, you need to first &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/DeveloperHome?pid=22161&amp;pdata=onsugar1882991,1898971&quot;&gt;sign up here&lt;/a&gt; to get your unique API key. Once you have this key you can start making the API calls described below.&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Intended Audience&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This document is intended for programmers who would like to develop a client application that will     use the ShopStyle API.  The client will need to know how to invoke an HTTP request with a particular URL, and process     the body of the response as either XML or JSON.&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;How to Use the API&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;Here are the basic steps for using the API, regardless of the client language you are using:     &lt;ol&gt;
&lt;li&gt;Choose the method that returns the data your application needs.  For example, the apiSearch method is used             to get products that match a given category or brand.&lt;/li&gt;
&lt;li&gt;Contruct a URL for that method with the appropriate host, method name and query parameters. &lt;/li&gt;
&lt;li&gt;Invoke the URL as an HTTP GET.&lt;/li&gt;
&lt;li&gt;When the HTTP response arrives, extract the required data elements from the response&#039;s body.&lt;/li&gt;
&lt;/ol&gt; The rest of this document describes the details of constructing the right URL for each of the API&#039;s methods.     The XML format of the reponses may be seen by clicking on the sample URLs shown for each method.  The responses     in JSON format contain identical information, just in a different language.     &lt;br /&gt;&lt;br /&gt; There is also a &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/2085418?pid=22161&amp;pdata=onsugar1882991,1898971&quot;&gt;sample client application&lt;/a&gt; written in PHP.&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;ShopStyle API URLs&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;All ShopStyle API URLs have the following form:
&lt;div class=&quot;code&quot;&gt;http://api.shopstyle.com/action/METHOD_NAME?pid=YOUR_API_KEY&amp;amp;format=FORMAT&amp;amp;site=SITE&amp;amp;...&lt;/div&gt;
The &lt;i&gt;METHOD_NAME&lt;/i&gt; is taken from the list of &lt;a href=&quot;#methods&quot;&gt;methods&lt;/a&gt; in the API shown below.&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Common API Parameters&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;All methods in the API accept these parameters:
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;pid&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;Unique API_KEY string that is assinged to the caller. If you haven&#039;t signed up yet, &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/DeveloperHome?pid=22161&amp;pdata=onsugar1882991,1898971&quot;&gt;sign up  here&lt;/a&gt; to get your Shopstyle API key. &lt;b&gt;This parameter must be present&lt;/b&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;
&lt;p&gt;format&lt;/p&gt;
&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The format of the response. Supported values are:                                                                                                      
&lt;ul class=&quot;paramValuesList&quot;&gt;
&lt;li&gt;xml - The response is in XML format with UTF-8 encoding.  This is the default if the parameter is absent. &lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.json.org&quot; target=&quot;_blank&quot;&gt;json&lt;/a&gt; - The response is in JSON format with UTF-8 encoding. &lt;/li&gt;
&lt;li&gt;jsonvar - The response is in JSON format with UTF-8 encoding, and includes a JavaScript assignment             statement.  This is useful when the API URL is the src attribute of a script tag, as the result is stored             in a variable that can be used by subsequent JavaScript code. &lt;/li&gt;
&lt;li&gt;rss - The response is an RSS feed (beta).&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;site&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;Specifies the ShopStyle website to be searched or queried (optional; defaults to US fashion).        
&lt;ul class=&quot;paramValuesList&quot;&gt;
&lt;li&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com?pid=22161&amp;pdata=onsugar1882991,1898971&quot; title=&quot;www.shopstyle.com&quot;&gt;www.shopstyle.com&lt;/a&gt; - provides access to US fashion &amp;amp; home products.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.shopstyle.co.uk&quot; title=&quot;www.shopstyle.co.uk&quot;&gt;www.shopstyle.co.uk&lt;/a&gt; - provides access to UK fashion products.&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;&lt;a name=&quot;prodQueryParams&quot;&gt;Product Query Parameters&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;Many of the methods listed in the next section accept this set of optional &lt;b&gt;product query parameters&lt;/b&gt;, which are similar to query parameters used by the ShopStyle websites:
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;fts&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;Text search terms, as a user would enter in a Search: field.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;cat&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;A product category. Only products within the category will be returned.  The easiest way to find values for this parameter is to browse to a category on the ShopStyle website, and take the  last element of the URL path, e.g., from &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/browse/dresses?pid=22161&amp;pdata=onsugar1882991,1898971&quot; title=&quot;http://www.shopstyle.com/browse/dresses&quot;&gt;http://www.shopstyle.com/browse/dresses&lt;/a&gt; use &quot;dresses&quot;. Another way is to look at the categories of the products returned by the &lt;code&gt;apiSearch&lt;/code&gt; or to look at the list of categories from &lt;code&gt;apiGetCategoryHistogram&lt;/code&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;fl&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;
&lt;p&gt;Specify one or more filters on the query for brand, retailer, price, discount, and/or size.  Each filter value has an initial letter and a numeric id.  The easiest way to construct a filter list is to do a search on ShopStyle, select one or more filter in the UI, and copy the resulting URL.  To convert brand or retailer names to ids, use the &lt;code&gt;apiGetBrands&lt;/code&gt; and &lt;code&gt;apiGetRetailers&lt;/code&gt; calls.  Here is a sample URL showing sale clothing from two brands and one retailer:&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family: &#039;Andale Mono&#039;;&quot;&gt;&lt;a style=&quot;outline-style: none; outline-width: initial; outline-color: initial; text-decoration: none; padding: 0px; margin: 0px;&quot; onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/browse/womens-clothes?fl=b3510&amp;amp;fl=b689&amp;amp;fl=r21&amp;amp;fl=r94&amp;pid=22161&amp;pdata=onsugar1882991,1898971&quot;&gt;http://www.shopstyle.com/browse/womens-clothes?fl=d0&amp;amp;fl=b3510&amp;amp;fl=b689&amp;amp;fl=r21&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
Filter prefixes are:                          
&lt;ul&gt;
&lt;li&gt;b - brand&lt;/li&gt;
&lt;li&gt;r - retailer&lt;/li&gt;
&lt;li&gt;p - price&lt;/li&gt;
&lt;li&gt;d - sale&lt;/li&gt;
&lt;li&gt;s - size&lt;/li&gt;
&lt;li&gt;c - color&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;pdd&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;A &quot;price drop date&quot; expressed as a number of milliseconds since Jan 1, 1970. If present, limits the results to products whose price has dropped since the given date.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;prodid&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The id of a specific product to return.  This may be specified multiple times to       get many products in one response.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;sectionTitle&quot;&gt;&lt;a name=&quot;methods&quot;&gt;Methods of the API&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;&lt;a name=&quot;search&quot;&gt;apiSearch&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns a set of products that match a query, specified using the &lt;a href=&quot;#prodQueryParams&quot;&gt;product query parameters&lt;/a&gt; and those listed bellow.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiSearch?pid=uid9616-726296-93&amp;amp;fts=red+dress&amp;amp;min=0&amp;amp;count=10&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiSearch?pid=YOUR_API_KEY&amp;amp;fts=red+dress&amp;amp;min=0&amp;amp;count=10&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;min&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The index of the first product to return, or 0 (zero) if not specified. A client can use       this to implement paging through large result sets.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;count&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The maximum number of results to return, or 20 if not specified. Requesting too many results may impact performance. Combine with the min parameter to implement paging.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of Product objects. Each Product has an id, name, description, price, retailer, brandName, categories, images in Small/Medium/Large, and a url that forwards to the retailer&#039;s site.&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; To view the response xml or json, copy an API link and paste it in your browser after replacing YOUR_API_KEY with the &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/www.shopstyle.com/page/DeveloperHome?pid=22161&amp;pdata=onsugar1882991,1898971&quot;&gt;api key&lt;/a&gt; assigned to you.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiGetCategoryHistogram&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns a list of categories and product counts that describe the results of a given product query.  The query is specified using the &lt;a href=&quot;#prodQueryParams&quot;&gt;product query parameters&lt;/a&gt;.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetCategoryHistogram?pid=uid9616-726296-93&amp;amp;fts=tunic&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetCategoryHistogram?pid=YOUR_API_KEY&amp;amp;fts=tunic&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of Category objects. Each Category has an id, name, and count of the number of query results in that category.&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiGetFilterHistogram&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns a list of filters and product counts that describe the results of a given product query.  The query is specified using the &lt;a href=&quot;#prodQueryParams&quot;&gt;product query parameters&lt;/a&gt;.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetFilterHistogram?pid=uid9616-726296-93&amp;amp;filterType=Retailer&amp;amp;fts=red+dress&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetFilterHistogram?pid=YOUR_API_KEY&amp;amp;filterType=Retailer&amp;amp;fts=red+dress&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;filterType&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The type of filter data to return. Possible values are Brand, Retailer, Price,       Discount and Size.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of Filter objects of the given type. Each Filter has an id, name, and count of the number of results that apply to that filter.&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;&lt;a name=&quot;getBrands&quot;&gt;apiGetBrands&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns a list of brands that have live products.  Brands that have very few products will be omitted.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetBrands?pid=uid9616-726296-93&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetBrands?pid=YOUR_API_KEY&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of all Brands, with id, name, url, and synonyms of each.&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;&lt;a name=&quot;getRetailers&quot;&gt;apiGetRetailers&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns a list of retailers that have live products.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetRetailers?pid=uid9616-726296-93&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetRetailers?pid=YOUR_API_KEY&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of all Retailers, with id, name, and url of each.&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiGetLook&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns information about a particular look and its products.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetLook?pid=uid9616-726296-93&amp;amp;look=548347&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetLook?pid=YOUR_API_KEY&amp;amp;look=548347&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;look&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The ID number of the look.  An easy way to get a look&#039;s ID is to go to the       stylebook page that contains the look at the ShopStyle website, and right-click on the button that       you use to edit the look.  From the popup menu, select &quot;Copy Link&quot;, and paste that into any text       editor.  The &quot;lookId&quot; query parameter of that URL is the value to use for this API method.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A single look, with title, description, a set of tags, and a list of products. The products have the fields listed above (see apiSearch).&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiGetLooks&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns information about looks that match different kinds of searches.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetLooks?pid=uid9616-726296-93&amp;amp;type=New&amp;amp;min=0&amp;amp;count=2&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetLooks?pid=YOUR_API_KEY&amp;amp;type=New&amp;amp;min=0&amp;amp;count=2&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;type&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The type of search to perform.  Supported values are:                                                                                                      
&lt;ul class=&quot;paramValuesList&quot;&gt;
&lt;li&gt;New - Recently created looks. &lt;/li&gt;
&lt;li&gt;TopRated - Recently created looks that are highly rated. &lt;/li&gt;
&lt;li&gt;Celebrities - Looks owned by celebrity users. &lt;/li&gt;
&lt;li&gt;Featured - Looks from featured stylebooks. &lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;min&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The index of the first product to return, or 0 (zero) if not specified. A client can use this to implement paging through large result sets.&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;count&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The maximum number of results to return, or 20 if not specified. Combine with the min parameter to implement paging.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of looks of the given type. Each look has the fields listed above (see apiGetLook).&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiGetStylebook&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns information about a particular user&#039;s stylebook, the looks within that stylebook, and the title and description associated with each look.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://api.shopstyle.com/action/apiGetStylebook?pid=uid9616-726296-93&amp;amp;handle=FabSugar&amp;pdata=onsugar1882991,1898971&quot;&gt;http://api.shopstyle.com/action/apiGetStylebook?pid=YOUR_API_KEY&amp;amp;handle=FabSugar&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;handle&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The username of the stylebook owner.  &lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;min&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The index of the first look to return, or 0 (zero) if not specified. A client can use this to implement paging through large result sets.  &lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;count&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The maximum number of results to return, or 20 if not specified. Requesting too many results may impact performance. Combine with the min parameter to implement paging.  &lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
A look id of the user&#039;s stylebook, the look id of each individual look within that stylebook, and the title and description associated with each look.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiVisitRetailer&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method does not return a reponse of XML or JSON data like the other elements of the API.  Instead, it forwards the user to the retailer&#039;s product page for a given product.  It is the typical behavior to offer when the user clicks on a product.  The apiSearch method returns URLs that call this method for each of the products it returns.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/action/apiVisitRetailer?pid=uid9616-726296-93&amp;amp;id=27500798&amp;pdata=onsugar1882991,1898971&quot;&gt;http://www.shopstyle.com/action/apiVisitRetailer?pid=YOUR_API_KEY&amp;amp;id=27500798&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;id&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;The ID number of the product.  An easy way to get a product&#039;s ID is to find       the product somewhere in the ShopStyle UI, and right-click on the product image.  From the popup       menu, select &quot;Copy Link&quot;, and paste that into any text editor.  The &quot;id&quot; query parameter of that URL       is the value to use for this API method.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;method&quot;&gt;
&lt;div class=&quot;methodTitle&quot;&gt;apiGetTrends&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;This method returns the popular brands for a given category along with a sample product for the brand-category combination.
&lt;div class=&quot;code&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/action/apiGetTrends?pid=uid9616-726296-93&amp;amp;cat=109&amp;pdata=onsugar1882991,1898971&quot;&gt;http://www.shopstyle.com/action/apiGetTrends?pid=YOUR_API_KEY&amp;amp;cat=109&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;paramList&quot;&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;cat&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;Category you want to restrict the popularity search for. This is an optional parameter. If category is not supplied, all the popular brands regardless of category will be returned.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;paramName&quot;&gt;products&lt;/td&gt;
&lt;td class=&quot;paramDescription&quot;&gt;To skip sample products, just pass value 0 for this attribute. This is an optional attribute as well.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div class=&quot;subTitle&quot;&gt;Response&lt;/div&gt;
&lt;div class=&quot;description&quot; style=&quot;font-size: 11px; padding: 0px; margin: 0px;&quot;&gt;A list of trends in the given category. Each trend has a brand, category, url, and optionally the top-ranked product for each brand/category.&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description>
 <comments>http://developer.shopstyle.com/1898971#comment</comments>
 <category domain="http://www.teamsugar.com/tag/json">json</category>
 <category domain="http://www.teamsugar.com/tag/api">api</category>
 <category domain="http://www.teamsugar.com/tag/xml">xml</category>
 <pubDate>Wed, 08 Apr 2009 14:38:55 -0700</pubDate>
 <dc:creator>ShopStyle</dc:creator>
 <guid>http://developer.shopstyle.com/1898971</guid>
</item>
<item>
 <title>Category updates</title>
 <link>http://developer.shopstyle.com/2806297</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2806297&quot;&gt;&lt;img  width=160 height=49  src=&#039;http://media.onsugar.com/files/ons1/188/1882991/07_2009/a58850e85044590e_Picture_47.large.jpg&#039;&gt;&lt;/div&gt;&lt;/a&gt;&lt;p&gt;Along with the redesigned &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com?pid=22161&amp;pdata=onsugar1882991,2806297&quot;&gt;shopstyle.com&lt;/a&gt; launched this week we have made a few changes to the category tree that may be relevant to API users.  &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &quot;living&quot; domain no longer exists. Fashion (women, men and kids) and living (home) products now exist in the same category tree.&lt;/li&gt;
&lt;li&gt;Jewelry and Accessories have been made sub-categories of Women&#039;s Clothing.&lt;/li&gt;
&lt;li&gt;Teen clothing have been made sub-categories of Women/Teens and Men/Teens.&lt;/li&gt;
&lt;li&gt;Shorts has been made a sub-category of Pants. Bridal dresses and shoes have been moved to the main Dresses and Shoes categories.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;If you are making calls such as&lt;/p&gt;
&lt;div class=&quot;code&quot;&gt;api.shopstyle.com/action/apiSearch?fts=leather&amp;amp;site=living.shopstyle.com&lt;/div&gt;
&lt;p&gt;this will continue to work, but the &lt;code&gt;site=living.shopstyle.com&lt;/code&gt; parameter will be deprecated and should be replaced with &lt;code&gt;cat=living&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&quot;code&quot;&gt;api.shopstyle.com/action/apiSearch?fts=leather&amp;amp;cat=living&lt;/div&gt;
&lt;p&gt;Most API uses should not be affected by these changes.  If you use &lt;code&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/1898971#search?pid=22161&amp;pdata=onsugar1882991,2806297&quot;&gt;apiSearch&lt;/a&gt;&lt;/code&gt; to find items and &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/1898971?pid=22161&amp;pdata=onsugar1882991,2806297&quot;&gt;&lt;code&gt;apiGetCategoryHistogram&lt;/code&gt;&lt;/a&gt; to group items by category, the new category structure will be populated automatically.  If you hard-code any category identifiers, you may need to change them to match the new tree; for example, &lt;code&gt;cat=pants&lt;/code&gt; becomes &lt;code&gt;cat=pants-shorts&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Please leave a comment or contact us with any questions.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2806297#comment</comments>
 <category domain="http://www.teamsugar.com/tag/api">api</category>
 <pubDate>Thu, 12 Feb 2009 15:09:03 -0800</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2806297</guid>
</item>
<item>
 <title>Ruby, Google and more</title>
 <link>http://developer.shopstyle.com/2664278</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2664278&quot;&gt;&lt;/a&gt;&lt;p&gt;Some enterprising folks have posted a simple Ruby client that connects to the ShopStyle API:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://infrastacks.com/?p=73&quot;&gt;http://infrastacks.com/?p=73&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Also, check out a few examples of hosting apps on Google App Engine, with code ready to download:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://developer.onsugar.com/&quot;&gt;http://developer.onsugar.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The ShopStyle team wishes everyone a happy and prosperous 2009!&lt;/p&gt;
&lt;p&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/action/apiVisitRetailer?id=46473836&amp;amp;pid=2216&amp;pdata=onsugar1882991,2664278&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;&lt;span style=&quot;color: #0000ee;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2664278#comment</comments>
 <category domain="http://www.teamsugar.com/tag/ruby">ruby</category>
 <category domain="http://www.teamsugar.com/tag/google">google</category>
 <category domain="http://www.teamsugar.com/tag/examples">examples</category>
 <pubDate>Mon, 05 Jan 2009 14:46:23 -0800</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2664278</guid>
</item>
<item>
 <title>Feed your RSS habit</title>
 <link>http://developer.shopstyle.com/2638464</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2638464&quot;&gt;&lt;img  width=160 height=151  src=&#039;http://media.onsugar.com/files/ons/188/1882991/52_2008/6baaa008a0e3cb92_Picture_9.large.jpg&#039;&gt;&lt;/div&gt;&lt;/a&gt;&lt;p&gt;To kick off the new year: RSS support (in beta). You may pass &quot;format=rss&quot; to the &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/1898971#methods?pid=22161&amp;pdata=onsugar1882991,2638464&quot;&gt;apiSearch method&lt;/a&gt; to retrieve a feed of matching products for use in your favorite RSS reader.&lt;/p&gt;
&lt;p&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;feed://api.shopstyle.com/action/apiSearch?pid=uid121&amp;amp;fts=christmas&amp;amp;format=rss&amp;pdata=onsugar1882991,2638464&quot; target=&quot;_blank&quot;&gt;Example feed&lt;/a&gt; results:&lt;/p&gt;
&lt;p&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;feed://api.shopstyle.com/action/apiSearch?pid=uid121&amp;amp;fts=christmas&amp;amp;format=rss&amp;pdata=onsugar1882991,2638464&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2638464#comment</comments>
 <category domain="http://www.teamsugar.com/tag/api">api</category>
 <category domain="http://www.teamsugar.com/tag/rss">rss</category>
 <pubDate>Mon, 29 Dec 2008 14:50:14 -0800</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2638464</guid>
</item>
<item>
 <title>Welcome</title>
 <link>http://developer.shopstyle.com/2185009</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2185009&quot;&gt;&lt;/a&gt;&lt;p&gt;Our API lets you search and filter hundreds of thousands of &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/browse?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;fashion&lt;/a&gt; and &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://living.shopstyle.com/browse?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;living&lt;/a&gt; products featured on ShopStyle&#039;s &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;US&lt;/a&gt; and &lt;a href=&quot;http://www.shopstyle.co.uk&quot;&gt;UK&lt;/a&gt; sites; access thousands of looks created by our members; and get data on most popular brands and categories. Build your own site, mobile app or mash-up featuring ShopStyle products and we&#039;ll keep track of clicks you generate to our retailers. And enter our &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/DeveloperContest?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;contest to win an iPhone&lt;/a&gt; and a year of service!&lt;/p&gt;
&lt;p&gt;Here you can peruse our&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/1898971?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;API documentation&lt;/a&gt;;&lt;/li&gt;
&lt;li&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/tag/examples?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;Example sites&lt;/a&gt; built with the ShopStyle API;&lt;/li&gt;
&lt;li&gt;Library of &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://developer.shopstyle.com/tags/widget?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;widgets&lt;/a&gt; ready to embed on your site.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;To &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/DeveloperHome?pid=22161&amp;pdata=onsugar1882991,2185009&quot;&gt;sign up&lt;/a&gt; you just need an account on shopstyle.com, and we&#039;ll provide you an API key. Questions or comments? Leave a comment here or email us at developer [at] shopstyle.com. We can&#039;t wait to see what you&#039;re working on to feed their habit. Have fun!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2185009#comment</comments>
 <category domain="http://www.teamsugar.com/tag/contest">contest</category>
 <category domain="http://www.teamsugar.com/tag/api">api</category>
 <pubDate>Sun, 05 Oct 2008 22:21:05 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2185009</guid>
</item>
<item>
 <title>Sites powered by ShopStyle</title>
 <link>http://developer.shopstyle.com/2090240</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2090240&quot;&gt;&lt;/a&gt;&lt;p&gt;Check out a few examples of websites that use the ShopStyle API!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.salehabit.com&quot;&gt;&lt;/a&gt; &lt;a href=&quot;http://www.celebstyle.com&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.instyle.com/instyle/products/0,,,00.html&quot;&gt;&lt;/a&gt; &lt;a href=&quot;http://whatis.onsugar.com&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.celebstyle.com&quot;&gt;CelebStyle.com&lt;/a&gt; - the definitive guide to what celebrities are wearing on and off the screen.  The ShopStyle API powers custom product queries and layouts.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.salehabit.com&quot;&gt;SaleHabit.com&lt;/a&gt; - search fashion and products on sale across the internet.  The ShopStyle API powers a full example storefront with search, browsing and filtering features.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.instyle.com/instyle/products/0,,,00.html&quot;&gt;InStyle Shopping&lt;/a&gt; - the leading fashion &amp;amp; style magazine&#039;s shopping website is powered by ShopStyle.  On this page, the &quot;Most Shopped&quot; ticker and &quot;Editor&#039;s Picks&quot; Flash widget use the ShopStyle API.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.onsugar.com&quot;&gt;OnSugar&lt;/a&gt; - the Sugar Network&#039;s new blogging platform features a spread builder allowing members to build custom magazine-like layouts of their favorite ShopStyle items, powered by the API.&lt;/p&gt;
&lt;p&gt;Also dozens of sites embed ShopStyle widgets.  Take a look at &lt;a href=&quot;http://www.glamour.com/shopping&quot;&gt;glamour.com&lt;/a&gt;, &lt;a href=&quot;http://www.instyle.com/instyle/products/productfinder/browse/&quot;&gt;instyle.com&lt;/a&gt;, &lt;a href=&quot;http://fabsugar.com/2032685&quot;&gt;fabsugar&lt;/a&gt;, &lt;a href=&quot;http://casasugar.com/2021602&quot;&gt;casasugar&lt;/a&gt;, &lt;a href=&quot;http://www.stylebakery.com/style-recipes/whats_our_summer_uniform.html&quot;&gt;stylebakery&lt;/a&gt;, &lt;a href=&quot;http://www.runwaydaily.com/runwaydaily/2008/06/wantingwishingwearing-summertime-dresses.html&quot;&gt;runwaydaily&lt;/a&gt;, &lt;a href=&quot;http://shefinds.com/blog/index.php/weblog/&quot;&gt;shefinds&lt;/a&gt;, &lt;a href=&quot;http://www.vibe.com/style/musthaves/&quot;&gt;vibe.com&lt;/a&gt;, &lt;a href=&quot;http://www.cumul.us&quot;&gt;cumul.us&lt;/a&gt;, and many others for widget examples!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2090240#comment</comments>
 <category domain="http://www.teamsugar.com/tag/api">api</category>
 <category domain="http://www.teamsugar.com/tag/examples">examples</category>
 <pubDate>Sun, 05 Oct 2008 22:02:33 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2090240</guid>
</item>
<item>
 <title>Widget: share a product</title>
 <link>http://developer.shopstyle.com/2094948</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2094948&quot;&gt;&lt;/a&gt;&lt;p&gt;Find a ShopStyle product you want to share on your site or blog, and get credit for clicks by your visitors?  Easy to do ... mouse over an item, click &quot;Share this item&quot;, then &quot;Blog it&quot;, and pick your image size.&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style=&quot;border:1px solid #b9b9b9&quot;&gt;
&lt;div style=&quot;text-align:center;padding:5px&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/action/apiVisitRetailer?id=27500643&amp;amp;pid=anonymous&amp;pdata=onsugar1882991,2094948&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align:right;padding:0px 2px 2px 2px&quot;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/browse?cat=111&amp;amp;fl=b555&amp;amp;pid=anonymous&amp;pdata=onsugar1882991,2094948&quot; style=&quot;color:#909090&quot;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/browse?pid=22161&amp;pdata=onsugar1882991,2094948&quot;&gt;Start shopping on shopstyle.com&lt;/a&gt; or check out a great widget example on &lt;a href=&quot;http://fabsugar.com/2032685&quot;&gt;fabsugar.com&lt;/a&gt;.&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2094948#comment</comments>
 <category domain="http://www.teamsugar.com/tag/widget">widget</category>
 <pubDate>Sun, 28 Sep 2008 22:58:39 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2094948</guid>
</item>
<item>
 <title>Widget: product search</title>
 <link>http://developer.shopstyle.com/2086877</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2086877&quot;&gt;&lt;/a&gt;&lt;p&gt;Toss up a widget to allow your visitors to search and scroll through ShopStyle&#039;s inventory without leaving your site!&lt;/p&gt;
&lt;p&gt;Here&#039;s an example:&lt;/p&gt;
&lt;form target=&quot;shopstyle_search&quot; action=&quot;http://widget.shopstyle.com/widget&quot;&gt;
&lt;div style=&quot;border: 1px lightGray solid; width: 400px; padding: 10px;&quot;&gt;ShopStyle search:     &lt;input name=&quot;fts&quot; type=&quot;text&quot; value=&quot;Juicy tops&quot; style=&quot;border:1px solid gray; font-size:10px&quot; /&gt; &lt;input type=&quot;submit&quot; value=&quot;Go&quot; style=&quot;font-size:12px&quot; /&gt; &lt;br /&gt;&lt;br /&gt;Category: &lt;input checked=&quot;1&quot; type=&quot;radio&quot; name=&quot;cat&quot; value=&quot;women&quot; /&gt; Women &lt;input type=&quot;radio&quot; name=&quot;cat&quot; value=&quot;mens-clothes&quot; /&gt; Men &lt;input type=&quot;radio&quot; name=&quot;cat&quot; value=&quot;kids-and-baby&quot; /&gt; Kids &lt;input type=&quot;radio&quot; name=&quot;cat&quot; value=&quot;living&quot; /&gt; Home &lt;br /&gt; Locale: &lt;input checked=&quot;1&quot; type=&quot;radio&quot; name=&quot;site&quot; value=&quot;www.shopstyle.com&quot; /&gt; US &lt;input type=&quot;radio&quot; name=&quot;site&quot; value=&quot;www.shopstyle.co.uk&quot; /&gt; UK&lt;/div&gt;
&lt;/form&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;iframe src=&quot;http://widget.shopstyle.com/widget?pid=anonymous&amp;amp;fts=Juicy%20Tops&amp;amp;width=3&amp;amp;height=1&quot; style=&quot;display:block;&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;254&quot; width=&quot;424&quot; name=&quot;shopstyle_search&quot;&gt;&lt;/iframe&gt; Configure your own here: &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/BlogWidget?search=&amp;pid=22161&amp;pdata=onsugar1882991,2086877&quot;&gt;US fashion/home&lt;/a&gt;, &lt;a href=&quot;http://www.shopstyle.co.uk/page/BlogWidget?search=&quot;&gt;UK fashion&lt;/a&gt;.&lt;br /&gt;&lt;span style=&quot;color: #551a8b;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2086877#comment</comments>
 <category domain="http://www.teamsugar.com/tag/widget">widget</category>
 <pubDate>Sun, 28 Sep 2008 22:58:32 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2086877</guid>
</item>
<item>
 <title>Widget: share a look</title>
 <link>http://developer.shopstyle.com/2085591</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2085591&quot;&gt;&lt;/a&gt;&lt;p&gt;Share your own or other members&#039; looks on your site with a ShopStyle widget.  Just click the &quot;Blog It&quot; button next to any look in a stylebook. Here&#039;s a celebrity look from our fashion archive:&lt;/p&gt;
&lt;p&gt;&lt;table class=&#039;list_items&#039;&gt;&lt;tr&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=18832979&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/47/cf/47cf61ca0c66925e27a66d37e11b25a8_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=18832979&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Medium silver hoops - $68.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=26760471&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/db/60/db60497f1a79ac4cfbc90b2b796348aa_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=26760471&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Circadian Studios Medium Silver Floating Hoop Earrings - $55.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=28700699&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/92/24/922482115e8be84b338178a54796944b_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=28700699&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Herve Leger Mock Turtleneck Chevron Bandage Dress - $1,350.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=16368561&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/c6/d2/c6d27273e8b8aedc0fae235f4da72d4f_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=16368561&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Herve Leger Scoopneck Tank Dress - $730.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=28376206&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/8b/1e/8b1e023dcc7655625cb45e80d8df3940_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=28376206&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Modal Jersey Satin Insert Dress - $49.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=29915080&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/8a/c1/8ac1e949343fde33468ec5a485881985_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=29915080&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&quot;Singer22 Exclusive&quot; Mike and Chris Kian Donovan Leather Jacket in Black or Onyx with Trim as seen on Kate Moss-in stock - $775.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=29464040&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/68/dc/68dc3e86cfeb55706e67adf36467cd5b_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=29464040&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Veda Domino Leather Jacket - $745.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=28288428&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/e6/49/e6495bf7d48787a7b7620a15510fe120_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=28288428&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Paris Hilton - Brandy (Red Patent) - $93.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=22903428&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/1f/19/1f19a719334e3a92ad8a973a267543f4_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=22903428&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;rsvp - Paris (Red Patent) - $80.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=25240510&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/2b/be/2bbefc47c1056e97e19b2c83447edbbf_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=25240510&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Nancy Gonzalez East-West Croc Clutch, Black - $1,400.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&#039;center&#039; valign=&#039;top&#039;&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=30405416&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;&lt;img class=\&#039;rss image&#039;\ style=&#039;padding:0px;margin:0px&#039; src=http://resources.shopstyle.com/pim/2d/62/2d627b91f4d82a43d3447367df35d4d2_medium.jpg height=140 width=112/&gt;&lt;/a&gt;&lt;br&gt;&lt;center&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&#039;http://www.shopstyle.com/action/apiVisitRetailer?id=30405416&amp;pid=2254&amp;pdata=onsugar1882991,2085591&#039; &gt;Prada black leather &#039;Stripes&#039; clutch - $736.00&lt;/a&gt;&lt;/center&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; Customize the size, layout and contents of your widget. &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/BlogWidget?lookId=560976&amp;pid=22161&amp;pdata=onsugar1882991,2085591&quot;&gt;Build your own now!&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A spread by one of our prolific members:&lt;/p&gt;
&lt;div style=&quot;border: 1px solid #b9b9b9; width: 479px; height: 401px;&quot;&gt;
&lt;div style=&quot;position:relative; margin-left:2px&quot;&gt;&lt;a style=&quot;outline:none&quot; onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/action/viewLook?id=586015&amp;amp;pid=uid4641-121-26&amp;pdata=onsugar1882991,2085591&quot;&gt;&lt;/a&gt;&lt;a style=&quot;color:#909090&quot; onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/browse/Nanette-Lepore?pid=uid4641-121-26&amp;pdata=onsugar1882991,2085591&quot;&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/page/BlogWidget?lookId=586015&amp;pid=22161&amp;pdata=onsugar1882991,2085591&quot;&gt;Build your own!&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2085591#comment</comments>
 <category domain="http://www.teamsugar.com/tag/widget">widget</category>
 <pubDate>Sun, 28 Sep 2008 22:58:23 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2085591</guid>
</item>
<item>
 <title>Widget: spread browser</title>
 <link>http://developer.shopstyle.com/2085720</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2085720&quot;&gt;&lt;/a&gt;&lt;p&gt;
&lt;style&gt;&lt;!--
.code {
    border:1px solid #CCCCCC;
    padding:8px;
    font-size:12px;
    font-family:Courier, monospace;
    margin:8px auto;
    width:90%;
}
--&gt;&lt;/style&gt;
&lt;/p&gt;
&lt;p&gt;Embed a scrolling browser of looks in spread format from your favorite member, group or tag!&lt;/p&gt;
&lt;p&gt;Example: large widget for member &#039;HanounaQ&#039;:&lt;/p&gt;
&lt;p&gt;&lt;iframe scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;452&quot; width=&quot;480&quot; src=&quot;http://widget.shopstyle.com/page/LookBrowserWidget?searchUser=HanounaQ&amp;amp;size=Large&amp;amp;pid=anonymous&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;Here&#039;s the same code. Build your own widget by clicking Blog Looks from a &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/users/binky?pid=22161&amp;pdata=onsugar1882991,2085720&quot;&gt;member&lt;/a&gt; or &lt;a onclick=&quot;if (window.shopSensePFlag===undefined) {this.href=this.href.replace(/pid=\d+/,&#039;pid=puid140817&#039;);}return true;&quot; href=&quot;http://www.shopstyle.com/groups/EXPRESSION?pid=22161&amp;pdata=onsugar1882991,2085720&quot;&gt;group&lt;/a&gt; page! &lt;/p&gt;
&lt;div class=&quot;code&quot;&gt;&amp;lt;iframe scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;452&quot; width=&quot;480&quot; src=&quot;http://widget.shopstyle.com/page/LookBrowserWidget?searchUser=perennial+mom&amp;amp;size=Large&amp;amp;pid=anonymous&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/div&gt;
&lt;p&gt; &lt;/p&gt;</description>
 <comments>http://developer.shopstyle.com/2085720#comment</comments>
 <category domain="http://www.teamsugar.com/tag/widget">widget</category>
 <pubDate>Sun, 28 Sep 2008 22:57:51 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2085720</guid>
</item>
<item>
 <title>Widget: hot trends</title>
 <link>http://developer.shopstyle.com/2085928</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2085928&quot;&gt;&lt;/a&gt;&lt;p&gt;
&lt;style&gt;&lt;!--
.code {
    border:1px solid #CCCCCC;
    padding:8px;
    font-size:12px;
    font-family:Courier, monospace;
    margin:8px auto;
    width:90%;
}
--&gt;&lt;/style&gt;
&lt;/p&gt;
&lt;p&gt;Feature the most popular brands or products, automatically pulled from ShopStyle&#039;s inventory.&lt;/p&gt;
&lt;p&gt;Popular brands &amp;amp; categories in women&#039;s fashion:&lt;/p&gt;
&lt;p&gt;&lt;iframe scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;254&quot; width=&quot;424&quot; src=&quot;http://widget.shopstyle.com/page/TrendWidget?pid=anonymous&amp;amp;cat=women&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;Customize this code to build your own!&lt;/p&gt;
&lt;div class=&quot;code&quot;&gt;&amp;lt;iframe scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;254&quot; width=&quot;424&quot; src=&quot;http://widget.shopstyle.com/page/TrendWidget?pid=anonymous&amp;amp;cat=women&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/div&gt;
&lt;p&gt;Popular products in dresses, shoes, jewelry, and bags from our UK site:&lt;/p&gt;
&lt;p&gt;&lt;iframe scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;254&quot; width=&quot;424&quot; src=&quot;http://www.shopstyle.co.uk/page/TrendWidget?pid=anonymous&amp;amp;cat=26&amp;amp;cat=109&amp;amp;cat=72&amp;amp;cat=31&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;Customize this code to build your own!&lt;/p&gt;
&lt;div class=&quot;code&quot;&gt;&amp;lt;iframe scrolling=&quot;no&quot; frameborder=&quot;0&quot; height=&quot;254&quot; width=&quot;424&quot; src=&quot;http://www.shopstyle.co.uk/page/TrendWidget?pid=anonymous&amp;amp;&amp;amp;cat=26&amp;amp;cat=109&amp;amp;cat=72&amp;amp;cat=31&quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/div&gt;</description>
 <comments>http://developer.shopstyle.com/2085928#comment</comments>
 <category domain="http://www.teamsugar.com/tag/widget">widget</category>
 <pubDate>Sun, 28 Sep 2008 22:57:38 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2085928</guid>
</item>
<item>
 <title>Sample PHP Client</title>
 <link>http://developer.shopstyle.com/2085418</link>
 <description>&lt;a href=&quot;http://developer.shopstyle.com/2085418&quot;&gt;&lt;/a&gt;&lt;div class=&quot;section&quot;&gt;
&lt;div class=&quot;description&quot;&gt;We have created a simple PHP client to show one of the many possible ways of using the the ShopStyle API. This sample application contains two files: A reusable PHP class file that invokes various methods of the API, and a simple presentation module to display these results.&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sugarinc.com/api/ShopStyleAPIExample.php&quot;&gt;Click here to see this example in action.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;
&lt;p&gt;You can also download these two sample files here:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt; &lt;a href=&quot;http://www.sugarinc.com/api/ShopStyle.class.phps&quot; title=&quot;ShopStyle.class.php&quot; target=&quot;_self&quot;&gt; ShopStyle.class.php&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://www.sugarinc.com/api/ShopStyleAPIExample.phps&quot; title=&quot;ShopStyleAPIExample.php&quot; target=&quot;_self&quot;&gt; ShopStyleAPIExample.php&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;Copy these files to your php-enabled webserver&#039;s document root and load  		 &lt;a href=&quot;http://localhost/ShopStyleAPIExample.php&quot; title=&quot;http://localhost/ShopStyleAPIExample.php&quot;&gt;http://localhost/ShopStyleAPIExample.php&lt;/a&gt;  in your browser to run the application locally.&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;description&quot;&gt;&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;</description>
 <comments>http://developer.shopstyle.com/2085418#comment</comments>
 <category domain="http://www.teamsugar.com/tag/api">api</category>
 <category domain="http://www.teamsugar.com/tag/examples">examples</category>
 <category domain="http://www.teamsugar.com/tag/php">php</category>
 <pubDate>Thu, 25 Sep 2008 09:40:33 -0700</pubDate>
 <dc:creator>Mike</dc:creator>
 <guid>http://developer.shopstyle.com/2085418</guid>
</item>
</channel>
</rss>
