Endpoint Playground
Test Crawlora's Slickdeals Comments 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/comments" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | No | Full Slickdeals deal URL, as returned by GET /slickdeals/search or GET /slickdeals/deal (https://slickdeals.net/f/...) | |
| thread_id | integer | No | Slickdeals numeric thread id |
{
"code": 200,
"msg": "OK",
"data": {
"thread_id": 20015817,
"comments": [
{
"post_id": 186692484,
"author": "OutFr0mUndr",
"author_title": "L2: Beginner",
"author_post_count": 49,
"content_html": "Shows as $358.53 for me...",
"content": "Shows as $358.53 for me...",
"posted_at": "2026-09-14T19:17:54-07:00",
"permalink": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53?p=186692484#post186692484",
"like_count": 1,
"funny_count": 0,
"helpful_count": 0,
"not_helpful_count": 0
}
],
"count": 4,
"has_more": false,
"source_url": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53",
"fetched_at": "2026-09-15T08: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 Slickdeals deal thread's full comment thread: for each comment, the public username who posted it (with their forum rank/title and total post count -- the same public-forum-post attribution class this repo already exposes for Reddit), the comment content (as HTML and as cleaned plain text), when it was posted, a permalink, and reaction counts (like, funny, helpful, not helpful). Give either url (the exact value returned by GET /slickdeals/search or GET /slickdeals/deal) or thread_id; at least one is required. has_more indicates whether Slickdeals' own page truncated the reply list (no further pagination is currently exposed by this endpoint).
{
"code": 200,
"msg": "OK",
"data": {
"thread_id": 20015817,
"comments": [
{
"post_id": 186692484,
"author": "OutFr0mUndr",
"author_title": "L2: Beginner",
"author_post_count": 49,
"content_html": "Shows as $358.53 for me...",
"content": "Shows as $358.53 for me...",
"posted_at": "2026-09-14T19:17:54-07:00",
"permalink": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53?p=186692484#post186692484",
"like_count": 1,
"funny_count": 0,
"helpful_count": 0,
"not_helpful_count": 0
}
],
"count": 4,
"has_more": false,
"source_url": "https://slickdeals.net/f/20015817-microsoft-surface-laptop-5-13-5-2-5ghz-16gb-256gb-refurb-w-warranty-358-53",
"fetched_at": "2026-09-15T08:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/slickdeals/comments" \
-H "x-api-key: $CRAWLORA_API_KEY"