Endpoint Playground
Test Crawlora's Slickdeals Forums 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/forums" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Case-insensitive substring filter on name |
{
"code": 200,
"msg": "OK",
"data": {
"forums": [
{
"id": 9,
"name": "Hot Deals",
"url": "https://slickdeals.net/forums/forumdisplay.php?f=9"
},
{
"id": 10,
"name": "Coupons",
"url": "https://slickdeals.net/forums/forumdisplay.php?f=10"
}
],
"count": 26,
"source_url": "https://slickdeals.net/forums/",
"fetched_at": "2026-09-15T11: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 legacy sub-forum list (e.g. Hot Deals, Coupons, Freebies) -- the discovery endpoint for GET /slickdeals/search's forum_id parameter. A separate, coarser-grained taxonomy from GET /slickdeals/categories' 421-entry tag list: this is the classification GET /slickdeals/deal, /slickdeals/search/advanced, and /slickdeals/frontpage already surface as forum_id, with this endpoint as the way to resolve an id to a name or filter search results by it. The list is refreshed from Slickdeals' own site periodically; an optional q parameter narrows it to a substring match on name.
{
"code": 200,
"msg": "OK",
"data": {
"forums": [
{
"id": 9,
"name": "Hot Deals",
"url": "https://slickdeals.net/forums/forumdisplay.php?f=9"
},
{
"id": 10,
"name": "Coupons",
"url": "https://slickdeals.net/forums/forumdisplay.php?f=10"
}
],
"count": 26,
"source_url": "https://slickdeals.net/forums/",
"fetched_at": "2026-09-15T11:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/forums" \
-H "x-api-key: $CRAWLORA_API_KEY"