Strategy, Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/strategy-inc/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/strategy-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
},
{
"date": 1780272000000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://assets.contentstack.io/v3/assets/bltf8d808d9b8cebd37/blt01aedf36c9f1b5b3/6a1cdb95487e7818fe49dd85/form-8-k_06-01-2026.pdf",
"holding_balance": 843706.0,
"holding_net_change": -32.0,
"transaction_value_usd": 2468320.0,
"average_entry_value_usd": -77135.0,
"transaction_value_calculated": false
},
{
"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
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/strategy-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
843706.0
],
[
1780876800000,
845256.0
],
[
1780963200000,
845256.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/strategy-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
53375887338.66
],
[
1780876800000,
53308334926.08
],
[
1780963200000,
52143411559.43999
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/strategy-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 125.65,
"date": "2026-06-04",
"high": 131.47,
"open": 126.75,
"close": 129.37,
"volume": 24590400
},
{
"low": 114.31,
"date": "2026-06-05",
"high": 125.3,
"open": 124.25,
"close": 120.44,
"volume": 41758600
},
{
"low": 123.145,
"date": "2026-06-08",
"high": 129.0,
"open": 125.73,
"close": 127.2,
"volume": 20888951
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/strategy-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 10.7,
"quarterly_earnings_growth": -0.775,
"eps_estimate_current_quarter": -18.9825
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/strategy-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -29.27,
"six_month_return": -31.62,
"three_month_return": -8.46
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/strategy-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 116.0,
"total_btc_percentage": 4.025,
"share_price_change_state": "down"
}