BTC Digital Ltd
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/btc-digital-ltd/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/btc-digital-ltd/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1770249600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://btctcorp.com/bitcoin-treasury-corporation-provides-update-on-normal-course-issuer-bid/",
"holding_balance": 769.05,
"holding_net_change": -2.35,
"transaction_value_usd": 147738.9305,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1772582400000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://btctcorp.com/bitcoin-treasury-corporation-provides-february-update-on-normal-course-issuer-bid/",
"holding_balance": 761.63,
"holding_net_change": -7.42,
"transaction_value_usd": 539374.0464,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1775520000000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://btctcorp.com/bitcoin-treasury-corporation-provides-march-update-on-normal-course-issuer-bid/",
"holding_balance": 759.31,
"holding_net_change": -2.32,
"transaction_value_usd": 166879.0384,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/btc-digital-ltd/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
759.31
],
[
1782950400000,
759.31
],
[
1783036800000,
759.31
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/btc-digital-ltd/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
45531682.4605
],
[
1782950400000,
46688324.197299995
],
[
1783036800000,
47476609.4669
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/btc-digital-ltd/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 2.8,
"date": "2026-06-30",
"high": 3.0,
"open": 2.9,
"close": 2.8,
"volume": 16500
},
{
"low": 3.14,
"date": "2026-07-02",
"high": 3.66,
"open": 3.5,
"close": 3.35,
"volume": 8200
},
{
"low": 3.1,
"date": "2026-07-03",
"high": 3.35,
"open": 3.35,
"close": 3.1,
"volume": 953
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/btc-digital-ltd/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/btc-digital-ltd/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -13.89,
"six_month_return": -39.45,
"three_month_return": -15.53
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/btc-digital-ltd/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 146.3,
"total_btc_percentage": 0.004,
"share_price_change_state": "down"
}