Strive Asset Management
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/strive-asset-management/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/strive-asset-management/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1777248000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.strive.com/news-events/news-releases/news-details/2026/Strive-Announces-Bitcoin-Buys--True-North-Bitcoin-for-Business-Summit-In-Lake-Oswego/default.aspx",
"holding_balance": 14556.9,
"holding_net_change": 789.0,
"transaction_value_usd": 61046626.349999994,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1779408000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001920406/f227d85f-662a-4f6b-bb1b-1fac8daee0bf.pdf",
"holding_balance": 16500.0,
"holding_net_change": 1943.1,
"transaction_value_usd": 146549592.981,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1780358400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001920406/eae397ed-cffb-4907-9c34-0acaccf938da.pdf",
"holding_balance": 19000.0,
"holding_net_change": 2500.0,
"transaction_value_usd": 185230000.0,
"average_entry_value_usd": 74092.0,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/strive-asset-management/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
19000.0
],
[
1782950400000,
19000.0
],
[
1783036800000,
19000.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/strive-asset-management/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
1139326450.0
],
[
1782950400000,
1168268770.0
],
[
1783036800000,
1187993810.0
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/strive-asset-management/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 10.53,
"date": "2026-06-30",
"high": 11.23,
"open": 11.14,
"close": 10.91,
"volume": 4456100
},
{
"low": 10.84,
"date": "2026-07-01",
"high": 12.25,
"open": 10.84,
"close": 12.02,
"volume": 5033000
},
{
"low": 12.63,
"date": "2026-07-02",
"high": 13.8,
"open": 12.83,
"close": 13.11,
"volume": 6062600
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/strive-asset-management/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.1,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.12
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/strive-asset-management/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -18.67,
"six_month_return": -10.45,
"three_month_return": 29.04
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/strive-asset-management/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 111.1,
"total_btc_percentage": 0.09,
"share_price_change_state": "down"
}