Endpoint Playground
Test Crawlora's Reddit 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/reddit/comments/<id>?sort=confidence" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Reddit post id or t3_ id | |
| sort | string | No | confidence | Accepted for compatibility: confidence, top, new, controversial, old, or qa. Public comment data is flat and may ignore sort. |
| limit | integer | No | Maximum comments returned, defaults to 25 and clamps to 100 | |
| depth | integer | No | Accepted for compatibility. Public comment data is flat and may ignore depth. |
{
"code": 200,
"msg": "OK",
"data": {
"post": {
"id": "1tka90t",
"name": "t3_1tka90t",
"subreddit": "webscraping",
"title": "Reverse Engineered Google reCAPTCHA",
"url": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/",
"author": {
"name": "Dapper-Profession552",
"profile_url": "https://www.reddit.com/user/Dapper-Profession552/"
},
"created": "2026-05-22T06:11:16Z"
},
"comments": [
{
"id": "on8jv87",
"name": "t1_on8jv87",
"parent_id": "t3_1tka90t",
"author": {
"name": "LessBadger4273",
"profile_url": "https://www.reddit.com/user/LessBadger4273/"
},
"body": "well done! I am working on reversing Turnstile as well.",
"permalink": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/on8jv87/",
"created": "2026-05-22T12:43:44Z"
}
],
"source": {
"type": "feed",
"url": "https://www.reddit.com/comments/1tka90t/"
}
}
}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 flat public comment entries from a Reddit post.
{
"code": 200,
"msg": "OK",
"data": {
"post": {
"id": "1tka90t",
"name": "t3_1tka90t",
"subreddit": "webscraping",
"title": "Reverse Engineered Google reCAPTCHA",
"url": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/",
"author": {
"name": "Dapper-Profession552",
"profile_url": "https://www.reddit.com/user/Dapper-Profession552/"
},
"created": "2026-05-22T06:11:16Z"
},
"comments": [
{
"id": "on8jv87",
"name": "t1_on8jv87",
"parent_id": "t3_1tka90t",
"author": {
"name": "LessBadger4273",
"profile_url": "https://www.reddit.com/user/LessBadger4273/"
},
"body": "well done! I am working on reversing Turnstile as well.",
"permalink": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/on8jv87/",
"created": "2026-05-22T12:43:44Z"
}
],
"source": {
"type": "feed",
"url": "https://www.reddit.com/comments/1tka90t/"
}
}
}curl "https://api.crawlora.net/api/v1/reddit/comments/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"