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.
[
[
1782864000000,
28.88
],
[
1782950400000,
28.88
],
[
1783036800000,
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.
[
[
1782864000000,
1731776.204
],
[
1782950400000,
1775768.5304
],
[
1783036800000,
1805750.5912
]
]
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": 4.59,
"date": "2026-07-01",
"high": 4.59,
"open": 4.59,
"close": 4.59,
"volume": 10
},
{
"low": 4.35,
"date": "2026-07-02",
"high": 4.91,
"open": 4.35,
"close": 4.9,
"volume": 465
},
{
"low": 4.4,
"date": "2026-07-03",
"high": 4.99,
"open": 4.91,
"close": 4.99,
"volume": 2726
}
]
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": -17.66,
"six_month_return": -14.85,
"three_month_return": -27.89
}
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.7,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}