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.
[
[
1780790400000,
5833.0
],
[
1780876800000,
5833.0
],
[
1780963200000,
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.
[
[
1780790400000,
369016637.13
],
[
1780876800000,
367873777.44
],
[
1780963200000,
359834795.17
]
]
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": 1.545,
"date": "2026-06-04",
"high": 1.85,
"open": 1.65,
"close": 1.57,
"volume": 334800
},
{
"low": 1.42,
"date": "2026-06-05",
"high": 1.69,
"open": 1.6,
"close": 1.61,
"volume": 216300
},
{
"low": 1.3401,
"date": "2026-06-08",
"high": 1.59,
"open": 1.58,
"close": 1.55,
"volume": 103220
}
]
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": 1.97,
"six_month_return": -77.89,
"three_month_return": -50.32
}
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": 293.1,
"total_btc_percentage": 0.028,
"share_price_change_state": "up"
}