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": 1778976000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-at-approximately-692-bitcoin-302775826.html",
"holding_balance": 692.4093000000001,
"holding_net_change": 17.06,
"transaction_value_usd": 1320953.4116,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1779580800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-reaches-approximately-700-bitcoin-302781478.html",
"holding_balance": 699.6865000000001,
"holding_net_change": 7.28,
"transaction_value_usd": 560476.6440000001,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1780358400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-reaches-approximately-704-3405-bitcoin-302788037.html",
"holding_balance": 704.3405000000001,
"holding_net_change": 4.65,
"transaction_value_usd": 310021.4985,
"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.
[
[
1780790400000,
704.3405000000001
],
[
1780876800000,
704.3405000000001
],
[
1780963200000,
704.3405000000001
]
]
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.
[
[
1780790400000,
44559122.69920501
],
[
1780876800000,
44421121.26504001
],
[
1780963200000,
43450406.23134501
]
]
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.19,
"date": "2026-06-04",
"high": 0.21,
"open": 0.2,
"close": 0.2,
"volume": 24100900
},
{
"low": 0.15,
"date": "2026-06-05",
"high": 0.2,
"open": 0.2,
"close": 0.15,
"volume": 36104300
},
{
"low": 0.174,
"date": "2026-06-08",
"high": 0.1928,
"open": 0.1921,
"close": 0.1802,
"volume": 75375650
}
]
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": 50.17,
"six_month_return": -37.86,
"three_month_return": 6.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": 53.7,
"total_btc_percentage": 0.003,
"share_price_change_state": "down"
}