Endpoint Playground
Test Crawlora's Slickdeals Deal 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/deal" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | No | Full Slickdeals deal URL, as returned by GET /slickdeals/search (https://slickdeals.net/f/...) | |
| thread_id | integer | No | Slickdeals numeric thread id |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"forum": "Hot Deals",
"forum_id": 9,
"category": "Computers",
"sub_category": "Laptops",
"category_paths": [
"Computers > Laptops",
"Computers"
],
"brand": "Microsoft",
"store": "eBay",
"final_price": "$358.53",
"list_price": "$1,200.00",
"vote_score": -1,
"comment_count": 4,
"is_expired": false,
"found_by": "BML6182",
"posted_at": "2026-09-14T19:13:22-07:00",
"deal_url": "https://slickdeals.net/click?...",
"cta_text": "Get Deal at eBay",
"description_html": "<div>...</div>",
"description": "Microsoft Surface Laptop 5 eBay Refurb ...",
"image_urls": [
"https://static.slickdealscdn.com/attachment/1/3/4/8/0/6/6/3/450x450/21598647.thumb"
],
"related_deals": [
{
"thread_id": 20013396,
"title": "20,000mAh BooKoo A9 2000A Car Battery Jumper w/ QC 3.0, PD 18W $22.20 + Free S/H",
"url": "https://slickdeals.net/f/20013396-...",
"final_price": "$22",
"list_price": "$37",
"vote_score": 5,
"comment_count": 0,
"found_by": "iconian",
"posted_at": "2026-09-14T08:34:52-07:00",
"source": "popular"
}
],
"found_by_profile": {
"user_id": "13480663",
"reputation": 685,
"join_date": "Nov 2017",
"deals_posted": 175,
"total_votes": 728,
"total_comments": 519,
"avatar_url": "https://static.slickdealscdn.com/attachment/avatar/1/3/4/8/0/6/6/3/100x100/avatar.normal"
},
"source_url": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53",
"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.
Returns one Slickdeals deal thread's full detail: title, store, final/list price, community vote score, comment count, whether the deal is marked expired, the deal's product category and taxonomy (category/sub_category/category_paths, and separately the legacy forum/forum_id the thread was posted under), the public Slickdeals username who posted it ("found by" attribution, the same public-forum-post class this repo already exposes for Reddit) with a public community-standing summary (reputation, join date, deals posted, total votes/comments), a related_deals sidebar (Slickdeals' own Popular/Trending picks), the outbound merchant link, and the deal's own description. Give either url (the exact value returned by GET /slickdeals/search) or thread_id (Slickdeals' own numeric thread id, e.g. from a deal's URL path /f/{thread_id}-...); at least one is required. An unknown or removed deal returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"forum": "Hot Deals",
"forum_id": 9,
"category": "Computers",
"sub_category": "Laptops",
"category_paths": [
"Computers > Laptops",
"Computers"
],
"brand": "Microsoft",
"store": "eBay",
"final_price": "$358.53",
"list_price": "$1,200.00",
"vote_score": -1,
"comment_count": 4,
"is_expired": false,
"found_by": "BML6182",
"posted_at": "2026-09-14T19:13:22-07:00",
"deal_url": "https://slickdeals.net/click?...",
"cta_text": "Get Deal at eBay",
"description_html": "<div>...</div>",
"description": "Microsoft Surface Laptop 5 eBay Refurb ...",
"image_urls": [
"https://static.slickdealscdn.com/attachment/1/3/4/8/0/6/6/3/450x450/21598647.thumb"
],
"related_deals": [
{
"thread_id": 20013396,
"title": "20,000mAh BooKoo A9 2000A Car Battery Jumper w/ QC 3.0, PD 18W $22.20 + Free S/H",
"url": "https://slickdeals.net/f/20013396-...",
"final_price": "$22",
"list_price": "$37",
"vote_score": 5,
"comment_count": 0,
"found_by": "iconian",
"posted_at": "2026-09-14T08:34:52-07:00",
"source": "popular"
}
],
"found_by_profile": {
"user_id": "13480663",
"reputation": 685,
"join_date": "Nov 2017",
"deals_posted": 175,
"total_votes": 728,
"total_comments": 519,
"avatar_url": "https://static.slickdealscdn.com/attachment/avatar/1/3/4/8/0/6/6/3/100x100/avatar.normal"
},
"source_url": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53",
"fetched_at": "2026-09-15T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/deal" \
-H "x-api-key: $CRAWLORA_API_KEY"