Endpoint Playground
Test Crawlora's Slickdeals Frontpage 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/frontpage" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based frontpage listing page, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"has_next_page": true,
"deals": [
{
"thread_id": 20012805,
"title": "Culver's Restaurants: Double ButterBurger w/ Cheese",
"url": "https://slickdeals.net/f/20012805-...",
"image_url": "https://static.slickdealscdn.com/attachment/1/6/6/6/1/8/450x450/21593049.thumb",
"final_price": "Buy 1 Get 1 Free",
"store_id": 55168,
"store": "Culvers",
"vote_score": 89,
"comment_count": 18,
"views_count": 9305,
"forum_id": 9,
"found_by": "ayasin1121",
"posted_at": "2026-09-14T12:36:27-07:00",
"is_frontpage": true,
"is_popular": true,
"is_new": true,
"is_expired": false,
"is_fire_deal": true,
"has_rebate": false
}
],
"source_url": "https://slickdeals.net/",
"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.
Returns one page of Slickdeals' own homepage deal listing -- the deals Slickdeals itself is currently featuring, distinct from a keyword search or a single category/tag's own listing. Each deal carries the same fields as GET /slickdeals/search/advanced's results (real integer vote/comment/view counts, store id, discount, status flags), plus is_fire_deal and has_rebate flags this feed's cards carry. Pagination is next-page-only (has_next_page), since the page itself exposes no total page count.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"has_next_page": true,
"deals": [
{
"thread_id": 20012805,
"title": "Culver's Restaurants: Double ButterBurger w/ Cheese",
"url": "https://slickdeals.net/f/20012805-...",
"image_url": "https://static.slickdealscdn.com/attachment/1/6/6/6/1/8/450x450/21593049.thumb",
"final_price": "Buy 1 Get 1 Free",
"store_id": 55168,
"store": "Culvers",
"vote_score": 89,
"comment_count": 18,
"views_count": 9305,
"forum_id": 9,
"found_by": "ayasin1121",
"posted_at": "2026-09-14T12:36:27-07:00",
"is_frontpage": true,
"is_popular": true,
"is_new": true,
"is_expired": false,
"is_fire_deal": true,
"has_rebate": false
}
],
"source_url": "https://slickdeals.net/",
"fetched_at": "2026-09-15T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/frontpage" \
-H "x-api-key: $CRAWLORA_API_KEY"