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.
[
[
1780790400000,
23300.0
],
[
1780876800000,
23300.0
],
[
1780963200000,
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.
[
[
1780790400000,
1474042113.0
],
[
1780876800000,
1469476944.0
],
[
1780963200000,
1437365117.0
]
]
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": 28.06,
"date": "2026-06-04",
"high": 30.2,
"open": 28.33,
"close": 29.66,
"volume": 2276500
},
{
"low": 26.9,
"date": "2026-06-05",
"high": 29.17,
"open": 29.07,
"close": 26.96,
"volume": 3027900
},
{
"low": 26.84,
"date": "2026-06-08",
"high": 28.46,
"open": 27.5,
"close": 27.21,
"volume": 1780914
}
]
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.1544,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0.1703
}
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": -33.96,
"six_month_return": -43.8,
"three_month_return": -24.54
}
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.2,
"total_btc_percentage": 0.111,
"share_price_change_state": "down"
}