Platform · Social
Subreddits, posts, full comment trees, search and video transcripts.
- Endpoints
- 10
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/reddit/profile | Profile | 1 |
| GET /v1/reddit/posts | Post[] | 1 |
| GET /v1/reddit/post | Post | 1 |
| GET /v1/reddit/comments | Comment[] | 1 |
| GET /v1/reddit/search | SearchResult[] | 1 |
| GET /v1/reddit/transcript | Transcript | 1 |
| GET /v1/reddit/search/posts | Post[] | 1 |
| GET /v1/reddit/community | Profile | 1 |
| GET /v1/reddit/community/posts | Post[] | 1 |
| GET /v1/reddit/community/search | Post[] | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: 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 creditList a profile's recent posts.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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 creditGet a single post by id.
| id | required | The post id on that platform. |
| enrich | optional | arabic: 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>"Search
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/reddit/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=espresso"Search
Search posts
1 creditPosts matching a keyword.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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 creditThe spoken text of a video, with timings when available.
| id | required | The 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 creditA community (subreddit, group) as a profile.
| id | required | Community name or URL. |
| enrich | optional | arabic: 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 creditPosts in a community, or a channel’s community tab.
| id | required | Community name or URL, or a YouTube channel handle. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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>"Search a community
1 creditPosts matching a keyword inside one community.
| id | required | Community name or URL. |
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/reddit/community/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=r/coffee" \
--data-urlencode "q=espresso"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.
Comments
1 creditList comments on a post.