Next Technology Holding Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/next-technology-holding-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/next-technology-holding-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/next-technology-holding-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
5833.0
],
[
1787011200000,
5833.0
],
[
1787097600000,
5833.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
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.
[
[
1786924800000,
366463708.02
],
[
1787011200000,
376199684.98
],
[
1787097600000,
377350477.55
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/next-technology-holding-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/next-technology-holding-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": -0.734,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/next-technology-holding-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -93.76,
"six_month_return": -98.07,
"three_month_return": -96.0
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/next-technology-holding-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 4342.1,
"total_btc_percentage": 0.028,
"share_price_change_state": "up"
}