Platform · Video & live
Rumble
Channels, videos, comments, search and transcripts.
- Endpoints
- 6
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/rumble/posts | Post[] | 1 |
| GET /v1/rumble/post | Post | 1 |
| GET /v1/rumble/comments | Comment[] | 1 |
| GET /v1/rumble/search | SearchResult[] | 1 |
| GET /v1/rumble/transcript | Transcript | 1 |
| GET /v1/rumble/search/posts | Post[] | 1 |
Core
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/rumble/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=Bongino"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/rumble/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/rumble/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=climate tech"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/rumble/search/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"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/rumble/transcript \
-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.
Comments
1 creditList comments on a post.