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.
[
[
1778976000000,
23300.0
],
[
1779062400000,
23300.0
],
[
1779148800000,
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.
[
[
1778976000000,
1804115738.0
],
[
1779062400000,
1792801491.0
],
[
1779148800000,
1788508233
]
]
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": 35.5,
"date": "2026-05-15",
"high": 38.96,
"open": 38.96,
"close": 35.66,
"volume": 2197000
},
{
"low": 34.43,
"date": "2026-05-18",
"high": 36.345,
"open": 35.89,
"close": 35.56,
"volume": 1182000
},
{
"low": 34.95,
"date": "2026-05-19",
"high": 37.4899,
"open": 35.24,
"close": 36.23,
"volume": 1513288
}
]
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": -15.94,
"six_month_return": -5.85,
"three_month_return": 13.75
}
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": 33.2,
"total_btc_percentage": 0.111,
"share_price_change_state": "down"
}