Endpoint Playground
Test Crawlora's Slickdeals 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/category?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Category/tag slug from GET /slickdeals/categories |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "laptop-bag",
"deals": [
{
"thread_id": 19842723,
"title": "Hex Evolve Backpack Aspect Duffel Bag $24.99 Free Shipping",
"url": "https://slickdeals.net/f/19842723-hex-evolve-backpack-aspect-duffel-bag-24-99-free-shipping",
"price": "$24.99",
"list_price": "$150",
"store": "Morningsave.com",
"vote_score": 9,
"comment_count": 1,
"found_by": "phoinix",
"is_popular": true,
"is_expired": false,
"is_new": false,
"is_frontpage": false,
"posted_at": "2026-08-28T14:21:36Z"
}
],
"count": 37,
"source_url": "https://slickdeals.net/deals/laptop-bag/",
"fetched_at": "2026-09-15T06: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 category/tag (e.g. "laptop-bag", "apparel"): for each deal, title, price, list price, store, community vote score, comment count, the public username who posted it, and status flags (is_popular, is_expired, is_new, is_frontpage). slug must be one of the values from GET /slickdeals/categories -- an unrecognized slug returns a typed invalid-parameter error rather than being sent upstream. Pair a result's thread_id or url with GET /slickdeals/deal for the full detail record (description, full taxonomy).
{
"code": 200,
"msg": "OK",
"data": {
"slug": "laptop-bag",
"deals": [
{
"thread_id": 19842723,
"title": "Hex Evolve Backpack Aspect Duffel Bag $24.99 Free Shipping",
"url": "https://slickdeals.net/f/19842723-hex-evolve-backpack-aspect-duffel-bag-24-99-free-shipping",
"price": "$24.99",
"list_price": "$150",
"store": "Morningsave.com",
"vote_score": 9,
"comment_count": 1,
"found_by": "phoinix",
"is_popular": true,
"is_expired": false,
"is_new": false,
"is_frontpage": false,
"posted_at": "2026-08-28T14:21:36Z"
}
],
"count": 37,
"source_url": "https://slickdeals.net/deals/laptop-bag/",
"fetched_at": "2026-09-15T06:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/category?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"