Reddit Scraping

Reddit Comment Endpoint

POST /v1/reddit/comment

#Request Example

curl -X POST /v1/reddit/comment \
  -H "Authorization: Bearer your-token" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.reddit.com/r/laravel/comments/abc123/example_post/commentid/"
  }'

#Request Body

{
  "url": "https://www.reddit.com/r/laravel/comments/abc123/example_post/commentid/"
}

#Pricing

  • 3 credits on successful 200 response

#Validation

The URL must resolve to an individual comment ID. Invalid comment URLs return 400 with a descriptive message.