Fragbite Group AB
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/fragbite-group-ab/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/fragbite-group-ab/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1760313600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://fragbitegroup.com/en/press/fragbite-group-holdings-increased-with-10-25-btc/",
"holding_balance": 19.75,
"holding_net_change": 10.25,
"transaction_value_usd": 1248499.53,
"average_entry_value_usd": 121804.83,
"transaction_value_calculated": false
},
{
"date": 1760918400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://fragbitegroup.com/en/press/fragbite-group-holdings-increased-with-5-12-btc/",
"holding_balance": 24.88,
"holding_net_change": 5.12,
"transaction_value_usd": 545291.42,
"average_entry_value_usd": 106502.23,
"transaction_value_calculated": false
},
{
"date": 1761264000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://fragbitegroup.com/en/press/fragbite-group-holdings-increased-with-4-btc/",
"holding_balance": 28.88,
"holding_net_change": 4.0,
"transaction_value_usd": 437701.88,
"average_entry_value_usd": 109425.47,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/fragbite-group-ab/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
28.88
],
[
1787011200000,
28.88
],
[
1787097600000,
28.88
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/fragbite-group-ab/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
1814413.1472
],
[
1787011200000,
1862617.3328
],
[
1787097600000,
1868315.068
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/fragbite-group-ab/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 5.34,
"date": "2026-08-14",
"high": 5.96,
"open": 5.78,
"close": 5.9,
"volume": 1028
},
{
"low": 5.58,
"date": "2026-08-17",
"high": 6.06,
"open": 5.76,
"close": 5.58,
"volume": 5116
},
{
"low": 5.52,
"date": "2026-08-18",
"high": 6.08,
"open": 5.6,
"close": 6.08,
"volume": 6969
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/fragbite-group-ab/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/fragbite-group-ab/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 20.63,
"six_month_return": -6.75,
"three_month_return": 0.33
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/fragbite-group-ab/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 4.1,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}