Endpoint Playground
Test Crawlora's Reddit Post 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/post/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Reddit post id or t3_ id | |
| include_metrics | boolean | No | Include public engagement metrics; costs 3 credits instead of 1 |
{
"code": 200,
"msg": "OK",
"data": {
"post": {
"id": "1v8hy3q",
"name": "t3_1v8hy3q",
"subreddit": "AmIOverreacting",
"title": "Book club discussion",
"url": "https://www.reddit.com/r/AmIOverreacting/comments/1v8hy3q/",
"score": 7130,
"upvote_ratio": 0.9376,
"estimated_upvotes": 7630,
"estimated_downvotes": 500,
"vote_counts_estimated": true,
"comment_count": 1031,
"award_count": 0
},
"source": {
"type": "html",
"url": "https://www.reddit.com/comments/1v8hy3q/"
},
"metrics_source": {
"type": "html",
"url": "https://www.reddit.com/comments/1v8hy3q/"
}
}
}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 a normalized public Reddit post. The default 1-credit mode uses RSS. Set `include_metrics=true` to use the anonymous HTML post page as the sole content request and return public net score, upvote ratio, comment count, award count, and estimated upvote/downvote totals for 3 credits. Reddit fuzzes voting data, so estimates are approximate; share, repost/crosspost, and view counts are not exposed anonymously.
{
"code": 200,
"msg": "OK",
"data": {
"post": {
"id": "1v8hy3q",
"name": "t3_1v8hy3q",
"subreddit": "AmIOverreacting",
"title": "Book club discussion",
"url": "https://www.reddit.com/r/AmIOverreacting/comments/1v8hy3q/",
"score": 7130,
"upvote_ratio": 0.9376,
"estimated_upvotes": 7630,
"estimated_downvotes": 500,
"vote_counts_estimated": true,
"comment_count": 1031,
"award_count": 0
},
"source": {
"type": "html",
"url": "https://www.reddit.com/comments/1v8hy3q/"
},
"metrics_source": {
"type": "html",
"url": "https://www.reddit.com/comments/1v8hy3q/"
}
}
}curl "https://api.crawlora.net/api/v1/reddit/post/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"