Sphere 3D Corp
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/sphere-3d-corp/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/sphere-3d-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1751241600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://sphere3d.gcs-web.com/news-releases/news-release-details/sphere-3d-reports-second-quarter-2025-financial-results",
"holding_balance": 20.5,
"holding_net_change": 20.5,
"transaction_value_usd": 2197667.035,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://sphere3d.gcs-web.com/static-files/b80c5de2-d5f5-4f84-b484-040096fb2b8f",
"holding_balance": 22.7,
"holding_net_change": 2.2,
"transaction_value_usd": 251078.432,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/sphere-3d-corp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
22.7
],
[
1779062400000,
22.7
],
[
1779148800000,
22.7
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/sphere-3d-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
1757657.822
],
[
1779062400000,
1746634.929
],
[
1779148800000,
1742452.227
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/sphere-3d-corp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 2.24,
"date": "2026-05-15",
"high": 2.429,
"open": 2.37,
"close": 2.29,
"volume": 146100
},
{
"low": 1.6,
"date": "2026-05-18",
"high": 2.23,
"open": 2.19,
"close": 1.68,
"volume": 578400
},
{
"low": 1.69,
"date": "2026-05-19",
"high": 1.86,
"open": 1.69,
"close": 1.8,
"volume": 89238
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/sphere-3d-corp/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -7.1,
"quarterly_earnings_growth": -0.4,
"eps_estimate_current_quarter": -7.2
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/sphere-3d-corp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 20.0,
"six_month_return": -61.12,
"three_month_return": 48.76
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/sphere-3d-corp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 24.4,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}