Genius Group Ltd
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/genius-group-ltd/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/genius-group-ltd/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1762732800000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1847806/000149315225021438/form6-k.htm",
"holding_balance": 138.0,
"holding_net_change": -62.0,
"transaction_value_usd": 6570722.18,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1764806400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir.geniusgroup.net/news-events/press-releases/detail/218/genius-group-increases-bitcoin-treasury-by-30-from-138-to",
"holding_balance": 180.0,
"holding_net_change": 42.0,
"transaction_value_usd": 3869292.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767139200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://ir.geniusgroup.net/news-events/press-releases/detail/229/genius-group-announces-2025-financial-results-with-80-pro",
"holding_balance": 154.0,
"holding_net_change": -26.0,
"transaction_value_usd": 2274773.28,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/genius-group-ltd/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
154.0
],
[
1788998400000,
154.0
],
[
1789084800000,
154.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/genius-group-ltd/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
12081572.58
],
[
1788998400000,
12056356.62
],
[
1789084800000,
11798968.72
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/genius-group-ltd/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.173,
"date": "2026-09-08",
"high": 0.181,
"open": 0.181,
"close": 0.1731,
"volume": 1709993
},
{
"low": 0.17,
"date": "2026-09-09",
"high": 0.178,
"open": 0.1756,
"close": 0.1701,
"volume": 2226556
},
{
"low": 0.1636,
"date": "2026-09-10",
"high": 0.1714,
"open": 0.1685,
"close": 0.1649,
"volume": 1659738
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/genius-group-ltd/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/genius-group-ltd/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 9.21,
"six_month_return": -55.07,
"three_month_return": -27.36
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/genius-group-ltd/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 36.1,
"total_btc_percentage": 0.001,
"share_price_change_state": "down"
}