Next Technology Holding 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/next-technology-holding-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/next-technology-holding-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1696032000000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.sec.gov/Archives/edgar/data/1784970/000109991023000212/wetg_10q.htm",
    "holding_balance": 833.0,
    "holding_net_change": 833.0,
    "transaction_value_usd": 24990000.0,
    "average_entry_value_usd": 30000.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1743379200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.sec.gov/Archives/edgar/data/1784970/000121390025041307/ea0240879-10q_nexttech.htm",
    "holding_balance": 5833.0,
    "holding_net_change": 5000.0,
    "transaction_value_usd": 158083667.0,
    "average_entry_value_usd": 31616.73,
    "transaction_value_calculated": false
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/next-technology-holding-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    5833.0
  ],
  [
    1787011200000,
    5833.0
  ],
  [
    1787097600000,
    5833.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/next-technology-holding-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    366463708.02
  ],
  [
    1787011200000,
    376199684.98
  ],
  [
    1787097600000,
    377350477.55
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 6.02,
    "date": "2026-08-14",
    "high": 7.1599,
    "open": 6.1,
    "close": 6.535,
    "volume": 153837
  },
  {
    "low": 5.825,
    "date": "2026-08-17",
    "high": 6.53,
    "open": 6.34,
    "close": 5.9,
    "volume": 55014
  },
  {
    "low": 5.41,
    "date": "2026-08-18",
    "high": 6.0,
    "open": 5.82,
    "close": 5.72,
    "volume": 57813
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/next-technology-holding-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.734,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/next-technology-holding-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -93.76,
  "six_month_return": -98.07,
  "three_month_return": -96.0
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/next-technology-holding-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 4342.1,
  "total_btc_percentage": 0.028,
  "share_price_change_state": "up"
}