Endpoint Playground
Test Crawlora's Slickdeals Categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Case-insensitive substring filter on slug or name |
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "laptop-bag",
"name": "Laptop Bags",
"url": "https://slickdeals.net/deals/laptop-bag/"
},
{
"slug": "apparel",
"name": "Clothing & Accessories",
"url": "https://slickdeals.net/deals/apparel/"
}
],
"count": 421,
"source_url": "https://slickdeals.net/deal-categories/",
"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 Slickdeals' own full category/tag list -- the discovery endpoint for GET /slickdeals/category's slug parameter. This is a separate taxonomy from the category/sub_category fields GET /slickdeals/deal returns for an individual deal (Slickdeals maintains multiple parallel category/tag id spaces, not one) -- these slugs are the ones GET /slickdeals/category's own browse pages accept. The list is refreshed from Slickdeals' own site periodically; an optional q parameter narrows it to a substring match.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "laptop-bag",
"name": "Laptop Bags",
"url": "https://slickdeals.net/deals/laptop-bag/"
},
{
"slug": "apparel",
"name": "Clothing & Accessories",
"url": "https://slickdeals.net/deals/apparel/"
}
],
"count": 421,
"source_url": "https://slickdeals.net/deal-categories/",
"fetched_at": "2026-09-15T06:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"