Riot Blockchain Inc

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/riot-blockchain-inc/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    15680.0
  ],
  [
    1788998400000,
    15680.0
  ],
  [
    1789084800000,
    15680.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    1230123753.6
  ],
  [
    1788998400000,
    1227556310.4
  ],
  [
    1789084800000,
    1201349542.4
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 21.645,
    "date": "2026-09-08",
    "high": 22.87,
    "open": 21.76,
    "close": 22.26,
    "volume": 14851600
  },
  {
    "low": 21.61,
    "date": "2026-09-09",
    "high": 22.7,
    "open": 22.55,
    "close": 22.07,
    "volume": 14783800
  },
  {
    "low": 20.78,
    "date": "2026-09-10",
    "high": 21.81,
    "open": 21.21,
    "close": 20.95,
    "volume": 10239100
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.2962,
  "quarterly_earnings_growth": 0.373,
  "eps_estimate_current_quarter": -0.2452
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 3.51,
  "six_month_return": 41.46,
  "three_month_return": -13.0
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/riot-blockchain-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 14.5,
  "total_btc_percentage": 0.075,
  "share_price_change_state": "up"
}