Exodus Movement, Inc.

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/exodus-movement-inc/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/exodus-movement-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1774915200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.exodus.com/investors/news-events/press-releases/detail/101/exodus-movement-inc-march-2026-treasury-update-and-monthly-metrics",
    "holding_balance": 628.0,
    "holding_net_change": 18.0,
    "transaction_value_usd": 1226998.98,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1777507200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.exodus.com/investors/news-events/press-releases/detail/114/exodus-movement-inc-april-2026-treasury-update-and-monthly-metrics",
    "holding_balance": 629.0,
    "holding_net_change": 1.0,
    "transaction_value_usd": 76322.09,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1780185600000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.exodus.com/investors/news-events/press-releases/detail/118/exodus-movement-inc-may-2026-treasury-update-and-monthly-metrics",
    "holding_balance": 656.0,
    "holding_net_change": 27.0,
    "transaction_value_usd": 1985521.41,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/exodus-movement-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/exodus-movement-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1786924800000,
    41213816.64
  ],
  [
    1787011200000,
    42308759.36
  ],
  [
    1787097600000,
    42438181.6
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/exodus-movement-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 6.1,
    "date": "2026-08-14",
    "high": 7.9,
    "open": 6.1,
    "close": 7.77,
    "volume": 183200
  },
  {
    "low": 6.42,
    "date": "2026-08-17",
    "high": 7.77,
    "open": 7.74,
    "close": 6.6,
    "volume": 145900
  },
  {
    "low": 6.21,
    "date": "2026-08-18",
    "high": 6.9199,
    "open": 6.41,
    "close": 6.33,
    "volume": 38353
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/exodus-movement-inc/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.1,
  "quarterly_earnings_growth": 19.237,
  "eps_estimate_current_quarter": -0.18
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/exodus-movement-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 36.42,
  "six_month_return": -37.26,
  "three_month_return": -12.33
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/exodus-movement-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 21.3,
  "total_btc_percentage": 0.003,
  "share_price_change_state": "down"
}