The Brooker Group
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/the-brooker-group/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/the-brooker-group/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1663113600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": null,
"holding_balance": 122.3,
"holding_net_change": 122.3,
"transaction_value_usd": 2477057.600514583,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1751241600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://weblink.set.or.th/dat/news/202508/0634NWS140820251854142290E.pdf",
"holding_balance": 164.7,
"holding_net_change": 42.4,
"transaction_value_usd": 4545418.648,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/the-brooker-group/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
164.7
],
[
1782950400000,
164.7
],
[
1783036800000,
164.7
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/the-brooker-group/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
9876161.385
],
[
1782950400000,
10127045.601
],
[
1783036800000,
10298030.553
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/the-brooker-group/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.15,
"date": "2026-07-01",
"high": 0.16,
"open": 0.15,
"close": 0.15,
"volume": 1106227
},
{
"low": 0.15,
"date": "2026-07-02",
"high": 0.16,
"open": 0.15,
"close": 0.16,
"volume": 8670924
},
{
"low": 0.15,
"date": "2026-07-03",
"high": 0.16,
"open": 0.15,
"close": 0.16,
"volume": 1621292
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/the-brooker-group/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": -0.861,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/the-brooker-group/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 6.67,
"six_month_return": -38.46,
"three_month_return": -11.11
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/the-brooker-group/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.6,
"total_btc_percentage": 0.001,
"share_price_change_state": "up"
}