Strategy, 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/strategy-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/strategy-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1785715200000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt4e80364948bf437c/6a6ff89f0da6737125578aab/form-8-k_08-03-2026.pdf",
    "holding_balance": 842137.0,
    "holding_net_change": -1638.0,
    "transaction_value_usd": 104761566.0,
    "average_entry_value_usd": -63957.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1786320000000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt5753b925d6f68e09/6a794ef9dcb43781cc2cf7c3/form-8-k_08-10-2026.pdf",
    "holding_balance": 840447.0,
    "holding_net_change": -1690.0,
    "transaction_value_usd": 108602780.0,
    "average_entry_value_usd": -64262.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1788134400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt3276071079cd1642/6a9497da8814aaf69389c17b/form-8-k_08-31-2026.pdf",
    "holding_balance": 845050.0,
    "holding_net_change": 4603.0,
    "transaction_value_usd": 369703754.0,
    "average_entry_value_usd": 80318.0,
    "transaction_value_calculated": false
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    845050.0
  ],
  [
    1788998400000,
    845050.0
  ],
  [
    1789084800000,
    845050.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/strategy-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    66295668238.5
  ],
  [
    1788998400000,
    66157299751.5
  ],
  [
    1789084800000,
    64744925433.99999
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 135.38,
    "date": "2026-09-08",
    "high": 139.31,
    "open": 137.62,
    "close": 136.52,
    "volume": 19904000
  },
  {
    "low": 132.59,
    "date": "2026-09-09",
    "high": 141.98,
    "open": 141.82,
    "close": 132.7,
    "volume": 17359700
  },
  {
    "low": 126.91,
    "date": "2026-09-10",
    "high": 131.88,
    "open": 128.44,
    "close": 128.56,
    "volume": 14373400
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": 12.2517,
  "quarterly_earnings_growth": -0.775,
  "eps_estimate_current_quarter": 3.0743
}
Metric

Performance Metrics

Calculated performance metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 33.79,
  "six_month_return": -7.06,
  "three_month_return": 11.45
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 126.8,
  "total_btc_percentage": 4.024,
  "share_price_change_state": "up"
}