Gemini Space Station, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/gemini-space-station-inc/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/gemini-space-station-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1751241600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/2055592/000110465925079323/tm255912-12_drsa.htm",
"holding_balance": 4002.0,
"holding_net_change": 4002.0,
"transaction_value_usd": 106478000.0,
"average_entry_value_usd": 26606.2,
"transaction_value_calculated": false
},
{
"date": 1762732800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.gemini.com/node/7166/html",
"holding_balance": 5304.0,
"holding_net_change": 1300.0,
"transaction_value_usd": 157268000.0,
"average_entry_value_usd": 120975.38,
"transaction_value_calculated": false
},
{
"date": 1767139200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://investors.gemini.com/node/7541/ixbrl-viewer",
"holding_balance": 4827.0,
"holding_net_change": -477.0,
"transaction_value_usd": 41733340.56,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/gemini-space-station-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
4827.0
],
[
1779062400000,
4827.0
],
[
1779148800000,
4827.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/gemini-space-station-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
373753934.22
],
[
1779062400000,
371409991.29
],
[
1779148800000,
370520568.27
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/gemini-space-station-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 5.42,
"date": "2026-05-15",
"high": 6.96,
"open": 6.745,
"close": 5.58,
"volume": 17026000
},
{
"low": 5.13,
"date": "2026-05-18",
"high": 5.62,
"open": 5.4,
"close": 5.37,
"volume": 2922700
},
{
"low": 4.91,
"date": "2026-05-19",
"high": 5.379,
"open": 5.3,
"close": 4.95,
"volume": 2649229
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/gemini-space-station-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.63,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -1.1933
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/gemini-space-station-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 6.0,
"six_month_return": -60.87,
"three_month_return": -22.35
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/gemini-space-station-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 54.6,
"total_btc_percentage": 0.023,
"share_price_change_state": "up"
}