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.
[
[
1780790400000,
19000.0
],
[
1780876800000,
19000.0
],
[
1780963200000,
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.
[
[
1780790400000,
1202008590.0
],
[
1780876800000,
1198285920.0
],
[
1780963200000,
1172100310.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": 14.7,
"date": "2026-06-04",
"high": 15.72,
"open": 14.7,
"close": 15.02,
"volume": 7105300
},
{
"low": 13.39,
"date": "2026-06-05",
"high": 14.5,
"open": 14.5,
"close": 13.92,
"volume": 5818400
},
{
"low": 14.73,
"date": "2026-06-08",
"high": 15.66,
"open": 14.93,
"close": 15.21,
"volume": 4020480
}
]
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": -1.62,
"six_month_return": -22.13,
"three_month_return": 78.73
}
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": 106.8,
"total_btc_percentage": 0.09,
"share_price_change_state": "down"
}