Endpoint Playground
Test Crawlora's Slickdeals Primary Category 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/primary-category?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Featured-category slug from GET /slickdeals/primary-categories |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "laptop-deals",
"deals": [
{
"thread_id": 19936956,
"title": "27L Thule EnRoute Escort 2 Backpack (Dark Shadow) + Earn 10% Back w/ Prime Visa",
"url": "https://slickdeals.net/f/19936956-...",
"price": "$52.48",
"list_price": "$149.95",
"store": "Amazon",
"vote_score": 71,
"comment_count": 12,
"found_by": "phoinix",
"is_popular": false,
"is_expired": false,
"is_new": false,
"is_frontpage": true,
"posted_at": "2026-08-28T14:22:52Z"
}
],
"count": 40,
"source_url": "https://slickdeals.net/laptop-deals/",
"fetched_at": "2026-09-15T09: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 the current deal listing for one Slickdeals featured primary-category landing page (e.g. laptop-deals, tv-deals): for each deal, title, price, list price, store, community vote score, comment count, found-by username, and status flags. slug must be one of the values from GET /slickdeals/primary-categories -- an unrecognized slug (including a valid GET /slickdeals/categories tag slug, which is a different taxonomy) returns a typed invalid-parameter error rather than being sent upstream.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "laptop-deals",
"deals": [
{
"thread_id": 19936956,
"title": "27L Thule EnRoute Escort 2 Backpack (Dark Shadow) + Earn 10% Back w/ Prime Visa",
"url": "https://slickdeals.net/f/19936956-...",
"price": "$52.48",
"list_price": "$149.95",
"store": "Amazon",
"vote_score": 71,
"comment_count": 12,
"found_by": "phoinix",
"is_popular": false,
"is_expired": false,
"is_new": false,
"is_frontpage": true,
"posted_at": "2026-08-28T14:22:52Z"
}
],
"count": 40,
"source_url": "https://slickdeals.net/laptop-deals/",
"fetched_at": "2026-09-15T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/primary-category?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"