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.
[
[
1786924800000,
3918.0
],
[
1787011200000,
3918.0
],
[
1787097600000,
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.
[
[
1786924800000,
246152032.92
],
[
1787011200000,
252691645.08
],
[
1787097600000,
253464627.3
]
]
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.07,
"date": "2026-08-13",
"high": 6.35,
"open": 6.32,
"close": 6.18,
"volume": 282700
},
{
"low": 6.1,
"date": "2026-08-14",
"high": 6.3,
"open": 6.18,
"close": 6.3,
"volume": 189300
},
{
"low": 6.26,
"date": "2026-08-17",
"high": 6.66,
"open": 6.38,
"close": 6.58,
"volume": 930100
}
]
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": 2.81,
"one_month_return": 6.99,
"three_month_return": -1.79
}
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": 25.6,
"total_btc_percentage": 0.019,
"share_price_change_state": "up"
}