Reddit Post comments API
Top-level comments on a Reddit post by URL: author, body, score and timestamp. Paginate with the cursor field.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"found": true,
"data": {
"comments": [
{
"id": "t1_klm123",
"author": "switchdoctor",
"body": "Look at the Keychron V-series, great value out of the box.",
"url": "https://www.reddit.com/r/MechanicalKeyboards/comments/1abc234/comment/klm123/",
"createdUtc": 1718201500
}
]
}
}interface RedditPostCommentsResponse {
data: {
comments: {
author: string;
body: string;
createdUtc: number;
id: string;
score?: number;
url: string;
}[];
media?: {
height?: number;
type: string;
url: string;
videoUrl?: string;
width?: number;
}[];
nextCursor: string | null;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/reddit.post_comments \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.reddit.com/r/MechanicalKeyboards/comments/1abc234/"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.reddit.com/r/MechanicalKeyboards/comments/1abc234/"Full Reddit post URL. |
| cursor | string | Cursor from a previous response for more comments. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.comments | array | |
| data.comments[].id | string | "t1_klm123" |
| data.comments[].author | string | "switchdoctor" |
| data.comments[].body | string | "Look at the Keychron V-series, great value out of the box." |
| data.comments[].url | string | "https://www.reddit.com/r/MechanicalKeyboards/comments/1abc234/comment/klm123/" |
| data.comments[].createdUtc | number | 1718201500 |
| Price | ||
| Price per request | USD | $0.0006 |
| Price /1k req | USD | $0.60 |
FAQ
About the Reddit Post comments API
The AnyAPI Reddit Post comments API returns Reddit post comments data as normalized JSON from one POST call to /v1/run/reddit.post_comments. Top-level comments on a Reddit post by URL: author, body, score and timestamp. Paginate with the cursor field. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $0.60 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Reddit post comments calls through AnyAPI succeeded, with a median response time of 2.0 seconds across 3,868 measured calls.