Hyperscale Data, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/hyperscale-data-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/hyperscale-data-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1783987200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-reaches-1-032-bitcoin-worth-approximately-65-8-million-and-acquired-130-bitcoin-during-the-week-ended-july-12--2026--302824548.html",
"holding_balance": 1032.4959,
"holding_net_change": 132.85,
"transaction_value_usd": 8633763.408499999,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1784592000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-reaches-1-087-bitcoin-worth-approximately-70-3-million-302830244.html",
"holding_balance": 1087.4527,
"holding_net_change": 54.96,
"transaction_value_usd": 3657049.9416,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1785196800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-reaches-1-106-bitcoin-worth-approximately-71-7-million-302835979.html",
"holding_balance": 1106.0467,
"holding_net_change": 18.59,
"transaction_value_usd": 1185408.4528,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
1106.0467
],
[
1787011200000,
1106.0467
],
[
1787097600000,
1106.0467
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
69488423.61139801
],
[
1787011200000,
71334548.279302
],
[
1787097600000,
71552760.23274501
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.11,
"date": "2026-08-13",
"high": 0.12,
"open": 0.12,
"close": 0.11,
"volume": 65005500
},
{
"low": 0.09,
"date": "2026-08-14",
"high": 0.1,
"open": 0.1,
"close": 0.09,
"volume": 62970900
},
{
"low": 0.09,
"date": "2026-08-17",
"high": 0.09,
"open": 0.09,
"close": 0.09,
"volume": 0
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -25.0,
"six_month_return": -55.0,
"three_month_return": -40.0
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 219.8,
"total_btc_percentage": 0.005,
"share_price_change_state": "down"
}