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.
[
[
1786924800000,
510.0341
],
[
1787011200000,
510.0341
],
[
1787097600000,
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.
[
[
1786924800000,
32043371.764554
],
[
1787011200000,
32894679.881546
],
[
1787097600000,
32995304.509135
]
]
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": 19.25,
"date": "2026-08-14",
"high": 20.0,
"open": 20.0,
"close": 19.75,
"volume": 96600
},
{
"low": 19.27,
"date": "2026-08-17",
"high": 20.5,
"open": 19.66,
"close": 19.37,
"volume": 221000
},
{
"low": 18.12,
"date": "2026-08-18",
"high": 19.76,
"open": 19.6,
"close": 19.4,
"volume": 294773
}
]
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": -6.87,
"six_month_return": -10.76,
"three_month_return": 33.43
}
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": 10.2,
"total_btc_percentage": 0.002,
"share_price_change_state": "down"
}