Riot Blockchain Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/riot-blockchain-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/riot-blockchain-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1764806400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.riotplatforms.com/riot-announces-november-2025-production-and-operations-updates/",
"holding_balance": 19368.0,
"holding_net_change": 44.0,
"transaction_value_usd": 4053544.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767657600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.riotplatforms.com/riot-announces-december-2025-production-and-operations-updates/",
"holding_balance": 18005.0,
"holding_net_change": -1363.0,
"transaction_value_usd": 127659943.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1775088000000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.riotplatforms.com/riot-announces-first-quarter-2026-production-and-operations-updates/",
"holding_balance": 15680.0,
"holding_net_change": -2325.0,
"transaction_value_usd": 155594556.75,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/riot-blockchain-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
15680.0
],
[
1780876800000,
15680.0
],
[
1780963200000,
15680.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/riot-blockchain-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
991973404.8
],
[
1780876800000,
988901222.4
],
[
1780963200000,
967291203.1999999
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/riot-blockchain-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 26.06,
"date": "2026-06-04",
"high": 28.08,
"open": 26.51,
"close": 27.47,
"volume": 16211400
},
{
"low": 23.98,
"date": "2026-06-05",
"high": 26.51,
"open": 26.51,
"close": 24.66,
"volume": 18367000
},
{
"low": 24.31,
"date": "2026-06-08",
"high": 26.165,
"open": 25.4225,
"close": 25.69,
"volume": 12910232
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/riot-blockchain-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.295,
"quarterly_earnings_growth": 0.373,
"eps_estimate_current_quarter": -0.28
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/riot-blockchain-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 6.55,
"six_month_return": 64.79,
"three_month_return": 74.76
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/riot-blockchain-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 10.0,
"total_btc_percentage": 0.075,
"share_price_change_state": "down"
}