Discover/Slickdeals API
live

Slickdeals APIslickdeals.net

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

Endpoint health
verified 7d ago
get_coupons
search
get_deals
get_forum_deals
get_surging_deals
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Slickdeals 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.

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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/6028c288-28e1-44ff-8d02-2d1cfa1d37f7/get_deals?format_email=True&price_threshold=50' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace slickdeals-net-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.slickdeals_api import Slickdeals, DealSummary, Deal, SearchResult, Coupon, ForumThread

client = Slickdeals()

# Browse trending deals from the recommendation carousel
for deal in client.dealsummaries.trending(limit=5):
    print(deal.title, deal.price, deal.votes, deal.is_fire)

# Get full details for the first trending deal
top_deal = next(iter(client.dealsummaries.trending(limit=1)))
detail = top_deal.details()
print(detail.title, detail.author, detail.views, detail.is_expired)
for comment in detail.comments[:3]:
    print(comment.user, comment.text)

# Search for deals by keyword
for result in client.searchresults.search(query="laptop", limit=10):
    print(result.title, result.price, result.store)

# List current frontpage deals filtered by price
for deal in client.dealsummaries.list(price_threshold=50.0):
    print(deal.title, deal.store, deal.discount, deal.is_popular)

# List featured coupons
for coupon in client.coupons.list():
    print(coupon.title, coupon.code, coupon.discount, coupon.views)

# Browse Hot Deals forum threads
for thread in client.forumthreads.list(forum_id=9, limit=20):
    print(thread.title, thread.category, thread.replies, thread.views)
All endpoints · 6 totalmissing one? ·

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. No pagination; returns all current frontpage deals in a single response.

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 summary 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/19603110-free-chomps-original-beef-stick-ends-july-30-2026",
          "price": "Free",
          "store": "Send Me a Sample",
          "title": "Chomps Chicken Stick Sample (various)",
          "votes": 81,
          "isFire": false,
          "category": null,
          "comments": 24,
          "discount": null,
          "imageUrl": "https://static.slickdealscdn.com/attachment/5/2/4/7/9/450x450/20626125.thumb",
          "threadId": 19603110,
          "isExpired": false,
          "isPopular": true,
          "datePosted": "2026-06-09T01:34:58-07:00",
          "originalPrice": ""
        }
      ]
    },
    "status": "success"
  }
}

About the Slickdeals API

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.

Reliability & maintenanceVerified

The Slickdeals API is a managed, monitored endpoint for slickdeals.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when slickdeals.net changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official slickdeals.net API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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 →
stacksocial.com API
Search and browse deals from StackSocial to find discounts on software, products, and memberships, with access to product details, reviews, and related recommendations. Discover lifetime deals and business software offers across multiple collections.
dealabs.com API
Search and discover the latest deals from Dealabs.com in real-time, filtering by keyword and price. Get instant access to active promotions and community-shared bargains across all product categories.
pepper.pl API
Browse deals, coupons, and product categories from Pepper.pl, a popular Polish community marketplace, with the ability to search specific offers and read community comments. Filter deals by category, view detailed information about each offer, and discover the latest coupon codes available.
mydealz.de API
Search for deals on MyDealz.de and retrieve detailed information including ratings, merchant details, pricing, and community feedback across multiple pages. Find the best deals with access to temperature scores and comment counts to help you make informed purchasing decisions.
coupons.com API
Search and discover coupons, printable offers, and store-specific deals from Coupons.com. Browse top featured offers, find deals across thousands of retailers, and access aggregated coupon data including discount amounts, usage conditions, and expiration details.
sneakers.com API
Search and browse sneaker products across categories and brands, view detailed product information, and discover current flash sales and trending searches from sneakers.com. Get instant access to sneaker listings, pricing, and real-time sale events to find exactly what you're looking for.
ozbargain.com.au API
Browse the latest deals and discover the most popular bargains trending on OzBargain.com.au. Access deals across all categories, sorted by recency or community upvotes.
sparkfun.com API
Search SparkFun's electronics catalog, view product details, pricing, and stock availability, and discover today's featured deals. Browse product categories to find components, tools, and kits while staying updated on current promotions.