InsightSocial API
Reddit

Profile › Comments

GET
/v1/reddit/profile/comments

Returns an account's own comment history, newest first, each with the text, score, permalink, parent_id, the post it sits under and ext.subreddit.

Use it when you need a real comment history rather than a sample.

Metered: 40–4000 credits. We reserve the ceiling when the call starts and charge what it actually used when it finishes.

Re-running the exact same call within 24h is free.

x-api-key<token>

Your key from the dashboard. It starts with isk_.

In: header

Query Parameters

handle*string

Reddit username without the u/ prefix. Case-insensitive.

limit?integer

How many comments to return, 1-100, default 25. This is a depth control, not a page size: a higher limit reaches further back into the account's history at the same speed.

Range1 <= value <= 100
before?string

Only return comments older than this date (YYYY-MM-DD). Use it to walk a long history in windows instead of raising limit.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/reddit/profile/comments?handle=string"
{  "success": true,  "platform": "instagram",  "endpoint": "/v1/instagram/profile/posts",  "data": {    "items": [      "…"    ],    "dropped": 0  },  "pagination": {    "next_cursor": "is2.eyJwIjoyfQ",    "has_more": true,    "page_size": 12  },  "credits_used": 20,  "credits_remaining": 9980,  "request_id": "req_1a2b3c4d5e6f",  "cached": false,  "idempotent_replay": false,  "charge_reason": "miss",  "free_call": false}