OBTC3.SA
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/obtc3-sa/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/obtc3-sa/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1783209600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/e62d7299-03ec-8be2-a3f1-5772e233536e?origin=2",
"holding_balance": 3904.0,
"holding_net_change": 8.0,
"transaction_value_usd": 488431.92,
"average_entry_value_usd": 61053.99,
"transaction_value_calculated": false
},
{
"date": 1783814400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/968fda51-5e90-e99f-5d59-0f89010b8582?origin=2",
"holding_balance": 3912.0,
"holding_net_change": 8.0,
"transaction_value_usd": 496806.76,
"average_entry_value_usd": 62100.85,
"transaction_value_calculated": false
},
{
"date": 1785024000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/00541c4f-7e36-f9b1-cac4-7b0cea0874fb?origin=2",
"holding_balance": 3918.0,
"holding_net_change": 6.0,
"transaction_value_usd": 394451.71,
"average_entry_value_usd": 65741.95,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/obtc3-sa/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
3918.0
],
[
1788998400000,
3918.0
],
[
1789084800000,
3918.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/obtc3-sa/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
307374034.86
],
[
1788998400000,
306732501.54
],
[
1789084800000,
300184152.23999995
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/obtc3-sa/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 6.86,
"date": "2026-09-08",
"high": 7.25,
"open": 7.1,
"close": 6.99,
"volume": 928000
},
{
"low": 7.08,
"date": "2026-09-09",
"high": 7.52,
"open": 7.09,
"close": 7.49,
"volume": 1676300
},
{
"low": 6.96,
"date": "2026-09-10",
"high": 7.54,
"open": 7.21,
"close": 7.33,
"volume": 722000
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/obtc3-sa/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/obtc3-sa/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_week_return": 18.99,
"one_month_return": 18.8,
"three_month_return": 24.24
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/obtc3-sa/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 27.9,
"total_btc_percentage": 0.019,
"share_price_change_state": "up"
}