Bullish
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/bullish/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/bullish/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1751241600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://s206.q4cdn.com/295320002/files/doc_financials/2025/q2/Bullish-2025Q2-Shareholder-Update.pdf",
"holding_balance": 24300.0,
"holding_net_change": 300.0,
"transaction_value_usd": 32160981.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://s206.q4cdn.com/295320002/files/doc_financials/2025/q3/Bullish-2025Q3-Shareholder-Update-2025_11_18.pdf",
"holding_balance": 24400.0,
"holding_net_change": 100.0,
"transaction_value_usd": 11412656.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767139200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://s206.q4cdn.com/295320002/files/doc_financials/2025/q4/Bullish-2025Q4-Shareholder-Update-2026_2_05-updated.pdf",
"holding_balance": 23300.0,
"holding_net_change": -1100.0,
"transaction_value_usd": 96240408.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/bullish/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
23300.0
],
[
1788998400000,
23300.0
],
[
1789084800000,
23300.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/bullish/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
1827926241.0
],
[
1788998400000,
1824111099.0
],
[
1789084800000,
1785168644
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/bullish/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 34.57,
"date": "2026-09-08",
"high": 35.97,
"open": 35.9,
"close": 35.53,
"volume": 1197800
},
{
"low": 34.29,
"date": "2026-09-09",
"high": 36.0,
"open": 35.89,
"close": 34.34,
"volume": 1065001
},
{
"low": 33.393,
"date": "2026-09-10",
"high": 34.8495,
"open": 33.747,
"close": 33.88,
"volume": 1102532
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/bullish/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.29,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0.0912
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/bullish/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 38.17,
"six_month_return": -8.9,
"three_month_return": 29.81
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/bullish/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 34.7,
"total_btc_percentage": 0.111,
"share_price_change_state": "down"
}