WonderFi Technologies Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/wonderfi-technologies-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/wonderfi-technologies-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1703980800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sedarplus.ca/csa-party/records/document.html?id=6a66ed4e3bff31f6e6a1fe101c8c5f5aca269729c00d9ca9d851a3cc11c3ffab",
"holding_balance": 59.81,
"holding_net_change": 59.81,
"transaction_value_usd": 2528049.6781,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1735603200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.sedarplus.ca/csa-party/records/document.html?id=6a66ed4e3bff31f6e6a1fe101c8c5f5aca269729c00d9ca9d851a3cc11c3ffab",
"holding_balance": 39.8,
"holding_net_change": -20.01,
"transaction_value_usd": 1868154.6105,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/wonderfi-technologies-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
39.8
],
[
1780876800000,
39.8
],
[
1780963200000,
39.8
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/wonderfi-technologies-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
2517891.678
],
[
1780876800000,
2510093.664
],
[
1780963200000,
2455241.702
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/wonderfi-technologies-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.355,
"date": "2026-05-29",
"high": 0.36,
"open": 0.355,
"close": 0.36,
"volume": 63530
},
{
"low": 0.355,
"date": "2026-06-01",
"high": 0.36,
"open": 0.355,
"close": 0.3575,
"volume": 62818
},
{
"low": 0.355,
"date": "2026-06-02",
"high": 0.36,
"open": 0.36,
"close": 0.36,
"volume": 73163
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/wonderfi-technologies-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": -0.766,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/wonderfi-technologies-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 5.11,
"six_month_return": 38.46,
"three_month_return": 12.5
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/wonderfi-technologies-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 1.0,
"total_btc_percentage": 0.0,
"share_price_change_state": "up"
}