KULR Technology Group Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/kulr-technology-group-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/kulr-technology-group-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1752019200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://bitcoinmagazine.com/news/kulr-technology-increases-bitcoin-holdings-to-101-million",
"holding_balance": 1021.0,
"holding_net_change": 90.0,
"transaction_value_usd": 9799560.0,
"average_entry_value_usd": 108884.0,
"transaction_value_calculated": false
},
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001662684/5e18a68d-560b-41e8-b910-0e960577ca26.html#",
"holding_balance": 1056.69,
"holding_net_change": 90.0,
"transaction_value_usd": 9799993.0,
"average_entry_value_usd": 108888.81,
"transaction_value_calculated": false
},
{
"date": 1784505600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1662684/000110465926086506/tm2621256d1_8k.htm",
"holding_balance": 723.69,
"holding_net_change": -333.0,
"transaction_value_usd": 21491154.0,
"average_entry_value_usd": -64538.0,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/kulr-technology-group-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
723.69
],
[
1787011200000,
723.69
],
[
1787097600000,
723.69
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/kulr-technology-group-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
45466504.5186
],
[
1787011200000,
46674429.9714
],
[
1787097600000,
46817206.7715
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/kulr-technology-group-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 2.31,
"date": "2026-08-14",
"high": 2.69,
"open": 2.5,
"close": 2.64,
"volume": 3619000
},
{
"low": 2.5,
"date": "2026-08-17",
"high": 2.65,
"open": 2.63,
"close": 2.62,
"volume": 970800
},
{
"low": 2.49,
"date": "2026-08-18",
"high": 2.5998,
"open": 2.53,
"close": 2.57,
"volume": 607845
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/kulr-technology-group-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.08
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/kulr-technology-group-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -6.88,
"six_month_return": -10.14,
"three_month_return": -34.44
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/kulr-technology-group-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 38.3,
"total_btc_percentage": 0.003,
"share_price_change_state": "down"
}