Platform · Video & live

Rumble

Channels, videos, comments, search and transcripts.

Endpoints
6
Base price
1 cr
Source
Provider

Core

Posts

1 credit

List a profile's recent posts.

GET/v1/rumble/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/rumble/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=Bongino"

Post

1 credit

Get a single post by id.

GET/v1/rumble/postPost
idrequiredThe post id on that platform.
enrichoptionalarabic: 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>"

Comments

1 credit

List comments on a post.

GET/v1/rumble/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/rumble/comments \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "post_id=<post_id>"

Search

Search posts

1 credit

Posts matching a keyword.

GET/v1/rumble/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/rumble/search/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "q=coffee"

Transcripts and media

Transcript

1 credit

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

GET/v1/rumble/transcriptTranscript
idrequiredThe 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.