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
[
  [
    1788912000000,
    4827.0
  ],
  [
    1788998400000,
    4827.0
  ],
  [
    1789084800000,
    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
[
  [
    1788912000000,
    378686693.79
  ],
  [
    1788998400000,
    377896320.81
  ],
  [
    1789084800000,
    369828714.36
  ]
]
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.48,
    "date": "2026-09-08",
    "high": 4.79,
    "open": 4.63,
    "close": 4.68,
    "volume": 2165721
  },
  {
    "low": 4.44,
    "date": "2026-09-09",
    "high": 4.89,
    "open": 4.76,
    "close": 4.45,
    "volume": 1385849
  },
  {
    "low": 4.3151,
    "date": "2026-09-10",
    "high": 4.55,
    "open": 4.32,
    "close": 4.39,
    "volume": 1149976
  }
]
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.575,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -0.6633
}
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": 8.4,
  "six_month_return": -49.19,
  "three_month_return": 1.62
}
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": 65.0,
  "total_btc_percentage": 0.023,
  "share_price_change_state": "up"
}