Platform · Social

Reddit

Subreddits, posts, full comment trees, search and video transcripts.

Endpoints
10
Base price
1 cr
Source
Provider

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/reddit/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/profile \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=r/coffee"

Posts

1 credit

List a profile's recent posts.

GET/v1/reddit/postsPost[]
handlerequiredUsername without the @.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=r/coffee"

Post

1 credit

Get a single post by id.

GET/v1/reddit/postPost
idrequiredThe post id on that platform.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/post \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Comments

1 credit

List comments on a post.

GET/v1/reddit/commentsComment[]
post_idrequiredThe post to read comments from.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/comments \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "post_id=<post_id>"

Search

Search posts

1 credit

Posts matching a keyword.

GET/v1/reddit/search/postsPost[]
qrequiredWhat to search for.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/search/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "q=espresso"

Transcripts and media

Transcript

1 credit

The spoken text of a video, with timings when available.

GET/v1/reddit/transcriptTranscript
idrequiredThe video or post id, or its URL.
curl -G https://api.crawlfeed.dev/v1/reddit/transcript \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Communities

Community

1 credit

A community (subreddit, group) as a profile.

GET/v1/reddit/communityProfile
idrequiredCommunity name or URL.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/community \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=r/coffee"

Community posts

1 credit

Posts in a community, or a channel’s community tab.

GET/v1/reddit/community/postsPost[]
idrequiredCommunity name or URL, or a YouTube channel handle.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/reddit/community/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.