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.
[
[
1780790400000,
510.0341
],
[
1780876800000,
510.0341
],
[
1780963200000,
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.
[
[
1780790400000,
32266598.389101
],
[
1780876800000,
32166667.407888
],
[
1780963200000,
31463743.511609
]
]
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": 20.2,
"date": "2026-06-04",
"high": 21.43,
"open": 20.98,
"close": 20.79,
"volume": 378100
},
{
"low": 19.22,
"date": "2026-06-05",
"high": 21.035,
"open": 20.58,
"close": 19.86,
"volume": 197600
},
{
"low": 19.24,
"date": "2026-06-08",
"high": 20.74,
"open": 20.18,
"close": 20.0,
"volume": 279709
}
]
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.49,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.775
}
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": 26.02,
"six_month_return": 43.58,
"three_month_return": -2.39
}
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.5,
"total_btc_percentage": 0.002,
"share_price_change_state": "down"
}