Reddit Post & Comments API
Fetch a specific Reddit post along with all its comments and replies.
GET
/v1/reddit/post Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Valid Reddit post URL (max 2048 characters) |
| includeComments | boolean | No | Include comments in response (default: true) |
Response
Returns the Reddit post data along with comments:
Response Fields
Post Object:
id - Unique Reddit post IDtitle - Post titleauthor - Username of the post authorsubreddit - Name of the subredditscore - Current upvote scoreupvoteRatio - Ratio of upvotes to total votes (0-1)numComments - Total number of commentscreated - Unix timestamp of post creationurl - Full URL to the Reddit postselftext - Text content (if text post)isVideo - Whether the post is a videoComment Object:
id - Unique comment IDauthor - Username of the comment authorbody - Comment text contentscore - Comment upvote scorecreated - Unix timestamp of comment creationdepth - Nesting depth (0 for top-level)isSubmitter - Whether the commenter is the post authorreplies - Array of nested comment objectsCode Examples
Try it Out
API Playground
Error Codes
400 Bad Request
URL parameter is missing, invalid, or exceeds 2048 characters
401 Unauthorized
Missing or invalid API key
403 Forbidden
Active subscription required
500 Internal Server Error
Failed to fetch Reddit post or comments
Credits: This endpoint deducts credits per request. See Authentication for details.