{"info":{"_postman_id":"88a9baaf-fb58-4213-86c0-86d7aba4ffc4","name":"Brad's Deals Partners API","description":"<html><head></head><body><p>At Brad's Deals, we are a team of real people committed to saving shoppers time and money by connecting them with validated online deals and discounts.  Through the Partners API, you can get access to our hand picked online deals.</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<h2 id=\"api-token\">API Token</h2>\n<p>An API token is required to make requests to the api/v1/deals endpoint. This is used to identify and authenticate the partner making the request. A unique API token is provided to each partner as part of the on-boarding process.  The API token needs to be included as an <code>x-api-key</code> header on the deals endpoint request.</p>\n<h2 id=\"partner-id\">Partner ID</h2>\n<p>A Partner ID is also required for the api/v1/deals endpoint.  This needs to be included as a parameter on the GET request for api/v1/deals.  A unique Partner ID will be provided to each partner as part of the on-boarding process.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"}],"owner":"110508","collectionId":"88a9baaf-fb58-4213-86c0-86d7aba4ffc4","publishedId":"T1DpBcnL","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-07-23T19:42:10.000Z"},"item":[{"name":"/api/v1/deals","event":[{"listen":"test","script":{"id":"0737fc78-bf91-456f-93a8-ec30fec54090","exec":["let template = `","<div style='background: #fff; padding: 10px;'>","    <style>","        * {","            box-sizing: border-box;","        }","        .deal-wrapper {","            list-style: none;","            flex: 1 0 20%;","            padding: 10px;","        }","        .bd-deal-image {","            max-width: 100%;","        }","    </style>","    <h3>Example Deal Feed</h3>","    <p>Using the <code>html</code> attribute on each deal</p>","    <ul style='display: flex; flex-wrap: wrap;'>","        {{#each response.deals}}","            <li class='deal-wrapper'>{{{html}}}</li>","        {{/each}}","    </ul>","</div>","`;","","pm.visualizer.set(template, { response: pm.response.json() });"],"type":"text/javascript"}}],"id":"27ff74b4-89ed-4cac-a159-89cbf05b4e8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>API Key (required)</p>\n","key":"X-Api-Key","type":"text","value":"{{partners_api_key}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://partners.bradsdeals.com/api/v1/deals?partner_id&limit&sort&offset&category_slugs","description":"<p>This is the endpoint for fetching deals.</p>\n<h2 id=\"deal-lifecycle\">Deal Lifecycle</h2>\n<p>Deals are manually entered by our team of Brad's Deals editors and are scheduled to run as long as the product(s) are available.  Deals have a start date and an expiration date.  This endpoint will only return live active deals after the start date of the deal.  When a deal has expired the deal will no longer be available from this endpoint.</p>\n<p>There are times when a product featured on a deal will sell out or be no longer available before the deal reaches the expiration date.  In this case, the editor will manually expire or deactivate the deal and it will no longer be available from this endpoint.</p>\n<h2 id=\"deal-model-fields\">Deal Model Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>brands</td>\n<td>Array of brand names associated with this deal.</td>\n</tr>\n<tr>\n<td>categories</td>\n<td>Array of category objects</td>\n</tr>\n<tr>\n<td>description_preview</td>\n<td>A truncated teaser description of the deal.</td>\n</tr>\n<tr>\n<td>editor</td>\n<td>Brad's Deals editor who sourced this deal.</td>\n</tr>\n<tr>\n<td>expires_at</td>\n<td><em>datetime</em> Scheduled expiration datetime of this deal.  Deal can be manually expired by the editor at any time.</td>\n</tr>\n<tr>\n<td>flags</td>\n<td>An array flags.</td>\n</tr>\n<tr>\n<td>headline</td>\n<td>Full title of the deal.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Brad's Deals deal ID.</td>\n</tr>\n<tr>\n<td>image</td>\n<td>Image url of deal 160x160 pixels</td>\n</tr>\n<tr>\n<td>image_urls</td>\n<td>Array of image urls for the deal in 3 sizes: 88x88px, 160x160px, 310x310px</td>\n</tr>\n<tr>\n<td>link</td>\n<td>Url to the deal page of the deal on the Brad's Deals website.</td>\n</tr>\n<tr>\n<td>merchant</td>\n<td>The merchant object of the deal which includes the logo image url, name, and slug of the merchant.</td>\n</tr>\n<tr>\n<td>msrp</td>\n<td>The manufacturer suggested retail price of the deal.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>The price of the deal.</td>\n</tr>\n<tr>\n<td>primary_category</td>\n<td>The primary category for the deal.</td>\n</tr>\n<tr>\n<td>quote</td>\n<td><em>html</em> The editor's interesting quote for the deal.</td>\n</tr>\n<tr>\n<td>shipped_price</td>\n<td>The price of the deal including the shipping cost.</td>\n</tr>\n<tr>\n<td>shipping_cost</td>\n<td>The cost of shipping.</td>\n</tr>\n<tr>\n<td>starts_at</td>\n<td><em>datetime</em> The starting datetime for when the deal is available.</td>\n</tr>\n<tr>\n<td>teaser_headline</td>\n<td>Shortened title of the deal.</td>\n</tr>\n<tr>\n<td>tracking_pixel</td>\n<td>The tracking pixel for the deal.</td>\n</tr>\n<tr>\n<td>html</td>\n<td><em>html</em> Simple html template for the deal which includes the deal image, deal headline, and links directly to the deal page on Brad's Deals.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"filtering\">Filtering</h2>\n<p>The deals endpoint can be filtered by category slugs.  Category slugs come as a top level category or top level category/sub level category.  ex: men, men/shirt-tops, women, electronics, electronics/laptops.  A full list of categories and their category slugs can be found from the categories endpoint.</p>\n<h2 id=\"sort\">Sort</h2>\n<p>Deals can be sorted by <code>newest</code> or <code>popularity</code>.  Newest is chronologically ordered by deal start date.  Popularity is ordered by our most popular deals first.</p>\n<h2 id=\"html-field\">HTML Field</h2>\n<p>An <code>html</code> field will be included with each deal object.  This field contains a simple stylable html template to use.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;div class=\"bd-deal\"&gt;\n  &lt;a target=\"_blank\" href=\"https://www.bradsdeals.com/p/458225?utm_source=&amp;c_id=&amp;s=Direct||Syndication|DealFeed&amp;utm_campaign=syndication&amp;utm_medium=partners&amp;utm_content=dealfeed&amp;channel=syndication\"&gt;\n    &lt;img class=\"bd-deal-image\" src=\"https://cdn-images.bradsdeals.com/prod/367858/deal_310x310/ecp-11x14-summer-2020-8-3.jpeg\"&gt;\n    &lt;p class=\"bd-deal-title\"&gt;11\" x 14\" Canvas $15 Shipped!&lt;/p&gt;\n  &lt;/a&gt;\n  &lt;img src=\"https://tracker.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTk4MjYsImNhbXBhaWduX3NvdXJjZSI6IjY3OSIsImNoYW5uZWxfaWQiOiI2NzkiLCJldmVudCI6ImltcHJlc3Npb24iLCJpdGVtX3R5cGUiOiJwIiwiY2hhbm5lbCI6InN5bmRpY2F0aW9uIiwiY2FtcGFpZ25fbmFtZSI6InN5bmRpY2F0aW9uIiwiY2FtcGFpZ25fbWVkaXVtIjoicGFydG5lcnMiLCJjYW1wYWlnbl9jb250ZW50IjoiZGVhbGZlZWQifQ==\" width=\"1\" height=\"1\" border=\"0\" style=\"display:none;overflow:hidden\"&gt;\n&lt;/div&gt;\n</code></pre>\n<h2 id=\"responses\">Responses</h2>\n<p>The endpoint returns a JSON response with a '200 Ok' status code.</p>\n<h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>deals</td>\n<td>An array of deal objects.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>403 Forbidden</td>\n<td>Missing required API key or partner ID</td>\n</tr>\n<tr>\n<td>5XX</td>\n<td>Something is wrong with the Brad's Deals Partner API.  Please contact your Brad's Deals representative for status.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","deals"],"host":["partners","bradsdeals","com"],"query":[{"description":{"content":"<p><em>integer</em> <strong>Required</strong> Brad's Deals Partner ID.</p>\n","type":"text/plain"},"key":"partner_id","value":null},{"description":{"content":"<p><em>integer</em> Limit of deals returned. Default of 30. Max value is 100.</p>\n","type":"text/plain"},"key":"limit","value":null},{"description":{"content":"<p><em>string</em> Values: <code>newest</code> or <code>popularity</code> Sort by chronological or popular order.</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p><em>integer</em> Number of deals to offset</p>\n","type":"text/plain"},"key":"offset","value":null},{"description":{"content":"<p><em>string</em> Filter by a comma separated list of Brad's Deals category slugs. Category slugs come as a top level category or top level category/sub level category. ex: men, men/shirt-tops, women, electronics, electronics/laptops.</p>\n","type":"text/plain"},"key":"category_slugs","value":null}],"variable":[]}},"response":[{"id":"2867caf8-68cb-4678-af16-e7fc84a20912","name":" Fetch deals with category slugs and limit","originalRequest":{"method":"GET","header":[{"description":"API Key (required)","key":"X-Api-Key","type":"text","value":"{{partners_api_key}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"https://partners.bradsdeals.com/api/v1/deals?category_slugs=men,men/shirt-tops&partner_id=1&limit=5","protocol":"https","host":["partners","bradsdeals","com"],"path":["api","v1","deals"],"query":[{"key":"category_slugs","value":"men,men/shirt-tops"},{"key":"partner_id","value":"1"},{"key":"limit","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"12453"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 03 Aug 2020 19:51:19 GMT"},{"key":"x-amzn-RequestId","value":"8d41a882-3353-40eb-9466-f37630e6455d"},{"key":"x-amz-apigw-id","value":"QtWcqFy5IAMFWVg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f286ab7-c4f943a6a7301fdadfb6849c"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 47c0295005ec7d8570406951491004c3.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C3"},{"key":"X-Amz-Cf-Id","value":"M-LIoLi6xtt8i8TLIEV51wGZbUsd6mYLQ-9xOrdtRPwJE6-tCU3ZSA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"deals\": [\n        {\n            \"brands\": [\n                \"Easy Canvas Prints\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Art & Accessories\",\n                    \"slug\": \"home/art-accessories\"\n                },\n                {\n                    \"name\": \"Home\",\n                    \"slug\": \"home\"\n                }\n            ],\n            \"description_preview\": \"Exclusively for our readers, this 11\\\" x 14\\\" Standard Wrapped Canvas, regularly $108.55, drops to ...\",\n            \"editor\": \"Lindsay\",\n            \"expires_at\": \"2020-08-09T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Personalized Gifts\",\n                \"Deals Under $25\",\n                \"Deals Under $15\",\n                \"Free Shipping\",\n                \"Deal of the Day (assigned only)\"\n            ],\n            \"headline\": \"11\\\" x 14\\\" Canvas $15 Shipped!\",\n            \"id\": 458225,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_160x160/ecp-11x14-summer-2020-8-3.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_88x88/ecp-11x14-summer-2020-8-3.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_160x160/ecp-11x14-summer-2020-8-3.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_310x310/ecp-11x14-summer-2020-8-3.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/458225?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 2185,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_125x40/2185.gif\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_100x32/2185.gif\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_125x40/2185.gif\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_250x80/2185.gif\"\n                },\n                \"name\": \"Easy Canvas Prints\",\n                \"slug\": \"easy-canvas-prints\"\n            },\n            \"msrp\": \"108.55\",\n            \"price\": \"14.99\",\n            \"primary_category\": {\n                \"name\": \"Art & Accessories\",\n                \"slug\": \"home/art-accessories\"\n            },\n            \"quote\": \"<p>This matches the lowest price we have seen this year!</p>\",\n            \"shipped_price\": \"14.99\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-08-03T06:35:00.000-04:00\",\n            \"teaser_headline\": \"$15 Custom Canvas\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTgyMjUsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/458225?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/367858/deal_310x310/ecp-11x14-summer-2020-8-3.jpeg\\\"><p class=\\\"bd-deal-title\\\">11\\\" x 14\\\" Canvas $15 Shipped!</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Best Choice Products\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Outdoor Living\",\n                    \"slug\": \"patio-lawn-garden/outdoor-living\"\n                },\n                {\n                    \"name\": \"Patio, Lawn & Garden\",\n                    \"slug\": \"patio-lawn-garden\"\n                }\n            ],\n            \"description_preview\": \"This 12' x 12' Gazebo Canopy with Weighted Bags lists at $454.99 and was already on sale for $249...\",\n            \"editor\": \"Jim\",\n            \"expires_at\": \"2020-08-13T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Free Shipping\",\n                \"All-Star Deal (assigned only)\",\n                \"Proofread by Kiran\"\n            ],\n            \"headline\": \"12' x 12' Canopy + Weights $180 Shipped\",\n            \"id\": 457628,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_160x160/12-x-12-canopy-gazebo.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_88x88/12-x-12-canopy-gazebo.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_160x160/12-x-12-canopy-gazebo.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_310x310/12-x-12-canopy-gazebo.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/457628?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 5320,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_125x40/best_choice_products_logo.jpg\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_100x32/best_choice_products_logo.jpg\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_125x40/best_choice_products_logo.jpg\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_250x80/best_choice_products_logo.jpg\"\n                },\n                \"name\": \"Best Choice Products\",\n                \"slug\": \"best-choice-products\"\n            },\n            \"msrp\": \"400.00\",\n            \"price\": \"180.00\",\n            \"primary_category\": {\n                \"name\": \"Outdoor Living\",\n                \"slug\": \"patio-lawn-garden/outdoor-living\"\n            },\n            \"quote\": \"<p>That&#39;s the best price we&#39;ve ever seen for this canopy!</p>\",\n            \"shipped_price\": \"180.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-08-03T05:02:00.000-04:00\",\n            \"teaser_headline\": \"$180 Canopy\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTc2MjgsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/457628?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/358912/deal_310x310/12-x-12-canopy-gazebo.jpeg\\\"><p class=\\\"bd-deal-title\\\">12' x 12' Canopy + Weights $180 Shipped</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Under Armour\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Activewear & Swim\",\n                    \"slug\": \"men/activewear-swim\"\n                },\n                {\n                    \"name\": \"Men\",\n                    \"slug\": \"men\"\n                },\n                {\n                    \"name\": \"Activewear & Swim\",\n                    \"slug\": \"women/activewear-swim\"\n                },\n                {\n                    \"name\": \"Bottoms\",\n                    \"slug\": \"women/bottoms\"\n                },\n                {\n                    \"name\": \"Women\",\n                    \"slug\": \"women\"\n                }\n            ],\n            \"description_preview\": \"Add any two of these men's or women's Under Armour Joggers to your cart and apply our exclusive c...\",\n            \"editor\": \"A.J.\",\n            \"expires_at\": \"2020-08-07T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Free Shipping\",\n                \"Deal of the Day (assigned only)\",\n                \"Proofread by Kiran\"\n            ],\n            \"headline\": \"2 Under Armour Joggers $40 Shipped\",\n            \"id\": 457987,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_160x160/ua-joggers.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_88x88/ua-joggers.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_160x160/ua-joggers.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_310x310/ua-joggers.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/457987?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 4969,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_125x40/proozy_logo.png\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_100x32/proozy_logo.png\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_125x40/proozy_logo.png\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_250x80/proozy_logo.png\"\n                },\n                \"name\": \"Proozy\",\n                \"slug\": \"proozy\"\n            },\n            \"msrp\": \"99.99\",\n            \"price\": \"40.00\",\n            \"primary_category\": {\n                \"name\": \"Activewear & Swim\",\n                \"slug\": \"men/activewear-swim\"\n            },\n            \"quote\": \"<p>This is a $100 value.</p>\",\n            \"shipped_price\": \"40.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-07-31T07:00:00.000-04:00\",\n            \"teaser_headline\": \"2 for $40 UA Joggers\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTc5ODcsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/457987?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/367634/deal_310x310/ua-joggers.jpeg\\\"><p class=\\\"bd-deal-title\\\">2 Under Armour Joggers $40 Shipped</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Generic\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Men's Accessories & Sunglasses\",\n                    \"slug\": \"men/mens-accessories-sunglasses\"\n                },\n                {\n                    \"name\": \"Men\",\n                    \"slug\": \"men\"\n                },\n                {\n                    \"name\": \"Accessories & Sunglasses\",\n                    \"slug\": \"women/accessories-sunglasses\"\n                },\n                {\n                    \"name\": \"Women\",\n                    \"slug\": \"women\"\n                }\n            ],\n            \"description_preview\": \"Exclusively for our readers, this 100-pack of disposable 3-ply masks drops from $29 to $19.99 at ...\",\n            \"editor\": \"Jillian\",\n            \"expires_at\": \"2020-08-06T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Deals Under $25\",\n                \"Free Shipping\"\n            ],\n            \"headline\": \"100pk Disposable Masks $20 Shipped\",\n            \"id\": 458192,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_160x160/100pk-masks.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_88x88/100pk-masks.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_160x160/100pk-masks.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_310x310/100pk-masks.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/458192?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 4683,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_125x40/deal_genius.png\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_100x32/deal_genius.png\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_125x40/deal_genius.png\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_250x80/deal_genius.png\"\n                },\n                \"name\": \"Deal Genius\",\n                \"slug\": \"deal-genius\"\n            },\n            \"msrp\": \"29.00\",\n            \"price\": \"20.00\",\n            \"primary_category\": {\n                \"name\": \"Accessories & Sunglasses\",\n                \"slug\": \"women/accessories-sunglasses\"\n            },\n            \"quote\": \"<p>Save almost 30% and get free shipping with our exclusive code!</p>\",\n            \"shipped_price\": \"20.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-08-02T11:34:00.000-04:00\",\n            \"teaser_headline\": \"$20 100pk Masks\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTgxOTIsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/458192?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/367827/deal_310x310/100pk-masks.jpeg\\\"><p class=\\\"bd-deal-title\\\">100pk Disposable Masks $20 Shipped</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Maud's\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Drinks\",\n                    \"slug\": \"food-drink/drinks\"\n                },\n                {\n                    \"name\": \"Groceries & Snacks\",\n                    \"slug\": \"food-drink/groceries-snacks\"\n                },\n                {\n                    \"name\": \"Food & Drink\",\n                    \"slug\": \"food-drink\"\n                }\n            ],\n            \"description_preview\": \"These 100-count boxes of coffee pods were already reduced to $39, but you can get a box for $30 w...\",\n            \"editor\": \"Julie\",\n            \"expires_at\": \"2020-08-07T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Free Shipping\",\n                \"All-Star Deal (assigned only)\",\n                \"Proofread by Kiran\"\n            ],\n            \"headline\": \"100ct Coffee Pods $30 Shipped\",\n            \"id\": 458046,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_160x160/coffee-pods-keurig-k-cup.png\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_88x88/coffee-pods-keurig-k-cup.png\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_160x160/coffee-pods-keurig-k-cup.png\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_310x310/coffee-pods-keurig-k-cup.png\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/458046?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 5224,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_125x40/Intelligent_Blends.jpg\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_100x32/Intelligent_Blends.jpg\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_125x40/Intelligent_Blends.jpg\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_250x80/Intelligent_Blends.jpg\"\n                },\n                \"name\": \"Intelligent Blends\",\n                \"slug\": \"intelligent-blends\"\n            },\n            \"msrp\": \"45.00\",\n            \"price\": \"30.00\",\n            \"primary_category\": {\n                \"name\": \"Drinks\",\n                \"slug\": \"food-drink/drinks\"\n            },\n            \"quote\": \"<p>Choose from 11 popular blends, including dark roast and decaf options.</p>\",\n            \"shipped_price\": \"30.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-07-31T10:12:00.000-04:00\",\n            \"teaser_headline\": \"$30 100ct Coffee Pods\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTgwNDYsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/458046?utm_source=1&c_id=1&s=Direct|1|Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/363852/deal_310x310/coffee-pods-keurig-k-cup.png\\\"><p class=\\\"bd-deal-title\\\">100ct Coffee Pods $30 Shipped</p></a></div>\"\n        }\n    ]\n}"},{"id":"589cfe64-6942-46b5-81ca-4c3a8f4182a1","name":"Fetch deals","originalRequest":{"method":"GET","header":[{"description":"API Key (required)","key":"X-Api-Key","type":"text","value":"{{partners_api_key}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"https://partners.bradsdeals.com/api/v1/deals?partner_id=1","protocol":"https","host":["partners","bradsdeals","com"],"path":["api","v1","deals"],"query":[{"key":"partner_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"12423"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 03 Aug 2020 19:49:44 GMT"},{"key":"x-amzn-RequestId","value":"1d7b1da8-407f-44c4-804d-de665891644e"},{"key":"x-amz-apigw-id","value":"QtWNxE76IAMFX6w="},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f286a58-e81081a8f9953a6662c04769"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 47c0295005ec7d8570406951491004c3.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C3"},{"key":"X-Amz-Cf-Id","value":"FVRIHHqitPDBMDCTtHuFE2-uQYf5q5I6GjfPZ2cMPv-MZQGu57dY4Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"deals\": [\n        {\n            \"brands\": [\n                \"Easy Canvas Prints\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Art & Accessories\",\n                    \"slug\": \"home/art-accessories\"\n                },\n                {\n                    \"name\": \"Home\",\n                    \"slug\": \"home\"\n                }\n            ],\n            \"description_preview\": \"Exclusively for our readers, this 11\\\" x 14\\\" Standard Wrapped Canvas, regularly $108.55, drops to ...\",\n            \"editor\": \"Lindsay\",\n            \"expires_at\": \"2020-08-09T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Personalized Gifts\",\n                \"Deals Under $25\",\n                \"Deals Under $15\",\n                \"Free Shipping\",\n                \"Deal of the Day (assigned only)\"\n            ],\n            \"headline\": \"11\\\" x 14\\\" Canvas $15 Shipped!\",\n            \"id\": 458225,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_160x160/ecp-11x14-summer-2020-8-3.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_88x88/ecp-11x14-summer-2020-8-3.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_160x160/ecp-11x14-summer-2020-8-3.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/367858/deal_310x310/ecp-11x14-summer-2020-8-3.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/458225?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 2185,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_125x40/2185.gif\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_100x32/2185.gif\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_125x40/2185.gif\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/70607/merchant_250x80/2185.gif\"\n                },\n                \"name\": \"Easy Canvas Prints\",\n                \"slug\": \"easy-canvas-prints\"\n            },\n            \"msrp\": \"108.55\",\n            \"price\": \"14.99\",\n            \"primary_category\": {\n                \"name\": \"Art & Accessories\",\n                \"slug\": \"home/art-accessories\"\n            },\n            \"quote\": \"<p>This matches the lowest price we have seen this year!</p>\",\n            \"shipped_price\": \"14.99\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-08-03T06:35:00.000-04:00\",\n            \"teaser_headline\": \"$15 Custom Canvas\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTgyMjUsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/458225?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/367858/deal_310x310/ecp-11x14-summer-2020-8-3.jpeg\\\"><p class=\\\"bd-deal-title\\\">11\\\" x 14\\\" Canvas $15 Shipped!</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Best Choice Products\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Outdoor Living\",\n                    \"slug\": \"patio-lawn-garden/outdoor-living\"\n                },\n                {\n                    \"name\": \"Patio, Lawn & Garden\",\n                    \"slug\": \"patio-lawn-garden\"\n                }\n            ],\n            \"description_preview\": \"This 12' x 12' Gazebo Canopy with Weighted Bags lists at $454.99 and was already on sale for $249...\",\n            \"editor\": \"Jim\",\n            \"expires_at\": \"2020-08-13T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Free Shipping\",\n                \"All-Star Deal (assigned only)\",\n                \"Proofread by Kiran\"\n            ],\n            \"headline\": \"12' x 12' Canopy + Weights $180 Shipped\",\n            \"id\": 457628,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_160x160/12-x-12-canopy-gazebo.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_88x88/12-x-12-canopy-gazebo.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_160x160/12-x-12-canopy-gazebo.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/358912/deal_310x310/12-x-12-canopy-gazebo.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/457628?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 5320,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_125x40/best_choice_products_logo.jpg\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_100x32/best_choice_products_logo.jpg\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_125x40/best_choice_products_logo.jpg\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/229206/merchant_250x80/best_choice_products_logo.jpg\"\n                },\n                \"name\": \"Best Choice Products\",\n                \"slug\": \"best-choice-products\"\n            },\n            \"msrp\": \"400.00\",\n            \"price\": \"180.00\",\n            \"primary_category\": {\n                \"name\": \"Outdoor Living\",\n                \"slug\": \"patio-lawn-garden/outdoor-living\"\n            },\n            \"quote\": \"<p>That&#39;s the best price we&#39;ve ever seen for this canopy!</p>\",\n            \"shipped_price\": \"180.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-08-03T05:02:00.000-04:00\",\n            \"teaser_headline\": \"$180 Canopy\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTc2MjgsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/457628?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/358912/deal_310x310/12-x-12-canopy-gazebo.jpeg\\\"><p class=\\\"bd-deal-title\\\">12' x 12' Canopy + Weights $180 Shipped</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Under Armour\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Activewear & Swim\",\n                    \"slug\": \"men/activewear-swim\"\n                },\n                {\n                    \"name\": \"Men\",\n                    \"slug\": \"men\"\n                },\n                {\n                    \"name\": \"Activewear & Swim\",\n                    \"slug\": \"women/activewear-swim\"\n                },\n                {\n                    \"name\": \"Bottoms\",\n                    \"slug\": \"women/bottoms\"\n                },\n                {\n                    \"name\": \"Women\",\n                    \"slug\": \"women\"\n                }\n            ],\n            \"description_preview\": \"Add any two of these men's or women's Under Armour Joggers to your cart and apply our exclusive c...\",\n            \"editor\": \"A.J.\",\n            \"expires_at\": \"2020-08-07T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Free Shipping\",\n                \"Deal of the Day (assigned only)\",\n                \"Proofread by Kiran\"\n            ],\n            \"headline\": \"2 Under Armour Joggers $40 Shipped\",\n            \"id\": 457987,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_160x160/ua-joggers.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_88x88/ua-joggers.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_160x160/ua-joggers.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/367634/deal_310x310/ua-joggers.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/457987?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 4969,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_125x40/proozy_logo.png\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_100x32/proozy_logo.png\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_125x40/proozy_logo.png\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/181136/merchant_250x80/proozy_logo.png\"\n                },\n                \"name\": \"Proozy\",\n                \"slug\": \"proozy\"\n            },\n            \"msrp\": \"99.99\",\n            \"price\": \"40.00\",\n            \"primary_category\": {\n                \"name\": \"Activewear & Swim\",\n                \"slug\": \"men/activewear-swim\"\n            },\n            \"quote\": \"<p>This is a $100 value.</p>\",\n            \"shipped_price\": \"40.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-07-31T07:00:00.000-04:00\",\n            \"teaser_headline\": \"2 for $40 UA Joggers\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTc5ODcsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/457987?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/367634/deal_310x310/ua-joggers.jpeg\\\"><p class=\\\"bd-deal-title\\\">2 Under Armour Joggers $40 Shipped</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Generic\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Men's Accessories & Sunglasses\",\n                    \"slug\": \"men/mens-accessories-sunglasses\"\n                },\n                {\n                    \"name\": \"Men\",\n                    \"slug\": \"men\"\n                },\n                {\n                    \"name\": \"Accessories & Sunglasses\",\n                    \"slug\": \"women/accessories-sunglasses\"\n                },\n                {\n                    \"name\": \"Women\",\n                    \"slug\": \"women\"\n                }\n            ],\n            \"description_preview\": \"Exclusively for our readers, this 100-pack of disposable 3-ply masks drops from $29 to $19.99 at ...\",\n            \"editor\": \"Jillian\",\n            \"expires_at\": \"2020-08-06T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Deals Under $25\",\n                \"Free Shipping\"\n            ],\n            \"headline\": \"100pk Disposable Masks $20 Shipped\",\n            \"id\": 458192,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_160x160/100pk-masks.jpeg\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_88x88/100pk-masks.jpeg\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_160x160/100pk-masks.jpeg\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/367827/deal_310x310/100pk-masks.jpeg\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/458192?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 4683,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_125x40/deal_genius.png\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_100x32/deal_genius.png\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_125x40/deal_genius.png\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/140798/merchant_250x80/deal_genius.png\"\n                },\n                \"name\": \"Deal Genius\",\n                \"slug\": \"deal-genius\"\n            },\n            \"msrp\": \"29.00\",\n            \"price\": \"20.00\",\n            \"primary_category\": {\n                \"name\": \"Accessories & Sunglasses\",\n                \"slug\": \"women/accessories-sunglasses\"\n            },\n            \"quote\": \"<p>Save almost 30% and get free shipping with our exclusive code!</p>\",\n            \"shipped_price\": \"20.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-08-02T11:34:00.000-04:00\",\n            \"teaser_headline\": \"$20 100pk Masks\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTgxOTIsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/458192?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/367827/deal_310x310/100pk-masks.jpeg\\\"><p class=\\\"bd-deal-title\\\">100pk Disposable Masks $20 Shipped</p></a></div>\"\n        },\n        {\n            \"brands\": [\n                \"Maud's\"\n            ],\n            \"categories\": [\n                {\n                    \"name\": \"Drinks\",\n                    \"slug\": \"food-drink/drinks\"\n                },\n                {\n                    \"name\": \"Groceries & Snacks\",\n                    \"slug\": \"food-drink/groceries-snacks\"\n                },\n                {\n                    \"name\": \"Food & Drink\",\n                    \"slug\": \"food-drink\"\n                }\n            ],\n            \"description_preview\": \"These 100-count boxes of coffee pods were already reduced to $39, but you can get a box for $30 w...\",\n            \"editor\": \"Julie\",\n            \"expires_at\": \"2020-08-07T23:59:00.000-04:00\",\n            \"flags\": [\n                \"Exclusive Collection\",\n                \"Free Shipping\",\n                \"All-Star Deal (assigned only)\",\n                \"Proofread by Kiran\"\n            ],\n            \"headline\": \"100ct Coffee Pods $30 Shipped\",\n            \"id\": 458046,\n            \"image\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_160x160/coffee-pods-keurig-k-cup.png\",\n            \"image_urls\": {\n                \"88x88\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_88x88/coffee-pods-keurig-k-cup.png\",\n                \"160x160\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_160x160/coffee-pods-keurig-k-cup.png\",\n                \"310x310\": \"https://cdn-images.bradsdeals.com/prod/363852/deal_310x310/coffee-pods-keurig-k-cup.png\"\n            },\n            \"link\": \"https://www.bradsdeals.com/p/458046?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\",\n            \"merchant\": {\n                \"id\": 5224,\n                \"logo\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_125x40/Intelligent_Blends.jpg\",\n                \"logo_urls\": {\n                    \"100x32\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_100x32/Intelligent_Blends.jpg\",\n                    \"125x40\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_125x40/Intelligent_Blends.jpg\",\n                    \"250x80\": \"https://cdn-images.bradsdeals.com/prod/275824/merchant_250x80/Intelligent_Blends.jpg\"\n                },\n                \"name\": \"Intelligent Blends\",\n                \"slug\": \"intelligent-blends\"\n            },\n            \"msrp\": \"45.00\",\n            \"price\": \"30.00\",\n            \"primary_category\": {\n                \"name\": \"Drinks\",\n                \"slug\": \"food-drink/drinks\"\n            },\n            \"quote\": \"<p>Choose from 11 popular blends, including dark roast and decaf options.</p>\",\n            \"shipped_price\": \"30.00\",\n            \"shipping_cost\": \"0.00\",\n            \"starts_at\": \"2020-07-31T10:12:00.000-04:00\",\n            \"teaser_headline\": \"$30 100ct Coffee Pods\",\n            \"tracking_pixel\": \"http://eventlog.bradsdeals.com/e.gif?d=eyJpdGVtX2lkIjo0NTgwNDYsImV2ZW50IjoiaW1wcmVzc2lvbiIsIml0ZW1fdHlwZSI6InAiLCJjaGFubmVsIjoic3luZGljYXRpb24ifQ==\",\n            \"html\": \"<div class=\\\"bd-deal\\\"><a target=\\\"_blank\\\" href=\\\"https://www.bradsdeals.com/p/458046?utm_source=&c_id=&s=Direct||Syndication|DealFeed&utm_campaign=syndication&utm_medium=partners&utm_content=dealfeed&channel=syndication\\\"><img class=\\\"bd-deal-image\\\" src=\\\"https://cdn-images.bradsdeals.com/prod/363852/deal_310x310/coffee-pods-keurig-k-cup.png\\\"><p class=\\\"bd-deal-title\\\">100ct Coffee Pods $30 Shipped</p></a></div>\"\n        }\n    ]\n}"},{"id":"71fd2c68-8ff0-4f99-beec-17277d2b5353","name":"No API key found","originalRequest":{"method":"GET","header":[{"description":"API Key (required)","key":"X-Api-Key","type":"text","value":""},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://partners.bradsdeals.com/api/v1/deals"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"23"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 03 Aug 2020 19:52:20 GMT"},{"key":"x-amzn-RequestId","value":"328624e8-b866-48e8-8774-d70583d3eeb8"},{"key":"x-amzn-ErrorType","value":"ForbiddenException"},{"key":"x-amz-apigw-id","value":"QtWmNFiUoAMFyXw="},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 47c0295005ec7d8570406951491004c3.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C3"},{"key":"X-Amz-Cf-Id","value":"2w24uzNLPvNmttxtuPd-m4Cp08jbxDnupIn3cYkv7CUn37zVdICcrg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Forbidden\"\n}"}],"_postman_id":"27ff74b4-89ed-4cac-a159-89cbf05b4e8b"},{"name":"/api/v1/categories","id":"98e5ff39-fe39-4061-8d6f-c49fea281d65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://partners.bradsdeals.com/api/v1/categories","description":"<p>Get a list of Brad's Deals categories and associated category slugs.  </p>\n<h2 id=\"category-model\">Category Model</h2>\n<p>Categories are represented with a two level taxonomy.  Top level categories such as Men, Women, and Electronics are our main category types.  The slugs of these top level categories do not have a sub level slug associated with them.  For example the top category Electronics has the slug of 'electronics'. </p>\n<p>These top level categories are divided into their sub level categories.  The slugs of these sub categories also will include their top level category.  For example the Men's Activewear and Swim category's slug is <code>men/activewear-swim</code></p>\n<p>Deals are classified under at least one category but can also be classified under many categories such as a deal for multiple types of products.  For example a deal on shoes can be classified under Women's Athletic Shoes or Men's Athletic Shoes.  Deal categories are represented in an array of the categories that they belong to under the categories field. </p>\n<p>In addition to the deal's categories, a deal has one primary category which is a specific sub level category that best represents the deal.</p>\n<h2 id=\"category-model-fields\">Category Model Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>Name of top level category or sub level category: Ex: <code>Electronics</code>, <code>Audio &amp; Speakers</code></td>\n</tr>\n<tr>\n<td>slug</td>\n<td>Slug of category.  Can be used to filter the deals endpoint.  Ex: <code>electronics</code>, <code>electronics/audio-speakers</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"headers\">Headers</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>x-api-key</td>\n<td><strong>required</strong>  Unique API token issued to partners.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"responses\">Responses</h2>\n<p>The endpoint returns a JSON response with a '200 Ok' status code.</p>\n<h2 id=\"response-fields\">Response Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>categories</td>\n<td>An array of category objects containing a <code>name</code> field for the category name and a <code>slug</code> field for the slug of the category.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","categories"],"host":["partners","bradsdeals","com"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"8088d0aa-42c5-428f-9d05-1c01f4ec6570","name":"/api/v1/categories","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://partners.bradsdeals.com/api/v1/categories","protocol":"https","host":["partners","bradsdeals","com"],"path":["api","v1","categories"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"11204"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 30 Jul 2020 21:14:38 GMT"},{"key":"x-amzn-RequestId","value":"356ac2fe-0b15-4201-b599-13063914ca7e"},{"key":"x-amz-apigw-id","value":"QgW5qFu8oAMFV4g="},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f23383d-1e892b0be0881c9b368a6739;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e89d95d090c0c86ecc7b8930e434625d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C3"},{"key":"X-Amz-Cf-Id","value":"lMD_ZjVw7J3WXLU96vR7rOMW2idbxRNRJXvSiG95a9VpcMVZBYYqrQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"categories\": [\n        {\n            \"name\": \"Accessories & Sunglasses\",\n            \"slug\": \"women/accessories-sunglasses\"\n        },\n        {\n            \"name\": \"Activewear & Swim\",\n            \"slug\": \"women/activewear-swim\"\n        },\n        {\n            \"name\": \"Activewear & Swim\",\n            \"slug\": \"men/activewear-swim\"\n        },\n        {\n            \"name\": \"Appliances\",\n            \"slug\": \"home/appliances\"\n        },\n        {\n            \"name\": \"Art & Accessories\",\n            \"slug\": \"home/art-accessories\"\n        },\n        {\n            \"name\": \"Audio & Speakers\",\n            \"slug\": \"electronics/audio-speakers\"\n        },\n        {\n            \"name\": \"Auto Insurance\",\n            \"slug\": \"insurance/auto-insurance\"\n        },\n        {\n            \"name\": \"Automotive\",\n            \"slug\": \"tools-diy-supplies/automotive\"\n        },\n        {\n            \"name\": \"Baby Boys' Clothing\",\n            \"slug\": \"kids-baby/baby-boys-clothing\"\n        },\n        {\n            \"name\": \"Baby Girls' Clothing\",\n            \"slug\": \"kids-baby/baby-girls-clothing\"\n        },\n        {\n            \"name\": \"Baby Supplies & Gear\",\n            \"slug\": \"kids-baby/baby-supplies-gear\"\n        },\n        {\n            \"name\": \"Bath & Body\",\n            \"slug\": \"health-beauty/bath-body\"\n        },\n        {\n            \"name\": \"Bath Towels & Accessories\",\n            \"slug\": \"home/bath-towels-accessories\"\n        },\n        {\n            \"name\": \"Bedding\",\n            \"slug\": \"home/bedding\"\n        },\n        {\n            \"name\": \"Bedroom Furniture\",\n            \"slug\": \"home/bedroom-furniture\"\n        },\n        {\n            \"name\": \"Big Boys' Clothing\",\n            \"slug\": \"kids-baby/big-boys-clothing\"\n        },\n        {\n            \"name\": \"Big Girls' Clothing\",\n            \"slug\": \"kids-baby/big-girls-clothing\"\n        },\n        {\n            \"name\": \"Books & Magazines\",\n            \"slug\": \"entertainment/books-magazines\"\n        },\n        {\n            \"name\": \"Bottoms\",\n            \"slug\": \"women/bottoms\"\n        },\n        {\n            \"name\": \"Boys' Shoes\",\n            \"slug\": \"shoes/boys-shoes\"\n        },\n        {\n            \"name\": \"Boys' Sneakers & Athletic Shoes\",\n            \"slug\": \"shoes/boys-sneakers-athletic-shoes\"\n        },\n        {\n            \"name\": \"Business Credit Cards\",\n            \"slug\": \"credit-cards/business-credit-cards\"\n        },\n        {\n            \"name\": \"Cable & Internet Services\",\n            \"slug\": \"entertainment/cable-internet-services\"\n        },\n        {\n            \"name\": \"Cameras & DSLRs\",\n            \"slug\": \"electronics/cameras-dslrs\"\n        },\n        {\n            \"name\": \"Cashback Cards\",\n            \"slug\": \"credit-cards/cashback-cards\"\n        },\n        {\n            \"name\": \"Chargers, Cables & Accessories\",\n            \"slug\": \"electronics/chargers-cables-accessories\"\n        },\n        {\n            \"name\": \"Checks\",\n            \"slug\": \"office-education/checks\"\n        },\n        {\n            \"name\": \"Computer Accessories & Peripherals\",\n            \"slug\": \"electronics/computer-accessories-peripherals\"\n        },\n        {\n            \"name\": \"Cosmetics & Facial Care\",\n            \"slug\": \"health-beauty/cosmetics-facial-care\"\n        },\n        {\n            \"name\": \"Craft, Hobby & Party Supplies\",\n            \"slug\": \"entertainment/craft-hobby-party-supplies\"\n        },\n        {\n            \"name\": \"Credit Cards\",\n            \"slug\": \"credit-cards\"\n        },\n        {\n            \"name\": \"Credit Cards for Bad Credit\",\n            \"slug\": \"credit-cards/credit-cards-for-bad-credit\"\n        },\n        {\n            \"name\": \"Cruises & Vacation Packages\",\n            \"slug\": \"travel/cruises-vacation-packages\"\n        },\n        {\n            \"name\": \"Dental Care\",\n            \"slug\": \"health-beauty/dental-care\"\n        },\n        {\n            \"name\": \"Department Store Gift Cards\",\n            \"slug\": \"gifts/department-store-gift-cards\"\n        },\n        {\n            \"name\": \"Desktops\",\n            \"slug\": \"electronics/desktops\"\n        },\n        {\n            \"name\": \"Dining & Entertaining\",\n            \"slug\": \"home/dining-entertaining\"\n        },\n        {\n            \"name\": \"Dresses\",\n            \"slug\": \"women/dresses\"\n        },\n        {\n            \"name\": \"Drinks\",\n            \"slug\": \"food-drink/drinks\"\n        },\n        {\n            \"name\": \"Edible Gifts\",\n            \"slug\": \"gifts/edible-gifts\"\n        },\n        {\n            \"name\": \"Education\",\n            \"slug\": \"office-education/education\"\n        },\n        {\n            \"name\": \"Electronics\",\n            \"slug\": \"electronics\"\n        },\n        {\n            \"name\": \"Electronics Gift Cards\",\n            \"slug\": \"gifts/electronics-gift-cards\"\n        },\n        {\n            \"name\": \"Engagement Rings\",\n            \"slug\": \"jewelry-watches/engagement-rings\"\n        },\n        {\n            \"name\": \"Entertainment\",\n            \"slug\": \"entertainment\"\n        },\n        {\n            \"name\": \"Entertainment Consoles\",\n            \"slug\": \"home/entertainment-consoles\"\n        },\n        {\n            \"name\": \"E-Readers\",\n            \"slug\": \"electronics/e-readers\"\n        },\n        {\n            \"name\": \"E-Toys\",\n            \"slug\": \"electronics/e-toys\"\n        },\n        {\n            \"name\": \"Financial Services\",\n            \"slug\": \"office-education/financial-services\"\n        },\n        {\n            \"name\": \"Fitness Equipment\",\n            \"slug\": \"sports-fitness-camping/fitness-equipment\"\n        },\n        {\n            \"name\": \"Fitness Trackers\",\n            \"slug\": \"electronics/fitness-trackers\"\n        },\n        {\n            \"name\": \"Flight Deals\",\n            \"slug\": \"travel/flight-deals\"\n        },\n        {\n            \"name\": \"Floorcare, Cooling & Heating\",\n            \"slug\": \"home/floorcare-cooling-heating\"\n        },\n        {\n            \"name\": \"Flowers\",\n            \"slug\": \"gifts/flowers\"\n        },\n        {\n            \"name\": \"Food & Drink\",\n            \"slug\": \"food-drink\"\n        },\n        {\n            \"name\": \"Food Gift Cards\",\n            \"slug\": \"gifts/food-gift-cards\"\n        },\n        {\n            \"name\": \"Game Consoles\",\n            \"slug\": \"electronics/game-consoles\"\n        },\n        {\n            \"name\": \"Gardening\",\n            \"slug\": \"patio-lawn-garden/gardening\"\n        },\n        {\n            \"name\": \"General Household Supplies\",\n            \"slug\": \"home/general-household-supplies\"\n        },\n        {\n            \"name\": \"General Store Gift Cards\",\n            \"slug\": \"gifts/general-store-gift-cards\"\n        },\n        {\n            \"name\": \"Gifts\",\n            \"slug\": \"gifts\"\n        },\n        {\n            \"name\": \"Girls' Shoes\",\n            \"slug\": \"shoes/girls-shoes\"\n        },\n        {\n            \"name\": \"Girls' Sneakers & Athletic Shoes\",\n            \"slug\": \"shoes/girls-sneakers-athletic-shoes\"\n        },\n        {\n            \"name\": \"Groceries & Snacks\",\n            \"slug\": \"food-drink/groceries-snacks\"\n        },\n        {\n            \"name\": \"Hair Care\",\n            \"slug\": \"health-beauty/hair-care\"\n        },\n        {\n            \"name\": \"Handbags\",\n            \"slug\": \"women/handbags\"\n        },\n        {\n            \"name\": \"Hand Tools\",\n            \"slug\": \"tools-diy-supplies/hand-tools\"\n        },\n        {\n            \"name\": \"Headphones\",\n            \"slug\": \"electronics/headphones\"\n        },\n        {\n            \"name\": \"Health & Beauty\",\n            \"slug\": \"health-beauty\"\n        },\n        {\n            \"name\": \"Health Insurance\",\n            \"slug\": \"insurance/health-insurance\"\n        },\n        {\n            \"name\": \"Health Offers\",\n            \"slug\": \"insurance/health-offers\"\n        },\n        {\n            \"name\": \"Home\",\n            \"slug\": \"home\"\n        },\n        {\n            \"name\": \"Home Gift Cards\",\n            \"slug\": \"gifts/home-gift-cards\"\n        },\n        {\n            \"name\": \"Home Health Care\",\n            \"slug\": \"health-beauty/home-health-care\"\n        },\n        {\n            \"name\": \"Home Improvement Services\",\n            \"slug\": \"tools-diy-supplies/home-improvement-services\"\n        },\n        {\n            \"name\": \"Home Improvement Supplies\",\n            \"slug\": \"tools-diy-supplies/home-improvement-supplies\"\n        },\n        {\n            \"name\": \"Home Insurance\",\n            \"slug\": \"insurance/home-insurance\"\n        },\n        {\n            \"name\": \"Home Office Furniture\",\n            \"slug\": \"home/home-office-furniture\"\n        },\n        {\n            \"name\": \"Home Theater\",\n            \"slug\": \"electronics/home-theater\"\n        },\n        {\n            \"name\": \"Home Theater Cables & Accessories\",\n            \"slug\": \"electronics/home-theater-cables-accessories\"\n        },\n        {\n            \"name\": \"Hotel Deals\",\n            \"slug\": \"travel/hotel-deals\"\n        },\n        {\n            \"name\": \"Ink & Toner\",\n            \"slug\": \"office-education/ink-toner\"\n        },\n        {\n            \"name\": \"Insurance\",\n            \"slug\": \"insurance\"\n        },\n        {\n            \"name\": \"Intimates & Sleepwear\",\n            \"slug\": \"women/intimates-sleepwear\"\n        },\n        {\n            \"name\": \"iPods & MP3 Players\",\n            \"slug\": \"electronics/ipods-mp3-players\"\n        },\n        {\n            \"name\": \"Jeans & Pants\",\n            \"slug\": \"men/jeans-pants\"\n        },\n        {\n            \"name\": \"Jewelry & Watches\",\n            \"slug\": \"jewelry-watches\"\n        },\n        {\n            \"name\": \"Kids' Accessories\",\n            \"slug\": \"kids-baby/kids-accessories\"\n        },\n        {\n            \"name\": \"Kids & Baby\",\n            \"slug\": \"kids-baby\"\n        },\n        {\n            \"name\": \"Kitchen & Dining Room Furniture\",\n            \"slug\": \"home/kitchen-dining-room-furniture\"\n        },\n        {\n            \"name\": \"Kitchenware & Essentials\",\n            \"slug\": \"home/kitchenware-essentials\"\n        },\n        {\n            \"name\": \"Laptop Bags & Briefcases\",\n            \"slug\": \"office-education/laptop-bags-briefcases\"\n        },\n        {\n            \"name\": \"Laptops\",\n            \"slug\": \"electronics/laptops\"\n        },\n        {\n            \"name\": \"Lawn Care & Landscaping Tools\",\n            \"slug\": \"patio-lawn-garden/lawn-care-landscaping-tools\"\n        },\n        {\n            \"name\": \"Life Insurance\",\n            \"slug\": \"insurance/life-insurance\"\n        },\n        {\n            \"name\": \"Lighting & Fans\",\n            \"slug\": \"home/lighting-fans\"\n        },\n        {\n            \"name\": \"Living Room Furniture\",\n            \"slug\": \"home/living-room-furniture\"\n        },\n        {\n            \"name\": \"Low APR Cards\",\n            \"slug\": \"credit-cards/low-apr-cards\"\n        },\n        {\n            \"name\": \"Luggage & Travel Accessories\",\n            \"slug\": \"home/luggage-travel-accessories\"\n        },\n        {\n            \"name\": \"Meal Plans\",\n            \"slug\": \"food-drink/meal-plans\"\n        },\n        {\n            \"name\": \"Memory Cards & Camera Accessories\",\n            \"slug\": \"electronics/memory-cards-camera-accessories\"\n        },\n        {\n            \"name\": \"Men\",\n            \"slug\": \"men\"\n        },\n        {\n            \"name\": \"Men's Accessories & Sunglasses\",\n            \"slug\": \"men/mens-accessories-sunglasses\"\n        },\n        {\n            \"name\": \"Men's Athletic Shoes\",\n            \"slug\": \"shoes/mens-athletic-shoes\"\n        },\n        {\n            \"name\": \"Men's Boots\",\n            \"slug\": \"shoes/mens-boots\"\n        },\n        {\n            \"name\": \"Men's Casual Shoes\",\n            \"slug\": \"shoes/mens-casual-shoes\"\n        },\n        {\n            \"name\": \"Men's Dress Shoes\",\n            \"slug\": \"shoes/mens-dress-shoes\"\n        },\n        {\n            \"name\": \"Men's Fragrance\",\n            \"slug\": \"health-beauty/mens-fragrance\"\n        },\n        {\n            \"name\": \"Men's Watches & Jewelry\",\n            \"slug\": \"jewelry-watches/mens-watches-jewelry\"\n        },\n        {\n            \"name\": \"Miscellaneous Insurance\",\n            \"slug\": \"insurance/miscellaneous-insurance\"\n        },\n        {\n            \"name\": \"Movies\",\n            \"slug\": \"entertainment/movies\"\n        },\n        {\n            \"name\": \"Nutrition, Vitamins & Supplements\",\n            \"slug\": \"health-beauty/nutrition-vitamins-supplements\"\n        },\n        {\n            \"name\": \"Office & Education\",\n            \"slug\": \"office-education\"\n        },\n        {\n            \"name\": \"Office Supplies\",\n            \"slug\": \"office-education/office-supplies\"\n        },\n        {\n            \"name\": \"Organizers, Containers & Laundry\",\n            \"slug\": \"home/organizers-containers-laundry\"\n        },\n        {\n            \"name\": \"Outdoor Camping Gear\",\n            \"slug\": \"sports-fitness-camping/outdoor-camping-gear\"\n        },\n        {\n            \"name\": \"Outdoor Fun\",\n            \"slug\": \"patio-lawn-garden/outdoor-fun\"\n        },\n        {\n            \"name\": \"Outdoor Living\",\n            \"slug\": \"patio-lawn-garden/outdoor-living\"\n        },\n        {\n            \"name\": \"Outerwear\",\n            \"slug\": \"women/outerwear\"\n        },\n        {\n            \"name\": \"Outerwear\",\n            \"slug\": \"men/outerwear\"\n        },\n        {\n            \"name\": \"Paper Goods & Cleaning Supplies\",\n            \"slug\": \"home/paper-goods-cleaning-supplies\"\n        },\n        {\n            \"name\": \"Patio, Lawn & Garden\",\n            \"slug\": \"patio-lawn-garden\"\n        },\n        {\n            \"name\": \"Pet Food & Health\",\n            \"slug\": \"pets/pet-food-health\"\n        },\n        {\n            \"name\": \"Pet Insurance\",\n            \"slug\": \"insurance/pet-insurance\"\n        },\n        {\n            \"name\": \"Pets\",\n            \"slug\": \"pets\"\n        },\n        {\n            \"name\": \"Pet Supplies\",\n            \"slug\": \"pets/pet-supplies\"\n        },\n        {\n            \"name\": \"Phone Services & Data Plans\",\n            \"slug\": \"electronics/phone-services-data-plans\"\n        },\n        {\n            \"name\": \"Power Tools\",\n            \"slug\": \"tools-diy-supplies/power-tools\"\n        },\n        {\n            \"name\": \"Prescription Glasses & Contacts\",\n            \"slug\": \"health-beauty/prescription-glasses-contacts\"\n        },\n        {\n            \"name\": \"Printers, Scanners, Fax & All-in-One\",\n            \"slug\": \"electronics/printers-scanners-fax-all-in-one\"\n        },\n        {\n            \"name\": \"Rental Cars & Ground Transport\",\n            \"slug\": \"travel/rental-cars-ground-transport\"\n        },\n        {\n            \"name\": \"Restaurants\",\n            \"slug\": \"entertainment/restaurants\"\n        },\n        {\n            \"name\": \"Rewards Cards\",\n            \"slug\": \"credit-cards/rewards-cards\"\n        },\n        {\n            \"name\": \"School Supplies\",\n            \"slug\": \"office-education/school-supplies\"\n        },\n        {\n            \"name\": \"Security & Surveillance\",\n            \"slug\": \"electronics/security-surveillance\"\n        },\n        {\n            \"name\": \"Shaving & Grooming\",\n            \"slug\": \"health-beauty/shaving-grooming\"\n        },\n        {\n            \"name\": \"Shelving\",\n            \"slug\": \"home/shelving\"\n        },\n        {\n            \"name\": \"Shirts & Tops\",\n            \"slug\": \"men/shirts-tops\"\n        },\n        {\n            \"name\": \"Shoes\",\n            \"slug\": \"shoes\"\n        },\n        {\n            \"name\": \"Small Kitchen Appliances\",\n            \"slug\": \"home/small-kitchen-appliances\"\n        },\n        {\n            \"name\": \"Smart Home\",\n            \"slug\": \"electronics/smart-home\"\n        },\n        {\n            \"name\": \"Smart Phones & Watches\",\n            \"slug\": \"electronics/smart-phones-watches\"\n        },\n        {\n            \"name\": \"Sports Equipment\",\n            \"slug\": \"sports-fitness-camping/sports-equipment\"\n        },\n        {\n            \"name\": \"Sports, Fitness & Camping\",\n            \"slug\": \"sports-fitness-camping\"\n        },\n        {\n            \"name\": \"Sterling Silver & Gold Jewelry\",\n            \"slug\": \"jewelry-watches/sterling-silver-gold-jewelry\"\n        },\n        {\n            \"name\": \"Storage Solutions\",\n            \"slug\": \"tools-diy-supplies/storage-solutions\"\n        },\n        {\n            \"name\": \"Student Cards\",\n            \"slug\": \"credit-cards/student-cards\"\n        },\n        {\n            \"name\": \"Suits\",\n            \"slug\": \"men/suits\"\n        },\n        {\n            \"name\": \"Tablets\",\n            \"slug\": \"electronics/tablets\"\n        },\n        {\n            \"name\": \"Throw Pillows & Rugs\",\n            \"slug\": \"home/throw-pillows-rugs\"\n        },\n        {\n            \"name\": \"Tickets & Events\",\n            \"slug\": \"entertainment/tickets-events\"\n        },\n        {\n            \"name\": \"Toddler Boys' Clothing\",\n            \"slug\": \"kids-baby/toddler-boys-clothing\"\n        },\n        {\n            \"name\": \"Toddler Girls' Clothing\",\n            \"slug\": \"kids-baby/toddler-girls-clothing\"\n        },\n        {\n            \"name\": \"Tools & DIY Supplies\",\n            \"slug\": \"tools-diy-supplies\"\n        },\n        {\n            \"name\": \"Tops\",\n            \"slug\": \"women/tops\"\n        },\n        {\n            \"name\": \"Toys\",\n            \"slug\": \"kids-baby/toys\"\n        },\n        {\n            \"name\": \"Travel\",\n            \"slug\": \"travel\"\n        },\n        {\n            \"name\": \"Travel Insurance\",\n            \"slug\": \"insurance/travel-insurance\"\n        },\n        {\n            \"name\": \"Travel Rewards Cards\",\n            \"slug\": \"credit-cards/travel-rewards-cards\"\n        },\n        {\n            \"name\": \"TVs\",\n            \"slug\": \"electronics/tvs\"\n        },\n        {\n            \"name\": \"Underwear & Sleep\",\n            \"slug\": \"men/underwear-sleep\"\n        },\n        {\n            \"name\": \"Video Camcorders\",\n            \"slug\": \"electronics/video-camcorders\"\n        },\n        {\n            \"name\": \"Video Game Accessories\",\n            \"slug\": \"electronics/video-game-accessories\"\n        },\n        {\n            \"name\": \"Video Games\",\n            \"slug\": \"electronics/video-games\"\n        },\n        {\n            \"name\": \"Window Coverings\",\n            \"slug\": \"home/window-coverings\"\n        },\n        {\n            \"name\": \"Wine\",\n            \"slug\": \"food-drink/wine\"\n        },\n        {\n            \"name\": \"Women\",\n            \"slug\": \"women\"\n        },\n        {\n            \"name\": \"Women's Athletic Shoes\",\n            \"slug\": \"shoes/womens-athletic-shoes\"\n        },\n        {\n            \"name\": \"Women's Boots\",\n            \"slug\": \"shoes/womens-boots\"\n        },\n        {\n            \"name\": \"Women's Comfort Shoes\",\n            \"slug\": \"shoes/womens-comfort-shoes\"\n        },\n        {\n            \"name\": \"Women's Flats\",\n            \"slug\": \"shoes/womens-flats\"\n        },\n        {\n            \"name\": \"Women's Fragrance\",\n            \"slug\": \"health-beauty/womens-fragrance\"\n        },\n        {\n            \"name\": \"Women's Heels\",\n            \"slug\": \"shoes/womens-heels\"\n        },\n        {\n            \"name\": \"Women's Jewelry\",\n            \"slug\": \"jewelry-watches/womens-jewelry\"\n        },\n        {\n            \"name\": \"Women's Sandals\",\n            \"slug\": \"shoes/womens-sandals\"\n        },\n        {\n            \"name\": \"Women's Watches\",\n            \"slug\": \"jewelry-watches/womens-watches\"\n        }\n    ]\n}"}],"_postman_id":"98e5ff39-fe39-4061-8d6f-c49fea281d65"}],"event":[{"listen":"prerequest","script":{"id":"266b60f8-8c4b-4f83-abb4-5780483e83ff","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1b9d2d7c-b1c3-4cc1-b26e-a0ebf33563e2","type":"text/javascript","exec":[""]}}]}