OBTC3.SA

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/obtc3-sa/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    3918.0
  ],
  [
    1787011200000,
    3918.0
  ],
  [
    1787097600000,
    3918.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    246152032.92
  ],
  [
    1787011200000,
    252691645.08
  ],
  [
    1787097600000,
    253464627.3
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": 0,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_week_return": 2.81,
  "one_month_return": 6.99,
  "three_month_return": -1.79
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/obtc3-sa/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 25.6,
  "total_btc_percentage": 0.019,
  "share_price_change_state": "up"
}