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": 1772236800000,
    "type": "sell",
    "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": 610.0,
    "holding_net_change": -1084.0,
    "transaction_value_usd": 72610601.8,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "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
  }
]
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
[
  [
    1780790400000,
    629.0
  ],
  [
    1780876800000,
    629.0
  ],
  [
    1780963200000,
    629.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
[
  [
    1780790400000,
    39792810.69
  ],
  [
    1780876800000,
    39669570.72
  ],
  [
    1780963200000,
    38802689.21
  ]
]
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.435,
    "date": "2026-06-04",
    "high": 6.898,
    "open": 6.73,
    "close": 6.69,
    "volume": 71900
  },
  {
    "low": 6.009,
    "date": "2026-06-05",
    "high": 6.77,
    "open": 6.51,
    "close": 6.21,
    "volume": 107500
  },
  {
    "low": 6.2328,
    "date": "2026-06-08",
    "high": 6.54,
    "open": 6.29,
    "close": 6.37,
    "volume": 121366
  }
]
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.57,
  "quarterly_earnings_growth": 19.237,
  "eps_estimate_current_quarter": 0.04
}
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": -15.96,
  "six_month_return": -58.69,
  "three_month_return": -41.18
}
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": 20.1,
  "total_btc_percentage": 0.003,
  "share_price_change_state": "down"
}