Rumble Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/rumble-inc/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/rumble-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1741737600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.globenewswire.com/news-release/2025/03/12/3041366/0/en/Rumble-Announces-Purchases-of-17-1-Million-in-Bitcoin-in-Accordance-with-Previously-Announced-Bitcoin-Treasury-Strategy.html",
"holding_balance": 188.0,
"holding_net_change": 188.0,
"transaction_value_usd": 17100000.0,
"average_entry_value_usd": 90957.45,
"transaction_value_calculated": false
},
{
"date": 1746662400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://x.com/chrispavlovski/status/1920573753332826279",
"holding_balance": 210.8,
"holding_net_change": 22.82,
"transaction_value_usd": 2355713.164,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/rumble-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
210.8
],
[
1788998400000,
210.8
],
[
1789084800000,
210.8
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/rumble-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
16537633.116
],
[
1788998400000,
16503116.724
],
[
1789084800000,
16150796.144
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/rumble-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 8.2,
"date": "2026-09-08",
"high": 8.675,
"open": 8.53,
"close": 8.39,
"volume": 2958832
},
{
"low": 7.51,
"date": "2026-09-09",
"high": 8.5,
"open": 8.35,
"close": 7.52,
"volume": 4739323
},
{
"low": 7.22,
"date": "2026-09-10",
"high": 7.52,
"open": 7.37,
"close": 7.365,
"volume": 3059745
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/rumble-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.02,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.1
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/rumble-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 6.43,
"six_month_return": 31.99,
"three_month_return": 5.21
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/rumble-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.4,
"total_btc_percentage": 0.001,
"share_price_change_state": "down"
}