RedditAPIRedditAPIs
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 / call

A 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).

FieldTypeRequiredDescription
post_urlstringyesAny reddit.com post URL
textstringyesPlain text comment body
reddit_sessionstringyesSession cookie from /api/reddit/login
loidstringyesLong-lived account identifier cookie
token_v2, csrf_token, edgebucket, csv, session_tracker, pcstringnoAny 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

StatusMeaning
400Missing post_url / text or required cookies
401Missing Bearer token
403Invalid Bearer token
502Could not post the comment
500Unexpected server error

v1 vs v2

v1 /commentv2 /v2/comment
LatencyStandardFaster
Request shapesamesame
Best forOccasional useHigher-volume, latency-sensitive use

On this page