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": 1780876800000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt0eb10e46a66647c3/6a26adab8355c350c5f649f2/form-8-k_06-08-2026.pdf",
    "holding_balance": 845256.0,
    "holding_net_change": 1550.0,
    "transaction_value_usd": 101264600.0,
    "average_entry_value_usd": 65332.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1781481600000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/bltf6b2c0b2a24ad4f0/6a2f5b17ec6a5e1a1e77bb5f/form-8-k_06-15-2026.pdf",
    "holding_balance": 846843.0,
    "holding_net_change": 1587.0,
    "transaction_value_usd": 100019088.0,
    "average_entry_value_usd": 63024.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1782086400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt2e9f099c6f750e42/6a38b76f0bbfd04b0ded59bf/form-8-k_06-22-2026.pdf",
    "holding_balance": 847363.0,
    "holding_net_change": 520.0,
    "transaction_value_usd": 34875360.0,
    "average_entry_value_usd": 67068.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
[
  [
    1782864000000,
    847363.0
  ],
  [
    1782950400000,
    847363.0
  ],
  [
    1783036800000,
    847363.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
[
  [
    1782864000000,
    50811740981.65
  ],
  [
    1782950400000,
    52102512092.29
  ],
  [
    1783036800000,
    52982210464.37
  ]
]
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": 83.42,
    "date": "2026-06-30",
    "high": 88.26,
    "open": 86.21,
    "close": 86.93,
    "volume": 35676600
  },
  {
    "low": 86.2,
    "date": "2026-07-01",
    "high": 98.53,
    "open": 87.7,
    "close": 93.39,
    "volume": 34687100
  },
  {
    "low": 97.57,
    "date": "2026-07-02",
    "high": 104.11,
    "open": 99.85,
    "close": 100.77,
    "volume": 34757600
  }
]
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": -25.95,
  "six_month_return": -35.24,
  "three_month_return": -17.93
}
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": 147.0,
  "total_btc_percentage": 4.035,
  "share_price_change_state": "down"
}