Endpoint Playground
Test Crawlora's Slickdeals Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/slickdeals/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Free-text keyword query | |
| forum_id | integer | No | Restrict results to one Slickdeals legacy sub-forum, from GET /slickdeals/forums | |
| deal_type_id | integer | No | Restrict results to one Slickdeals deal-type tag, from GET /slickdeals/deal-types |
{
"code": 200,
"msg": "OK",
"data": {
"query": "laptop",
"results": [
{
"thread_id": 20015817,
"title": "Microsoft Surface Laptop 5 13.5\" 2.5GHz/16GB/256GB - Refurb w/Warranty $358.53",
"url": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53",
"price": "$358.53",
"store": "ebay.com",
"vote_score": -2,
"found_by": "BML6182",
"published_at": "2026-09-15T02:13:22Z"
}
],
"count": 1,
"source_url": "https://slickdeals.net/newsearch.php?q=laptop&rss=1",
"fetched_at": "2026-09-15T04:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches Slickdeals (slickdeals.net), a community deal/coupon aggregator, for deal threads matching a free-text keyword query -- the same search this repo already exposes for Reddit, applied to Slickdeals' own deal-posting community. Each result is one community-submitted deal thread with its title (which conventionally embeds the deal price), a best-effort price extracted from that title, the merchant domain, the community vote ("thumb") score, the public Slickdeals username who posted it, and when it was posted. Pair a result's thread_id or url with GET /slickdeals/deal for the full detail record, including comment count and category. An optional forum_id restricts results to one Slickdeals legacy sub-forum (e.g. Hot Deals, Coupons) -- obtain a value from GET /slickdeals/forums, a closed enum validated before the request reaches upstream. An optional deal_type_id restricts results to one Slickdeals deal-type tag (e.g. Coupon, Free / Freebie, YMMV) -- obtain a value from GET /slickdeals/deal-types, also a closed enum validated before the request reaches upstream; composes with forum_id.
{
"code": 200,
"msg": "OK",
"data": {
"query": "laptop",
"results": [
{
"thread_id": 20015817,
"title": "Microsoft Surface Laptop 5 13.5\" 2.5GHz/16GB/256GB - Refurb w/Warranty $358.53",
"url": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53",
"price": "$358.53",
"store": "ebay.com",
"vote_score": -2,
"found_by": "BML6182",
"published_at": "2026-09-15T02:13:22Z"
}
],
"count": 1,
"source_url": "https://slickdeals.net/newsearch.php?q=laptop&rss=1",
"fetched_at": "2026-09-15T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"