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.
[
[
1778976000000,
510.0341
],
[
1779062400000,
510.0341
],
[
1779148800000,
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.
[
[
1778976000000,
39491868.958226
],
[
1779062400000,
39244201.499607
],
[
1779148800000,
39150222.616341
]
]
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": 15.3,
"date": "2026-05-15",
"high": 17.69,
"open": 17.56,
"close": 15.61,
"volume": 384000
},
{
"low": 14.39,
"date": "2026-05-18",
"high": 16.62,
"open": 15.85,
"close": 14.54,
"volume": 371900
},
{
"low": 14.0,
"date": "2026-05-19",
"high": 15.26,
"open": 14.62,
"close": 14.615,
"volume": 288044
}
]
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": -19.7,
"six_month_return": 19.8,
"three_month_return": -27.14
}
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": 14.7,
"total_btc_percentage": 0.002,
"share_price_change_state": "down"
}