Slickdeals API endpoint
Use Crawlora's Slickdeals Search Advanced API to extract supported public Slickdeals data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/slickdeals/search/advancedSearches 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| 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 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/slickdeals/search/advanced?q=coffee&page=1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
}Request schema
No body schema
Response schema
#/definitions/slickdeals.searchAdvancedResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | Code is the HTTP status code or a custom code used to indicate the result of the request @example 200 | |||
| data | slickdeals.SearchAdvancedResponse | No | ||||
| data.facets | array | No | ||||
| data.facets[].label | string | No | Categories | |||
| data.facets[].options | array | No | ||||
| data.facets[].options[].count | integer | No | 27 | |||
| data.facets[].options[].label | string | No | Laptops | |||
| data.facets[].options[].parent_value | string | No | ParentValue is set when this option is a subcategory of another option in the same group (Slickdeals' own Categories facet nests one level deep). | |||
| data.facets[].options[].value | string | No | 34 | |||
| data.fetched_at | string | No | ||||
| data.page | integer | No | 1 | |||
| data.per_page | integer | No | 40 | |||
| data.query | string | No | laptop | |||
| data.result_count | integer | No | 915 | |||
| data.results | array | No | ||||
| data.results[].comment_count | integer | No | 4 | |||
| data.results[].discount | integer | No | 26 | |||
| data.results[].final_price | string | No | $66 | |||
| data.results[].forum_id | integer | No | 9 | |||
| data.results[].found_by | string | No | htp182 | |||
| data.results[].has_rebate | boolean | No | false | |||
| data.results[].image_url | string | No | ||||
| data.results[].is_expired | boolean | No | false | |||
| data.results[].is_fire_deal | boolean | No | false | IsFireDeal and HasRebate are populated on Frontpage's own deal cards; GET /slickdeals/search/advanced's result cards were not observed carrying either field live, so they read as their zero value there. | ||
| data.results[].is_frontpage | boolean | No | true | |||
| data.results[].is_new | boolean | No | false | |||
| data.results[].is_popular | boolean | No | true | |||
| data.results[].list_price | string | No | $90 | |||
| data.results[].posted_at | string | No | ||||
| data.results[].store | string | No | Newegg | |||
| data.results[].store_id | integer | No | 701 | |||
| data.results[].thread_id | integer | No | 19618338 | |||
| data.results[].title | string | No | Anker 4-Port up to 140W USB-C Laptop Charger w/ 5' Cable | |||
| data.results[].url | string | No | ||||
| data.results[].views_count | integer | No | 3274 | |||
| data.results[].vote_score | integer | No | 20 | |||
| data.source_url | string | No | ||||
| data.total_pages | integer | No | 23 | |||
| msg | unknown | No | Msg is the message that describes the result of the request @example "Request successful" |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/slickdeals/search/advanced?q=coffee&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms