How to get Reddit post comments
GET request to /v1/reddit/post-comments with your input. You get clean JSON back in seconds for 2 credits per call — no OAuth, scraping or platform SDKs. Pull Reddit comments with author, text, likes, and timestamps.How to get Reddit post comments (step by step)
- 1
Get a free API key
Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.
- 2
Call the Reddit Post Comments API
Send an authenticated GET request to /v1/reddit/post-comments with your input. No OAuth, no scraping setup.
- 3
Read the JSON response
Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.
Code example
curl "https://api.captapi.com/v1/reddit/post-comments?url=https%3A%2F%2Fwww.reddit.com%2Fr%2Ftechnology%2Fcomments%2F1a2b3c4%2Fexample_discussion_thread%2F" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."What the response looks like
{
"success": true,
"data": {
"totalReturned": 5,
"comments": [
{
"id": "p0gnsr6",
"author": "AutoModerator",
"text": "Users often report submissions from this site for sensationalized articles. Readers have a responsibility to be skeptical, check sources, and comment on any flaws.\n\nYou can help improve this thread by linking to media that verifies or questions this article's claims. Your link could help readers better understand this issue.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/worldnews) if you have any questions or concerns.*",
"upvotes": 1,
"publishedAt": "1785330725.0",
"url": "https://www.reddit.com/r/worldnews/comments/1v9vtop/japans_population_falls_below_120_million_for/p0gnsr6/",
"parentId": "t3_1v9vtop",
"depth": 0,
"isSubmitter": false,
"edited": false,
"stickied": true
},
{
"id": "p0gpy2l",
"author": "Donnicton",
"text": "Sorry, best we can do about it is symbolically send you home early one day this month to go make a kid or whatever.",
"upvotes": 5045,
"publishedAt": "1785331342.0",
"url": "https://www.reddit.com/r/worldnews/comments/1v9vtop/japans_population_falls_below_120_million_for/p0gpy2l/",
"parentId": "t3_1v9vtop",
"depth": 0,
"isSubmitter": false,
"edited": false,
"stickied": false
},
{
"id": "p0gyjgf",
"author": "Lietenantdan",
"text": "And by early we mean the time you were actually supposed to leave.",
"upvotes": 2259,
"publishedAt": "1785333738.0",
"url": "https://www.reddit.com/r/worldnews/comments/1v9vtop/japans_population_falls_below_120_million_for/p0gyjgf/",
"parentId": "t1_p0gpy2l",
"depth": 1,
"isSubmitter": false,
"edited": false,
"stickied": false
},
{
"id": "p0h5wrb",
"author": "XVUltima",
"text": "And by leave, we mean make you clock out but you really need to stay",
"upvotes": 1065,
"publishedAt": "1785335690.0",
"url": "https://www.reddit.com/r/worldnews/comments/1v9vtop/japans_population_falls_below_120_million_for/p0h5wrb/",
"parentId": "t1_p0gyjgf",
"depth": 2,
"isSubmitter": false,
"edited": false,
"stickied": false
},
{
"id": "p0gwjcq",
"author": "standardDeviator",
"text": "They really need to stop making national go make a baby day on the same day as national headache awareness day.",
"upvotes": 401,
"publishedAt": "1785333190.0",
"url": "https://www.reddit.com/r/worldnews/comments/1v9vtop/japans_population_falls_below_120_million_for/p0gwjcq/",
"parentId": "t1_p0gpy2l",
"depth": 1,
"isSubmitter": false,
"edited": false,
"stickied": false
}
]
}
}Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.
Request parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Reddit post URL. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble. |
| limit | integer | No | Max items to return (default 50, max 500). Billed per result. |
| cache | boolean | No | Set true to serve from the 24h response cache. Default false — always fetch fresh data. |
Frequently asked questions
What does the Reddit Post Comments API do?
The Reddit Post Comments API lets you pull comments with author, text, likes, and replies from a public Reddit post using one GET request to /v1/reddit/post-comments. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the Reddit Post Comments API cost?
Each successful call costs 2 credits. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Failed or empty results are never charged.
Do I need a Reddit API key or OAuth?
No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.
Is the Reddit Post Comments API suitable for production use?
Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Use it for analytics, monitoring, and content automation.
Ready to get Reddit post comments?
Start free with 100 credits — no credit card required.
Get your free API key