Write
Post Reddit Comments Faster (v2 Endpoint)
Post Reddit comments ~2x faster than v1 with the v2 endpoint. Same request shape, same response — just lower latency for higher-volume use cases.
POST
/api/reddit/v2/comment$0.012 / callA faster alternative to /api/reddit/comment. Same purpose, same request shape — just lower latency per request.
Request Body
Cookies are passed as flat top-level fields (identical to v1).
| Field | Type | Required | Description |
|---|---|---|---|
post_url | string | yes | Any reddit.com post URL |
text | string | yes | Plain text comment body |
reddit_session | string | yes | Session cookie from /api/reddit/login |
loid | string | yes | Long-lived account identifier cookie |
token_v2, csrf_token, edgebucket, csv, session_tracker, pc | string | no | Any extra Reddit cookies as top-level fields |
Example
curl -X POST -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" \
-d '{
"post_url": "https://www.reddit.com/r/test/comments/xxx/title/",
"text": "hello from v2",
"reddit_session": "eyJhbGc...",
"loid": "000000...",
"token_v2": "eyJhbGc...",
"csrf_token": "689ea9..."
}' \
"https://api.redditapis.com/api/reddit/v2/comment"Success Response
{
"success": true,
"comment_id": "t1_ohn32i0",
"permalink": "https://www.reddit.com/r/test/comments/xxx/comment/ohn32i0/"
}Errors
| Status | Meaning |
|---|---|
400 | Missing post_url / text or required cookies |
401 | Missing Bearer token |
403 | Invalid Bearer token |
502 | Could not post the comment |
500 | Unexpected server error |
v1 vs v2
v1 /comment | v2 /v2/comment | |
|---|---|---|
| Latency | Standard | Faster |
| Request shape | same | same |
| Best for | Occasional use | Higher-volume, latency-sensitive use |
CommentHot
Post a comment on any Reddit thread programmatically. Handles reCAPTCHA, CSRF tokens, and rich-text encoding for you — just send post URL and text.
VoteNew
Upvote, downvote, or clear your vote on any Reddit post or comment via a single HTTP call — auto-detects whether the target is a post or comment for you.
