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.
[
[
1778976000000,
210.8
],
[
1779062400000,
210.8
],
[
1779148800000,
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.
[
[
1778976000000,
16322214.488
],
[
1779062400000,
16219852.116
],
[
1779148800000,
16181010.108
]
]
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": 6.91,
"date": "2026-05-15",
"high": 7.75,
"open": 7.245,
"close": 7.205,
"volume": 3884400
},
{
"low": 7.06,
"date": "2026-05-18",
"high": 7.6,
"open": 7.21,
"close": 7.5,
"volume": 2552300
},
{
"low": 7.03,
"date": "2026-05-19",
"high": 7.47,
"open": 7.43,
"close": 7.07,
"volume": 2414842
}
]
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.1,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.09
}
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": 2.46,
"six_month_return": 25.35,
"three_month_return": 20.24
}
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": 1.0,
"total_btc_percentage": 0.001,
"share_price_change_state": "down"
}