Crawlora
ProductPlatformsUse CasesDocsPricingCompareContact
Sign inTry Playground Console
Crawlora

Structured public web data APIs for search, maps, geocoding, streaming, travel, real estate, marketplaces, apps, social, audio, crypto, finance, and AI workflows with managed execution and credit-based usage.

Product

Web Scraping APIFeaturesPlatformsTravel APIsReal Estate APIsPricing

Platforms

Google SearchGoogle MapsGoogle TrendsAmazonZillowTripAdvisorShopifyAll platforms

Developers

DocsGetting StartedAPI ExamplesPlaygroundSDKsChangelogBlogGitHub

Use cases

SERP MonitoringGoogle Maps LeadsProperty Market IntelligenceAmazon Product MonitoringCrypto Market ResearchAI Agent Web DataAll use cases

Legal

ContactTermsPrivacy
Product
Web Scraping APIFeaturesPlatformsTravel APIsReal Estate APIsPricing
Platforms
Google SearchGoogle MapsGoogle TrendsAmazonZillowTripAdvisorShopifyAll platforms
Developers
DocsGetting StartedAPI ExamplesPlaygroundSDKsChangelogBlogGitHub
Use cases
SERP MonitoringGoogle Maps LeadsProperty Market IntelligenceAmazon Product MonitoringCrypto Market ResearchAI Agent Web DataAll use cases
Legal
ContactTermsPrivacy
© 2026 Crawlora. All rights reserved.·Built by Tony Wang
System statusCrawlora API status
  1. Home
  2. /Playground
  3. /Reddit
  4. /Reddit Comments API

Endpoint Playground

Try the Reddit Comments API

Test Crawlora's Reddit Comments API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.

Endpoint facts

Method
GET
API path
/reddit/comments/{id}
Platform
Reddit
Auth
apiKey
Credits
1 credit/request
Required params
id
Common optional params
sort, limit, depth
Reddit Comments API documentationReddit platform pageCrawlora API pricingTry Reddit Post APITry Reddit Search APITry Reddit Subreddit Posts API

Prefilled cURL

curl "https://api.crawlora.net/api/v1/reddit/comments/<id>?sort=confidence" \
  -H "x-api-key: $CRAWLORA_API_KEY"

Request parameters visible to crawlers

ParameterTypeRequiredPrefilled valueDescription
id (path)stringYesReddit post id or t3_ id
sortstringNoconfidenceAccepted for compatibility: confidence, top, new, controversial, old, or qa. Public comment data is flat and may ignore sort.
limitintegerNoMaximum comments returned, defaults to 25 and clamps to 100
depthintegerNoAccepted for compatibility. Public comment data is flat and may ignore depth.

Example JSON response

{
  "code": 200,
  "msg": "OK",
  "data": {
    "post": {
      "id": "1tka90t",
      "name": "t3_1tka90t",
      "subreddit": "webscraping",
      "title": "Reverse Engineered Google reCAPTCHA",
      "url": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/",
      "author": {
        "name": "Dapper-Profession552",
        "profile_url": "https://www.reddit.com/user/Dapper-Profession552/"
      },
      "created": "2026-05-22T06:11:16Z"
    },
    "comments": [
      {
        "id": "on8jv87",
        "name": "t1_on8jv87",
        "parent_id": "t3_1tka90t",
        "author": {
          "name": "LessBadger4273",
          "profile_url": "https://www.reddit.com/user/LessBadger4273/"
        },
        "body": "well done! I am working on reversing Turnstile as well.",
        "permalink": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/on8jv87/",
        "created": "2026-05-22T12:43:44Z"
      }
    ],
    "source": {
      "type": "feed",
      "url": "https://www.reddit.com/comments/1tka90t/"
    }
  }
}

Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Set up API keyEndpoint docs

Endpoint

Choose one catalog endpoint for this request.

4 shown
GETapiKey1 credit/requestreddit.commentsResponseDocReddit
GET /reddit/comments/{id}

Get Reddit post comments

Returns flat public comment entries from a Reddit post.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Path parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "post": {
      "id": "1tka90t",
      "name": "t3_1tka90t",
      "subreddit": "webscraping",
      "title": "Reverse Engineered Google reCAPTCHA",
      "url": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/",
      "author": {
        "name": "Dapper-Profession552",
        "profile_url": "https://www.reddit.com/user/Dapper-Profession552/"
      },
      "created": "2026-05-22T06:11:16Z"
    },
    "comments": [
      {
        "id": "on8jv87",
        "name": "t1_on8jv87",
        "parent_id": "t3_1tka90t",
        "author": {
          "name": "LessBadger4273",
          "profile_url": "https://www.reddit.com/user/LessBadger4273/"
        },
        "body": "well done! I am working on reversing Turnstile as well.",
        "permalink": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/on8jv87/",
        "created": "2026-05-22T12:43:44Z"
      }
    ],
    "source": {
      "type": "feed",
      "url": "https://www.reddit.com/comments/1tka90t/"
    }
  }
}

Endpoint details

Returns flat public comment entries from a Reddit post.

Method
GET
Path
/reddit/comments/{id}
Authentication
apiKey
Credit cost
1 credit/request
Platform
Reddit
Parameters
5 documented fields

Request parameters

id:pathsort:querylimit:querydepth:queryx-api-key:header

Response schema fields

codedatadata.commentsdata.comments[].authordata.comments[].author.namedata.comments[].author.profile_urldata.comments[].bodydata.comments[].createddata.comments[].created_utcdata.comments[].depthdata.comments[].iddata.comments[].name

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "post": {
      "id": "1tka90t",
      "name": "t3_1tka90t",
      "subreddit": "webscraping",
      "title": "Reverse Engineered Google reCAPTCHA",
      "url": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/",
      "author": {
        "name": "Dapper-Profession552",
        "profile_url": "https://www.reddit.com/user/Dapper-Profession552/"
      },
      "created": "2026-05-22T06:11:16Z"
    },
    "comments": [
      {
        "id": "on8jv87",
        "name": "t1_on8jv87",
        "parent_id": "t3_1tka90t",
        "author": {
          "name": "LessBadger4273",
          "profile_url": "https://www.reddit.com/user/LessBadger4273/"
        },
        "body": "well done! I am working on reversing Turnstile as well.",
        "permalink": "https://www.reddit.com/r/webscraping/comments/1tka90t/reverse_engineered_google_recaptcha/on8jv87/",
        "created": "2026-05-22T12:43:44Z"
      }
    ],
    "source": {
      "type": "feed",
      "url": "https://www.reddit.com/comments/1tka90t/"
    }
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/reddit/comments/<id>" \
  -H "x-api-key: $CRAWLORA_API_KEY"
View endpoint docsOpen platform pageBrowse all endpointsPricingGet Reddit postSearch Reddit postsList Reddit subreddit posts

Browse public API demos

Search stored Google Maps businessesFacet stored Google Maps businessesGoogle Trends explore dataSearch Nominatim placesReverse geocode coordinatesSearch TripAdvisor placesSearch Zillow listingsCoinGecko markets
DocsPlatformsPricing