Endpoint Playground
Test Crawlora's Reddit subreddit metadata 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/subreddit/<subreddit>/about" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| subreddit (path) | string | Yes | Subreddit name, without r/ | |
| limit | integer | No | Maximum sample posts inspected, defaults to 25 and clamps to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"subreddit": "OpenAI",
"display_name": "r/OpenAI",
"title": "OpenAI",
"public_url": "https://www.reddit.com/r/OpenAI/",
"feed_url": "https://www.reddit.com/r/OpenAI?limit=5",
"recent_post_count": 5,
"latest_post_created": "2024-04-19T00:00:00Z",
"latest_post_created_utc": 1713484800,
"sample_posts": [
{
"id": "1abcxyz",
"name": "t3_1abcxyz",
"subreddit": "OpenAI",
"title": "OpenAI discussion thread",
"url": "https://www.reddit.com/r/OpenAI/comments/1abcxyz/openai_discussion_thread/",
"author": {
"name": "sample_user",
"profile_url": "https://www.reddit.com/user/sample_user/"
},
"created": "2024-04-19T00:00:00Z",
"selftext": "Discussion body",
"source_feed_url": "https://www.reddit.com/r/OpenAI?limit=5"
}
],
"source": {
"type": "feed",
"url": "https://www.reddit.com/r/OpenAI?limit=5"
}
}
}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 feed-derived public metadata and sample posts for a subreddit. Subscriber counts, icons, and banners are omitted because Reddit no-auth about JSON is not reliably reachable.
{
"code": 200,
"msg": "OK",
"data": {
"subreddit": "OpenAI",
"display_name": "r/OpenAI",
"title": "OpenAI",
"public_url": "https://www.reddit.com/r/OpenAI/",
"feed_url": "https://www.reddit.com/r/OpenAI?limit=5",
"recent_post_count": 5,
"latest_post_created": "2024-04-19T00:00:00Z",
"latest_post_created_utc": 1713484800,
"sample_posts": [
{
"id": "1abcxyz",
"name": "t3_1abcxyz",
"subreddit": "OpenAI",
"title": "OpenAI discussion thread",
"url": "https://www.reddit.com/r/OpenAI/comments/1abcxyz/openai_discussion_thread/",
"author": {
"name": "sample_user",
"profile_url": "https://www.reddit.com/user/sample_user/"
},
"created": "2024-04-19T00:00:00Z",
"selftext": "Discussion body",
"source_feed_url": "https://www.reddit.com/r/OpenAI?limit=5"
}
],
"source": {
"type": "feed",
"url": "https://www.reddit.com/r/OpenAI?limit=5"
}
}
}curl "https://api.crawlora.net/api/v1/reddit/subreddit/<subreddit>/about" \
-H "x-api-key: $CRAWLORA_API_KEY"