# Rumble Channel Videos API (https://www.socialcrawl.dev/platforms/rumble/channel-videos) > Returns channel metadata, videos, shorts, and a numeric cursor for the next page. Pass either `handle` or `url`. TL;DR: `GET /v1/rumble/channel/videos` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `handle` | no | Rumble channel handle. | | `url` | no | Rumble channel URL. | | `cursor` | no | Cursor from the previous response — the next page number (e.g. `2`). | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/rumble/channel/videos" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list a Rumble channel's videos with an API? Send a GET request to /v1/rumble/channel/videos with either the handle parameter (e.g. CuteCats223) or the url parameter set to the channel URL. SocialCrawl returns the channel's metadata plus its videos and shorts in one JSON response. ### What does the Rumble Channel Videos API return? The response includes channel metadata, an array of videos, an array of shorts, and a numeric cursor for the next page. Each item carries title, URL, thumbnail, published date, and view count in the unified PostList schema. ### Can I page through a channel's full upload history? Yes. Each response includes a numeric cursor — the next page number. Pass it back as the cursor parameter and keep looping until results end to archive a channel's complete upload history. ### How much does the Rumble Channel Videos API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required, so you can pull 100 pages of channel uploads before paying anything. ### Can I track a Rumble creator's posting activity? Yes. Poll the channel on a schedule, diff against your stored list to detect new uploads, and chart view counts over time. The schema matches our YouTube channel endpoints, so cross-platform creator dashboards need one parser, not two. See the full Rumble API: https://www.socialcrawl.dev/platforms/rumble ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list a Rumble channel's videos with the SocialCrawl API - What does the SocialCrawl Rumble Channel Videos API return?