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": 1779062400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.rad.cvm.gov.br/EnetWeb/frmExibirArquivoIPE.aspx?CodigoInstituicao=1&NumeroProtocoloEntrega=1523416&NumeroSequencialRegistroCvm=27910&TipoDocumento=666&Status=&Convenio=N%C3%A3o&Versao=1&DescricaoTipoDocumento=IPE&ExibirUserControl=false",
"holding_balance": 3737.0,
"holding_net_change": 5.0,
"transaction_value_usd": 390900.0,
"average_entry_value_usd": 78180.0,
"transaction_value_calculated": false
},
{
"date": 1779667200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/92b41d1b-a51f-fec5-e340-6412c65238d8?origin=2",
"holding_balance": 3742.0,
"holding_net_change": 5.0,
"transaction_value_usd": 381911.3,
"average_entry_value_usd": 76382.26,
"transaction_value_calculated": false
},
{
"date": 1780272000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://api.mziq.com/mzfilemanager/v2/d/1c906e2c-8d06-4a32-a1a8-a240167c77f2/60a6a79e-7cf6-fd54-6e04-12fe057d8ab0?origin=2",
"holding_balance": 3762.0,
"holding_net_change": 20.0,
"transaction_value_usd": 1506930.6,
"average_entry_value_usd": 75346.53,
"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.
[
[
1780790400000,
3762.0
],
[
1780876800000,
3762.0
],
[
1780963200000,
3762.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.
[
[
1780790400000,
237997700.82
],
[
1780876800000,
237260612.16
],
[
1780963200000,
232075861.38
]
]
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.91,
"date": "2026-06-03",
"high": 6.29,
"open": 6.17,
"close": 6.12,
"volume": 585700
},
{
"low": 5.71,
"date": "2026-06-05",
"high": 6.06,
"open": 6.06,
"close": 5.95,
"volume": 908200
},
{
"low": 5.95,
"date": "2026-06-08",
"high": 6.16,
"open": 6.1,
"close": 5.99,
"volume": 413800
}
]
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.
{
"all_time_return": -15.16,
"one_week_return": -14.18,
"one_month_return": -14.67
}
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.1,
"total_btc_percentage": 0.018,
"share_price_change_state": "up"
}