Cathedra Bitcoin Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/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/cathedra-bitcoin-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1743379200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.cathedra.com/_resources/financials/CBIT-2025Q1-FS.pdf?v=022406",
"holding_balance": 50.55,
"holding_net_change": 2.45,
"transaction_value_usd": 202206.0705,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1751241600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.cathedra.com/_resources/financials/CBIT-2025Q2-FS.pdf?v=022406",
"holding_balance": 0.58,
"holding_net_change": -49.97,
"transaction_value_usd": 5356947.4019,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.cathedra.com/_resources/financials/CBIT-2025Q3-FS.pdf?v=022406",
"holding_balance": 7.57,
"holding_net_change": 6.99,
"transaction_value_usd": 797744.6544,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
7.57
],
[
1780876800000,
7.57
],
[
1780963200000,
7.57
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
478905.5277
],
[
1780876800000,
477422.3376
],
[
1780963200000,
466989.4393
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.335,
"date": "2026-05-29",
"high": 0.38,
"open": 0.335,
"close": 0.38,
"volume": 20333
},
{
"low": 0.38,
"date": "2026-06-01",
"high": 0.38,
"open": 0.38,
"close": 0.38,
"volume": 0
},
{
"low": 0.38,
"date": "2026-06-02",
"high": 0.38,
"open": 0.38,
"close": 0.38,
"volume": 0
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/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.01
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 16.92,
"six_month_return": -72.86,
"three_month_return": -37.7
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/cathedra-bitcoin-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 14.1,
"total_btc_percentage": 0.0,
"share_price_change_state": "up"
}