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": 1781395200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/25d4b143-d801-5eac-ad91-b8e071fee6af?origin=2",
"holding_balance": 3804.0,
"holding_net_change": 1.0,
"transaction_value_usd": 62615.89,
"average_entry_value_usd": 62615.89,
"transaction_value_calculated": false
},
{
"date": 1782000000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/63cd8e05-85e7-cc1a-e6a2-6730a452b832?origin=2",
"holding_balance": 3822.0,
"holding_net_change": 18.0,
"transaction_value_usd": 1154174.11,
"average_entry_value_usd": 64120.78,
"transaction_value_calculated": false
},
{
"date": 1782604800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/565543b0-1f14-c7f3-b38e-c2f5b618a597?origin=2",
"holding_balance": 3896.0,
"holding_net_change": 74.0,
"transaction_value_usd": 4901263.7,
"average_entry_value_usd": 66233.29,
"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.
[
[
1782864000000,
3896.0
],
[
1782950400000,
3896.0
],
[
1783036800000,
3896.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.
[
[
1782864000000,
233621886.8
],
[
1782950400000,
239556585.68
],
[
1783036800000,
243601257.04
]
]
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": 5.89,
"date": "2026-07-01",
"high": 6.1,
"open": 5.96,
"close": 6.09,
"volume": 345500
},
{
"low": 6.12,
"date": "2026-07-02",
"high": 6.37,
"open": 6.19,
"close": 6.27,
"volume": 142400
},
{
"low": 6.05,
"date": "2026-07-03",
"high": 6.29,
"open": 6.27,
"close": 6.29,
"volume": 70800
}
]
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": 6.43,
"one_month_return": 2.78,
"three_month_return": -10.91
}
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.4,
"total_btc_percentage": 0.019,
"share_price_change_state": "up"
}