Strive Asset Management

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/strive-asset-management/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    19999.45
  ],
  [
    1787011200000,
    19999.45
  ],
  [
    1787097600000,
    19999.45
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    1256484245.733
  ],
  [
    1787011200000,
    1289865727.717
  ],
  [
    1787097600000,
    1293811419.2075
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.245,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -0.245
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 3.73,
  "six_month_return": 56.48,
  "three_month_return": -18.94
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/strive-asset-management/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 114.7,
  "total_btc_percentage": 0.095,
  "share_price_change_state": "down"
}