CoinShares Physical Bitcoin (BTC)
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/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/coinshares-physical-bitcoin-btc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1730332800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investor.coinshares.com/pressreleases/coinshares-announces-q3-2024-results",
"holding_balance": 93.0,
"holding_net_change": 15.0,
"transaction_value_usd": 1053032.85,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1735603200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://coinshares-files.s3.eu-north-1.amazonaws.com/coinshares_earnings_report_q4_2024.pdf",
"holding_balance": 163.0,
"holding_net_change": 70.0,
"transaction_value_usd": 6535273.5,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1743379200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://coinshares-files.s3.eu-north-1.amazonaws.com/coinshares_earnings_report_q1_2025.pdf",
"holding_balance": 236.0,
"holding_net_change": 73.0,
"transaction_value_usd": 6024915.569999999,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
236.0
],
[
1779062400000,
236.0
],
[
1779148800000,
236.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
18273446.96
],
[
1779062400000,
18158847.72
],
[
1779148800000,
18115362.36
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 56.93,
"date": "2026-05-15",
"high": 56.93,
"open": 56.93,
"close": 56.93,
"volume": 500
},
{
"low": 55.43,
"date": "2026-05-18",
"high": 55.51,
"open": 55.43,
"close": 55.51,
"volume": 758
},
{
"low": 57.93,
"date": "2026-05-19",
"high": 58.4,
"open": 58.17,
"close": 57.93,
"volume": 4766
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": null,
"quarterly_earnings_growth": null,
"eps_estimate_current_quarter": null
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 9.76,
"six_month_return": -25.05,
"three_month_return": 13.41
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/coinshares-physical-bitcoin-btc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": "-",
"total_btc_percentage": 0.001,
"share_price_change_state": "down"
}