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": 1777248000000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt295a412ea189e38b/69eecd67daf45c04794b181a/form-8-k_04-27-2026.pdf",
    "holding_balance": 818334.0,
    "holding_net_change": 3273.0,
    "transaction_value_usd": 255000000.0,
    "average_entry_value_usd": 77910.17,
    "transaction_value_calculated": false
  },
  {
    "date": 1778457600000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt7653ead16575975e/6a01462c750c63f12be32cf8/form-8-k_05-11-2026.pdf",
    "holding_balance": 818869.0,
    "holding_net_change": 535.0,
    "transaction_value_usd": 42981900.0,
    "average_entry_value_usd": 80340.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1779062400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/bltc0d0f9d2d325a368/6a0a710811de4f7e170ba045/form-8-k_05-18-2026.pdf",
    "holding_balance": 843738.0,
    "holding_net_change": 24869.0,
    "transaction_value_usd": 2014015965.0,
    "average_entry_value_usd": 80985.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
[
  [
    1778976000000,
    818869.0
  ],
  [
    1779062400000,
    843738.0
  ],
  [
    1779148800000,
    843738.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
[
  [
    1778976000000,
    63404912028.34
  ],
  [
    1779062400000,
    64920804481.26
  ],
  [
    1779148800000,
    64765337317.38
  ]
]
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": 173.61,
    "date": "2026-05-15",
    "high": 182.23,
    "open": 182.11,
    "close": 177.42,
    "volume": 19654300
  },
  {
    "low": 162.02,
    "date": "2026-05-18",
    "high": 169.18,
    "open": 169.18,
    "close": 166.63,
    "volume": 19299700
  },
  {
    "low": 163.5,
    "date": "2026-05-19",
    "high": 168.4884,
    "open": 163.98,
    "close": 164.63,
    "volume": 9906350
  }
]
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": 10.7,
  "quarterly_earnings_growth": -0.775,
  "eps_estimate_current_quarter": -18.9825
}
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": -3.62,
  "six_month_return": -17.58,
  "three_month_return": 31.49
}
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": 112.0,
  "total_btc_percentage": 4.018,
  "share_price_change_state": "up"
}