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.
[
[
1786924800000,
154.0
],
[
1787011200000,
154.0
],
[
1787097600000,
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.
[
[
1786924800000,
9675194.76
],
[
1787011200000,
9932239.24
],
[
1787097600000,
9962621.9
]
]
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.156,
"date": "2026-08-14",
"high": 0.168,
"open": 0.16,
"close": 0.16,
"volume": 3417600
},
{
"low": 0.156,
"date": "2026-08-17",
"high": 0.162,
"open": 0.161,
"close": 0.158,
"volume": 1354200
},
{
"low": 0.152,
"date": "2026-08-18",
"high": 0.158,
"open": 0.1551,
"close": 0.152,
"volume": 2567494
}
]
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": -11.11,
"six_month_return": -63.55,
"three_month_return": -33.04
}
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": 32.8,
"total_btc_percentage": 0.001,
"share_price_change_state": "down"
}