Endpoint Playground
Test Crawlora's Slickdeals Deal Types 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/deal-types" \
-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": {
"deal_types": [
{
"id": 1688,
"name": "Coupon"
},
{
"id": 1774,
"name": "Free / Freebie"
},
{
"id": 66,
"name": "Your Mileage May Vary (YMMV)"
}
],
"count": 10,
"source_url": "https://slickdeals.net/forums/forumdisplay.php?f=9",
"fetched_at": "2026-09-15T12: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 deal-type tag list (Coupon, Free / Freebie, Giveaway, Gift Card, Mail In Rebate, Online Only, YMMV, ...) -- the discovery endpoint for GET /slickdeals/search's deal_type_id parameter. Confirmed identical across multiple Slickdeals sub-forums, unlike the broader interest-tag space it is drawn from, which was not found to be reliably enumerable. An optional q parameter narrows it to a substring match on name.
{
"code": 200,
"msg": "OK",
"data": {
"deal_types": [
{
"id": 1688,
"name": "Coupon"
},
{
"id": 1774,
"name": "Free / Freebie"
},
{
"id": 66,
"name": "Your Mileage May Vary (YMMV)"
}
],
"count": 10,
"source_url": "https://slickdeals.net/forums/forumdisplay.php?f=9",
"fetched_at": "2026-09-15T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/deal-types" \
-H "x-api-key: $CRAWLORA_API_KEY"