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 |
{
"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",
"selftext": "Documentation on fingerprinting, what browser values it collects...",
"source_feed_url": "https://www.reddit.com/comments/1tka90t/"
},
"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 a normalized public Reddit post entry.
{
"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",
"selftext": "Documentation on fingerprinting, what browser values it collects...",
"source_feed_url": "https://www.reddit.com/comments/1tka90t/"
},
"source": {
"type": "feed",
"url": "https://www.reddit.com/comments/1tka90t/"
}
}
}curl "https://api.crawlora.net/api/v1/reddit/post/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"