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.
[
[
1780790400000,
3605.0
],
[
1780876800000,
3605.0
],
[
1780963200000,
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.
[
[
1780790400000,
228065314.05
],
[
1780876800000,
227358986.4
],
[
1780963200000,
222390611.45
]
]
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": 27.68,
"date": "2026-06-04",
"high": 28.4,
"open": 28.4,
"close": 27.86,
"volume": 10544
},
{
"low": 27.4,
"date": "2026-06-05",
"high": 28.6,
"open": 28.4,
"close": 27.4,
"volume": 12432
},
{
"low": 26.5,
"date": "2026-06-08",
"high": 27.32,
"open": 26.8,
"close": 26.9,
"volume": 18893
}
]
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": -15.3,
"six_month_return": -22.7,
"three_month_return": -12.32
}
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": 166.7,
"total_btc_percentage": 0.017,
"share_price_change_state": "up"
}