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.
[
[
1782864000000,
22.7
],
[
1782950400000,
22.7
],
[
1783036800000,
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.
[
[
1782864000000,
1361195.285
],
[
1782950400000,
1395773.741
],
[
1783036800000,
1419339.973
]
]
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.602,
"date": "2026-06-30",
"high": 2.79,
"open": 2.64,
"close": 2.76,
"volume": 136200
},
{
"low": 2.43,
"date": "2026-07-01",
"high": 2.744,
"open": 2.66,
"close": 2.45,
"volume": 241800
},
{
"low": 2.36,
"date": "2026-07-02",
"high": 2.659,
"open": 2.45,
"close": 2.44,
"volume": 134000
}
]
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": -37.6,
"six_month_return": -23.51,
"three_month_return": 61.59
}
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": 8.5,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}