EveryData platform API
Rumble API
Rumble exposes six action-specific views for videos, channels, uploads, comments, and trending content: `search`, `profile`, `user_posts`, `video`, `comments`, and `trending`.
Start with `search` using `keyword` for matching public results, and move to `profile` using `url` for the selected Rumble record, keeping the two result shapes distinct.
- Endpoint
- POST /api/v1/social
- Capabilities
- 6
- Per 1,000
- $1.389
Available capabilities
Compare the Rumble actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.
| Action | Required | Optional | Delivery | Limit | Per 1,000 | Response fields |
|---|---|---|---|---|---|---|
searchSearch Search public results on Rumble. Accepts these parameters: | keyword | — | Sync delivery | Catalog values: defaultLimit=20, maxLimit=50. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | id · url · title · author_name · author_url · author_followers · author_verified · view_count · like_count · dislike_count · vote_score · comment_count · duration_seconds · thumbnail_url · is_short · is_live · is_monetized · revenue · watching_now · tags · posted_at |
profileChannel details Retrieve channel details from Rumble. Accepts these parameters: | url | — | Sync delivery | — | $1.39 per 1,000 requests | channel_id · username · name · url · bio · avatar_url · banner_url · follower_count · subscriber_count · video_count · view_count · is_verified · badge · twitter_url · joined_at · platform |
user_postsPosts by user Retrieve public posts from Rumble. Accepts these parameters: | url | — | Sync delivery | Catalog values: defaultLimit=10, maxLimit=50. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | id · url · title · author_name · author_url · author_followers · author_verified · view_count · like_count · dislike_count · vote_score · comment_count · duration_seconds · thumbnail_url · is_short · is_live · is_monetized · revenue · watching_now · tags · posted_at |
videoVideo details Retrieve a public video from Rumble. Accepts these parameters: | url | — | Sync delivery | — | $1.39 per 1,000 requests | id · url · title · author_name · author_url · author_followers · author_verified · view_count · like_count · dislike_count · vote_score · comment_count · duration_seconds · thumbnail_url · is_short · is_live · is_monetized · revenue · watching_now · tags · posted_at |
commentsComments Retrieve public comments from Rumble. Accepts these parameters: | url | — | Sync delivery | — | $1.39 per 1,000 requests | id · text · author_name · author_username · author_verified · score · like_count · dislike_count · is_pinned · is_reply · reply_to_id · posted_at · platform |
trendingTrending Retrieve current trends from Rumble. Accepts these parameters: | date, period, sort | Sync delivery | Catalog values: defaultLimit=20, maxLimit=50. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | id · url · title · author_name · author_url · author_followers · author_verified · view_count · like_count · dislike_count · vote_score · comment_count · duration_seconds · thumbnail_url · is_short · is_live · is_monetized · revenue · watching_now · tags · posted_at |
What does each Rumble action accept?
Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.
Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.
What do the Rumble search parameters mean?
Search public results on Rumble. Accepts these parameters: keyword. Returns these fields: vote_score, watching_now, duration_seconds, and author_verified.
keywordRequired- Specifies the search query for video titles or topics in
search. Does not search channel descriptions or comment text.
What do the Rumble profile parameters mean?
Retrieve channel details from Rumble. Accepts these parameters: url. Returns these fields: bio, name, follower_count, and twitter_url.
urlRequired- Specifies a Rumble channel URL for
profileanduser_posts, or a video URL forvideoandcomments. Forcomments, it parses comments and replies from the video detail page rather than serving as a standalone comment search.Rumble: Distinguishing Followers, Channel Subscribers, and Premium MembersRumble distinguishes following a channel, channel-level paid subscriptions, and sitewide Premium subscriptions; following a channel does not automatically grant access to Premium content. Consequently, follower_count and subscriber_count cannot be conflated as the same count, nor can channel counts be used to estimate sitewide membership size.Checked
What do the Rumble user_posts parameters mean?
Retrieve public posts from Rumble. Accepts these parameters: url. Returns these fields: is_short, watching_now, comment_count, and like_count.
urlRequired- Specifies a Rumble channel URL for
profileanduser_posts, or a video URL forvideoandcomments. Forcomments, it parses comments and replies from the video detail page rather than serving as a standalone comment search.
What do the Rumble video parameters mean?
Retrieve a public video from Rumble. Accepts these parameters: url. Returns these fields: author_url, author_verified, author_followers, and view_count.
urlRequired- Specifies a Rumble channel URL for
profileanduser_posts, or a video URL forvideoandcomments. Forcomments, it parses comments and replies from the video detail page rather than serving as a standalone comment search.
What do the Rumble comments parameters mean?
Retrieve public comments from Rumble. Accepts these parameters: url. Returns these fields: text, author_name, is_pinned, and score.
urlRequired- Specifies a Rumble channel URL for
profileanduser_posts, or a video URL forvideoandcomments. Forcomments, it parses comments and replies from the video detail page rather than serving as a standalone comment search.Rumble: Video Comments, Live Chat, and Moderation PermissionsRumble moderation documentation distinguishes video comments from live chat and notes that actions like deleting, muting, and pinning require corresponding permissions. This only reads video comments and returned replies; it does not interpret the is_pinned field as an ability to pin content, nor does it grant live chat collection or moderation capabilities.Checked
What do the Rumble trending parameters mean?
Retrieve current trends from Rumble. Accepts these parameters: period, date, and sort. Returns these fields: author_verified, author_name, dislike_count, and revenue.
dateOptional- Provides compatibility with
periodfortrending. Allowed values aretoday,this-week,this-month,this-year, andall. SpecificYYYY-MM-DDdate strings are not accepted.Allowed values:allthis-monththis-weekthis-yeartoday periodOptional- Sets the time window for
trending. Allowed values aretoday,this-week(default),this-month,this-year, andall. Takes precedence overdate.Allowed values:allthis-monththis-weekthis-yeartoday sortOptional- Sets the raw sort order for
trending. Allowed values areviews(default),rumbles,date, andduration. Other values such asnewestorpopularare not used and fall back toviews.Allowed values:datedurationrumblesviews
How to use the Rumble API
- 01Read the public catalog and choose a platform action.
- 02Send the platform, action, and required parameters to POST /api/v1/social.
- 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
- 04Store the structured response fields needed by your application.
curl -X POST https://api.everyinfra.com/api/v1/social \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"platform":"rumble","action":"search","params":{"keyword":"<keyword>"}}'
Rumble API questions
What can I retrieve with the Rumble API?
Set platform to rumble. The current catalog lists search, channel details, posts by user, video details, comments, and more. These action names identify different Rumble objects or views; they are not interchangeable search modes.
Which input starts a Rumble `search` request?
Specifies the search query for video titles or topics in search. Does not search channel descriptions or comment text. Send it as keyword inside params.
Which fields can Rumble `search` return?
Its declared schema includes title, author_name, author_url, and author_followers. A declared field can still be absent from an individual source record, and every other action has its own field list.
Does every Rumble action return immediately?
No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.