Gemini Space Station, Inc.

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/gemini-space-station-inc/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/gemini-space-station-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/gemini-space-station-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    4827.0
  ],
  [
    1780876800000,
    4827.0
  ],
  [
    1780963200000,
    4827.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
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.

Sample response
200 Successful response
[
  [
    1780790400000,
    305373445.47
  ],
  [
    1780876800000,
    304427691.36
  ],
  [
    1780963200000,
    297775168.23
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/gemini-space-station-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 4.5,
    "date": "2026-06-04",
    "high": 4.79,
    "open": 4.5,
    "close": 4.62,
    "volume": 1567700
  },
  {
    "low": 4.145,
    "date": "2026-06-05",
    "high": 4.65,
    "open": 4.54,
    "close": 4.185,
    "volume": 1928800
  },
  {
    "low": 4.3,
    "date": "2026-06-08",
    "high": 4.87,
    "open": 4.32,
    "close": 4.81,
    "volume": 2025714
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/gemini-space-station-inc/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.63,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -1.1933
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/gemini-space-station-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 1.26,
  "six_month_return": -59.44,
  "three_month_return": -44.78
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/gemini-space-station-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 56.3,
  "total_btc_percentage": 0.023,
  "share_price_change_state": "up"
}