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.
[
[
1782864000000,
154.0
],
[
1782950400000,
154.0
],
[
1783036800000,
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.
[
[
1782864000000,
9234540.700000001
],
[
1782950400000,
9469125.82
],
[
1783036800000,
9629002.459999999
]
]
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.176,
"date": "2026-06-30",
"high": 0.19,
"open": 0.189,
"close": 0.187,
"volume": 4275000
},
{
"low": 0.193,
"date": "2026-07-01",
"high": 0.229,
"open": 0.193,
"close": 0.21,
"volume": 11691600
},
{
"low": 0.194,
"date": "2026-07-02",
"high": 0.214,
"open": 0.205,
"close": 0.197,
"volume": 4225600
}
]
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": -24.81,
"six_month_return": -66.67,
"three_month_return": -44.19
}
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": 33.5,
"total_btc_percentage": 0.001,
"share_price_change_state": "down"
}