Prenetics Global Ltd
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/prenetics-global-ltd/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/prenetics-global-ltd/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1761868800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir.prenetics.com/news-releases/news-release-details/prenetics-bolsters-bitcoin-treasury-strategic-acquisition-100",
"holding_balance": 378.4213,
"holding_net_change": 103.0,
"transaction_value_usd": 11230000.0,
"average_entry_value_usd": 109029.13,
"transaction_value_calculated": false
},
{
"date": 1763078400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir.prenetics.com/news-releases/news-release-details/prenetics-bolsters-bitcoin-treasury-strategic-acquisition-100",
"holding_balance": 491.0341,
"holding_net_change": 113.61,
"transaction_value_usd": 11380000.0,
"average_entry_value_usd": 100164.77,
"transaction_value_calculated": false
},
{
"date": 1764806400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir.prenetics.com/news-releases/news-release-details/prenetics-announces-update-capital-allocation-strategy-ceases",
"holding_balance": 510.0341,
"holding_net_change": 19.0,
"transaction_value_usd": 1819635.06,
"average_entry_value_usd": 95770.27,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/prenetics-global-ltd/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
510.0341
],
[
1788998400000,
510.0341
],
[
1789084800000,
510.0341
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/prenetics-global-ltd/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
40013077.905357
],
[
1788998400000,
39929564.921823
],
[
1789084800000,
39077119.428788
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/prenetics-global-ltd/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 25.41,
"date": "2026-09-08",
"high": 26.4,
"open": 25.44,
"close": 25.62,
"volume": 157890
},
{
"low": 23.93,
"date": "2026-09-09",
"high": 25.955,
"open": 25.5,
"close": 24.27,
"volume": 251711
},
{
"low": 23.34,
"date": "2026-09-10",
"high": 24.7,
"open": 24.09,
"close": 23.66,
"volume": 188201
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/prenetics-global-ltd/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.42,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.48
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/prenetics-global-ltd/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 24.46,
"six_month_return": 15.08,
"three_month_return": 22.91
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/prenetics-global-ltd/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 9.6,
"total_btc_percentage": 0.002,
"share_price_change_state": "down"
}