Reddit Post
1 creditGet a Reddit post with its comments.
/api/v1/tools/reddit/postParameters
Full Reddit post URL (e.g. "https://www.reddit.com/r/programming/comments/abc123/...").
Maximum number of comments to return. Must be a positive integer. Defaults to 200. Upper bound is determined by your plan.
Fields to include per comment. Omit for defaults: id, author, text, createdAt, score, parentId. Use ["*"] for all fields. The post wrapper is always returned.
Response Schema
Reddit post result
Post metadata
Array of comment objects. Fields depend on the fields parameter. Default fields: id, author, text, createdAt, score, parentId.
Number of comments returned
Total comment count reported by Reddit
True if more comments exist than were returned. Only present when truncation occurred.
Request metadata
Tool name (reddit-post)
Credits consumed (1)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/reddit/post \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"url": "https://www.reddit.com/r/programming/comments/abc123/example_post/","maxComments": 50}'
Response Example
{"data": {"post": {"id": "abc123","author": "dev_user","title": "What programming language should I learn in 2026?","text": "Looking for recommendations on which language to pick up next...","createdAt": "2026-04-08T15:30:00.000Z","url": "https://reddit.com/r/programming/comments/abc123/what_programming_language/","score": 342,"upvoteRatio": 0.94,"numComments": 187},"comments": [{"id": "xyz789","parentId": "abc123","author": "rust_fan","text": "Rust has a steep learning curve but it is worth it for systems programming.","createdAt": "2026-04-08T16:10:00.000Z","score": 89}],"count": 1,"totalComments": 187,"truncated": true},"meta": {"tool": "reddit-post","creditsUsed": 1,"requestId": "req_abc123"}}