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": 1787270400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001920406/000162828026058518/asst-20260824.htm",
"holding_balance": 21355.45,
"holding_net_change": 1110.0,
"transaction_value_usd": 81483990.0,
"average_entry_value_usd": 73409.0,
"transaction_value_calculated": false
},
{
"date": 1787875200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001920406/000162828026059468/asst-20260831.htm",
"holding_balance": 23155.45,
"holding_net_change": 1800.0,
"transaction_value_usd": 142975800.0,
"average_entry_value_usd": 79431.0,
"transaction_value_calculated": false
},
{
"date": 1788480000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001920406/01e6b5a4-299e-4e14-bf0b-b2c33c3e087c.pdf",
"holding_balance": 24530.45,
"holding_net_change": 1375.0,
"transaction_value_usd": 109011375.0,
"average_entry_value_usd": 79281.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.
[
[
1788912000000,
24530.45
],
[
1788998400000,
24530.45
],
[
1789084800000,
24530.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.
[
[
1788912000000,
1924457221.3965
],
[
1788998400000,
1920440605.5135
],
[
1789084800000,
1879441637.906
]
]
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": 25.6,
"date": "2026-09-08",
"high": 27.6546,
"open": 26.44,
"close": 27.16,
"volume": 8992535
},
{
"low": 26.3,
"date": "2026-09-09",
"high": 28.53,
"open": 28.0,
"close": 26.69,
"volume": 8040124
},
{
"low": 25.82,
"date": "2026-09-10",
"high": 27.75,
"open": 26.06,
"close": 26.9,
"volume": 8802471
}
]
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": 113.15,
"six_month_return": 191.44,
"three_month_return": 86.42
}
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": 73.6,
"total_btc_percentage": 0.117,
"share_price_change_state": "down"
}