Hyperscale Data, 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/hyperscale-data-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/hyperscale-data-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings

Historical Bitcoin holdings for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    86771321.31765901
  ],
  [
    1788998400000,
    86590217.231001
  ],
  [
    1789084800000,
    84741626.07895599
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 0.1829,
    "date": "2026-09-08",
    "high": 0.204,
    "open": 0.1919,
    "close": 0.1879,
    "volume": 43395262
  },
  {
    "low": 0.1851,
    "date": "2026-09-09",
    "high": 0.2024,
    "open": 0.193,
    "close": 0.2014,
    "volume": 43373398
  },
  {
    "low": 0.1841,
    "date": "2026-09-10",
    "high": 0.2,
    "open": 0.1973,
    "close": 0.187,
    "volume": 29597971
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/hyperscale-data-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,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -70.89,
  "six_month_return": -79.81,
  "three_month_return": -82.06
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 321.9,
  "total_btc_percentage": 0.005,
  "share_price_change_state": "down"
}