Discover/slickdeals.net API
live

slickdeals.net APIslickdeals.net

Access frontpage deals, trending bargains, promo codes, forum threads, and deal details from Slickdeals.net via a structured JSON API.

Endpoints
6
Updated
10d ago
Try it
If true, includes a plain-text email summary of the top 10 deals in the response
Filter to only include deals with a numeric price below this value
api.parse.bot/scraper/6028c288-28e1-44ff-8d02-2d1cfa1d37f7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/6028c288-28e1-44ff-8d02-2d1cfa1d37f7/get_deals' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Extract current frontpage deals from Slickdeals. Returns an array of deal objects with title, price, store, votes, and other metadata. Optionally filters by price threshold and formats results as email text.

Input
ParamTypeDescription
format_emailbooleanIf true, includes a plain-text email summary of the top 10 deals in the response
price_thresholdnumberFilter to only include deals with a numeric price below this value
Response
{
  "type": "object",
  "fields": {
    "deals": "array of deal objects with threadId, title, price, originalPrice, discount, store, url, votes, comments, isExpired, datePosted, imageUrl, category, isPopular, isFire",
    "email_text": "string containing formatted email text of top 10 deals (only present when format_email=true)"
  },
  "sample": {
    "data": {
      "deals": [
        {
          "url": "https://slickdeals.net/f/19469526-10-piece-duratech-ratcheting-wrench-set-combination-wrench-set-metric-6-18mm-cr-v-steel-with-pouch-23-55-free-shipping-w-prime-or-on-35?src=frontpage&attrsrc=Frontpage%3AType%3AMissed",
          "price": "$24",
          "store": "Amazon",
          "title": "10-Pc DURATECH Ratcheting Combination Metric Wrench Set (6-18mm)",
          "votes": 16,
          "isFire": false,
          "category": null,
          "comments": 9,
          "discount": 38,
          "imageUrl": "https://static.slickdealscdn.com/attachment/3/7/4/7/9/3/450x450/20241300.thumb",
          "threadId": 19469526,
          "isExpired": true,
          "isPopular": true,
          "datePosted": "2026-04-29T22:51:17-07:00",
          "originalPrice": "$38"
        }
      ]
    },
    "status": "success"
  }
}

About the slickdeals.net API

The Slickdeals API exposes 6 endpoints covering frontpage deals, surging bargains, coupons, forum threads, keyword search, and individual deal detail pages. The get_deals endpoint returns an array of deal objects with fields like threadId, price, originalPrice, discount, store, votes, and isExpired, giving structured access to the community-voted deals Slickdeals surfaces daily across hundreds of retailers.

Frontpage and Trending Deals

The get_deals endpoint returns current frontpage deals with up to 15 fields per object, including title, price, originalPrice, discount, store, votes, comments, isExpired, and datePosted. Two optional parameters control output: price_threshold filters the array to deals below a numeric price, and format_email adds a pre-formatted plain-text summary of the top 10 deals as an email_text string in the response. The get_surging_deals endpoint returns a separate trending feed — the "Just For You" carousel — with the same object shape, including fire/popular flags and discount percentages useful for identifying fast-moving deals.

Search, Coupons, and Forums

The search endpoint accepts a required query string and an optional page integer for pagination. Results include title, price, store, and url per entry. Note that results may contain both deal entries and related comment entries sharing the same URL, so deduplication by URL may be necessary. The get_coupons endpoint returns featured promo codes from the Slickdeals frontpage, each with id, title, code, discount, views, storeUrl, and outclickUrl. The get_forum_deals endpoint retrieves thread listings with title, category, replies, views, and url; currently, only forum_id 9 (Hot Deals) is confirmed to return results.

Deal Detail Pages

The get_details endpoint accepts a full Slickdeals deal URL or a path beginning with /f/ and returns the richest data of any endpoint: title, price, description, author, votes, views, image, date_posted, is_expired, and up to 20 comments objects each containing user and text. This endpoint is suitable for building deal monitoring tools, alert systems, or archiving specific threads for later analysis.

Common use cases
  • Build a daily deal digest email by calling get_deals with format_email=true and delivering the email_text response to a mailing list
  • Track price drops below a target amount using the price_threshold parameter on get_deals to filter relevant deals
  • Monitor fast-moving bargains by polling get_surging_deals for deals with high votes counts and popular/fire flags
  • Create a browser extension that surfaces active promo codes using get_coupons response fields code, discount, and storeUrl
  • Search deals by product category keyword with search and aggregate results by store field to compare retailer pricing
  • Archive community discussion for a specific deal using get_details to capture comments, description, author, and is_expired status
  • Pull Hot Deals forum threads with get_forum_deals to track which deal categories generate the most replies and views
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Slickdeals have an official developer API?+
Slickdeals does not publish a public developer API. There is no documented REST or GraphQL API surface available to third-party developers on their site.
What does `get_details` return that the other endpoints don't?+
The get_details endpoint is the only one that returns description, author, and comments (up to 20, each with user and text). It also returns views, image, and is_expired as a boolean. Other endpoints like get_deals and get_surging_deals return summary-level fields only and do not include per-deal community comments or full description text.
Are forum categories other than Hot Deals accessible via `get_forum_deals`?+
Only forum_id 9 (Hot Deals) is confirmed to return results. Other forum IDs are not currently supported. You can fork this API on Parse and revise it to add support for additional forum IDs once you identify the corresponding values.
Does the `search` endpoint return deal scores or vote counts?+
No. The search endpoint returns title, price, store, and url per result — vote counts and comment counts are not included. Those fields are available on individual deals via get_details. You can fork this API on Parse and revise the search endpoint to enrich results with additional fields.
Can I retrieve historical or expired deals in bulk?+
The API does not currently expose bulk historical deal data. The get_details endpoint includes an is_expired boolean and datePosted for individual deal pages, and get_deals includes isExpired per object, but there is no endpoint for querying past deals by date range or expiration status. You can fork this API on Parse and revise it to add a historical deals endpoint.
Page content last updated . Spec covers 6 endpoints from slickdeals.net.
Related APIs in EcommerceSee all →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
Slickdeals API – Deals, Coupons & Forum Data · Parse