Endpoint Playground
Test Crawlora's Slickdeals Search Advanced 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/advanced?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Free-text keyword query | |
| page | integer | No | 1-based result page, default 1 | |
| sort | string | No | Sort order, default relevance | |
| category_id | integer | No | Category facet id, from a prior response's own facets | |
| brand_id | integer | No | Brand facet id, from a prior response's own facets | |
| store_id | integer | No | Store facet id, from a prior response's own facets |
{
"code": 200,
"msg": "OK",
"data": {
"query": "laptop",
"page": 1,
"total_pages": 23,
"per_page": 40,
"result_count": 915,
"results": [
{
"thread_id": 19618338,
"title": "Anker 4-Port up to 140W USB-C Laptop Charger w/ 5' Cable",
"url": "https://slickdeals.net/f/19618338-...",
"image_url": "https://static.slickdealscdn.com/attachment/1/7/2/2/9/6/300x300/17229612.thumb",
"list_price": "$90",
"final_price": "$66",
"discount": 26,
"store_id": 701,
"store": "Newegg",
"vote_score": 20,
"comment_count": 4,
"views_count": 3274,
"forum_id": 9,
"found_by": "htp182",
"posted_at": "2026-06-11T09:15:23-07:00",
"is_frontpage": true,
"is_popular": true,
"is_new": false,
"is_expired": false,
"is_fire_deal": false,
"has_rebate": false
}
],
"facets": [
{
"label": "Categories",
"options": [
{
"label": "Computers",
"value": "9",
"count": 31
},
{
"label": "Laptops",
"value": "34",
"count": 27,
"parent_value": "9"
}
]
},
{
"label": "Stores",
"options": [
{
"label": "eBay",
"value": "482",
"count": 4
}
]
}
],
"source_url": "https://slickdeals.net/search?q=laptop&sort=relevance",
"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.
Searches Slickdeals' modern search surface -- a richer alternative to GET /slickdeals/search's keyword-only RSS feed. Returns real pagination (page/total_pages/per_page/result_count), integer vote/comment/view counts read directly from the page's own data (not parsed from free text), a fuller per-deal record (store id, discount percent, status flags), and facets -- Categories, Stores, and Brands available for the current query, each option carrying a value usable as category_id/brand_id/store_id. Facet values and counts are scoped to the current query, not a site-wide enumeration -- category_id/brand_id/store_id are passthrough filters (obtain a value from a prior response's own facets), not validated against a closed enum. sort defaults to relevance; other values are passed through unvalidated since no server-side enumeration of the full accepted set was found.
{
"code": 200,
"msg": "OK",
"data": {
"query": "laptop",
"page": 1,
"total_pages": 23,
"per_page": 40,
"result_count": 915,
"results": [
{
"thread_id": 19618338,
"title": "Anker 4-Port up to 140W USB-C Laptop Charger w/ 5' Cable",
"url": "https://slickdeals.net/f/19618338-...",
"image_url": "https://static.slickdealscdn.com/attachment/1/7/2/2/9/6/300x300/17229612.thumb",
"list_price": "$90",
"final_price": "$66",
"discount": 26,
"store_id": 701,
"store": "Newegg",
"vote_score": 20,
"comment_count": 4,
"views_count": 3274,
"forum_id": 9,
"found_by": "htp182",
"posted_at": "2026-06-11T09:15:23-07:00",
"is_frontpage": true,
"is_popular": true,
"is_new": false,
"is_expired": false,
"is_fire_deal": false,
"has_rebate": false
}
],
"facets": [
{
"label": "Categories",
"options": [
{
"label": "Computers",
"value": "9",
"count": 31
},
{
"label": "Laptops",
"value": "34",
"count": 27,
"parent_value": "9"
}
]
},
{
"label": "Stores",
"options": [
{
"label": "eBay",
"value": "482",
"count": 4
}
]
}
],
"source_url": "https://slickdeals.net/search?q=laptop&sort=relevance",
"fetched_at": "2026-09-15T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/search/advanced?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"