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": 1783641600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001920406/000162828026047938/asst-20260713.htm",
"holding_balance": 19899.45,
"holding_net_change": 18.0,
"transaction_value_usd": 1152504.0,
"average_entry_value_usd": 64028.0,
"transaction_value_calculated": false
},
{
"date": 1784246400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001920406/000162828026048764/asst-20260720.htm",
"holding_balance": 19920.45,
"holding_net_change": 21.0,
"transaction_value_usd": 1327641.0,
"average_entry_value_usd": 63221.0,
"transaction_value_calculated": false
},
{
"date": 1784851200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001920406/000162828026049666/asst-20260727.htm",
"holding_balance": 19999.45,
"holding_net_change": 79.0,
"transaction_value_usd": 5192117.0,
"average_entry_value_usd": 65723.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.
[
[
1786924800000,
19999.45
],
[
1787011200000,
19999.45
],
[
1787097600000,
19999.45
]
]
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.
[
[
1786924800000,
1256484245.733
],
[
1787011200000,
1289865727.717
],
[
1787097600000,
1293811419.2075
]
]
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": 11.87,
"date": "2026-08-14",
"high": 12.54,
"open": 12.54,
"close": 12.315,
"volume": 2365729
},
{
"low": 12.27,
"date": "2026-08-17",
"high": 13.345,
"open": 12.35,
"close": 13.2,
"volume": 2992926
},
{
"low": 12.705,
"date": "2026-08-18",
"high": 13.44,
"open": 13.18,
"close": 12.8,
"volume": 3877849
}
]
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.245,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.245
}
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": 3.73,
"six_month_return": 56.48,
"three_month_return": -18.94
}
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": 114.7,
"total_btc_percentage": 0.095,
"share_price_change_state": "down"
}