Bitcoin Group SE
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/bitcoin-group-se/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/bitcoin-group-se/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1640908800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://bitcoingroup.com/images/PDF/FB_2021/BitcoinGroup_GB2021_EN.pdf",
"holding_balance": 3768.0,
"holding_net_change": 3768.0,
"transaction_value_usd": 174567457.7443226,
"average_entry_value_usd": 3742.23,
"transaction_value_calculated": true
},
{
"date": 1656547200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://bitcoingroup.com/images/PDF/FB_2022/BitcoinGroup_HJB2022_EN.pdf",
"holding_balance": 3589.0,
"holding_net_change": -179.0,
"transaction_value_usd": 2309836.0,
"average_entry_value_usd": -12904.11,
"transaction_value_calculated": false
},
{
"date": 1739059200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://x.com/HODL15Capital/status/1888751095318552896",
"holding_balance": 3605.0,
"holding_net_change": 16.0,
"transaction_value_usd": 1543646.08,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/bitcoin-group-se/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
3605.0
],
[
1782950400000,
3605.0
],
[
1783036800000,
3605.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/bitcoin-group-se/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
216172202.75
],
[
1782950400000,
221663627.15
],
[
1783036800000,
225406193.95
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/bitcoin-group-se/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 22.96,
"date": "2026-07-01",
"high": 24.96,
"open": 23.56,
"close": 24.9,
"volume": 25036
},
{
"low": 24.06,
"date": "2026-07-02",
"high": 25.18,
"open": 25.04,
"close": 24.06,
"volume": 17766
},
{
"low": 24.58,
"date": "2026-07-03",
"high": 25.42,
"open": 24.7,
"close": 25.18,
"volume": 7214
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/bitcoin-group-se/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 23.884,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/bitcoin-group-se/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -9.62,
"six_month_return": -25.85,
"three_month_return": -16.01
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/bitcoin-group-se/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 179.0,
"total_btc_percentage": 0.017,
"share_price_change_state": "up"
}