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.
[
[
1786924800000,
3605.0
],
[
1787011200000,
3605.0
],
[
1787097600000,
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.
[
[
1786924800000,
226487513.7
],
[
1787011200000,
232504691.3
],
[
1787097600000,
233215921.75
]
]
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.8,
"date": "2026-08-14",
"high": 23.0,
"open": 23.0,
"close": 23.0,
"volume": 7661
},
{
"low": 22.82,
"date": "2026-08-17",
"high": 23.38,
"open": 23.02,
"close": 23.16,
"volume": 3975
},
{
"low": 22.2,
"date": "2026-08-18",
"high": 23.0,
"open": 22.8,
"close": 22.52,
"volume": 6784
}
]
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": -0.722,
"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": -0.18,
"six_month_return": -22.66,
"three_month_return": -23.14
}
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": 205.5,
"total_btc_percentage": 0.017,
"share_price_change_state": "up"
}