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": 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
  }
]
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
[
  [
    1788912000000,
    24530.45
  ],
  [
    1788998400000,
    24530.45
  ],
  [
    1789084800000,
    24530.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
[
  [
    1788912000000,
    1924457221.3965
  ],
  [
    1788998400000,
    1920440605.5135
  ],
  [
    1789084800000,
    1879441637.906
  ]
]
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": 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
  }
]
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": 113.15,
  "six_month_return": 191.44,
  "three_month_return": 86.42
}
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": 73.6,
  "total_btc_percentage": 0.117,
  "share_price_change_state": "down"
}