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.
[
[
1780790400000,
22.7
],
[
1780876800000,
22.7
],
[
1780963200000,
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.
[
[
1780790400000,
1436083.947
],
[
1780876800000,
1431636.336
],
[
1780963200000,
1400351.423
]
]
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": 3.81,
"date": "2026-06-04",
"high": 4.87,
"open": 4.76,
"close": 4.34,
"volume": 3030000
},
{
"low": 3.99,
"date": "2026-06-05",
"high": 4.69,
"open": 4.24,
"close": 4.04,
"volume": 1403100
},
{
"low": 3.34,
"date": "2026-06-08",
"high": 4.17,
"open": 4.02,
"close": 3.44,
"volume": 793212
}
]
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": 73.74,
"six_month_return": -29.8,
"three_month_return": 89.01
}
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": 5.2,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}