Digi Power X 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/digi-power-x-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/digi-power-x-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1756598400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.digipowerx.com/press-releases/fe7hjgnaqt51ovfijyo84m0v",
    "holding_balance": 85.0,
    "holding_net_change": 24.0,
    "transaction_value_usd": 2597145.6,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1759190400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.digipowerx.com/press-releases/gh4klaqi6yw8xvi6rvyu0e03",
    "holding_balance": 100.0,
    "holding_net_change": 15.0,
    "transaction_value_usd": 1711898.4,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1761868800000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.digipowerx.com/press-releases/oxdgsr8j9qcy7mhnq8zjacso",
    "holding_balance": 112.0,
    "holding_net_change": 12.0,
    "transaction_value_usd": 1314636.6,
    "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/digi-power-x-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1778976000000,
    112.0
  ],
  [
    1779062400000,
    112.0
  ],
  [
    1779148800000,
    112.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/digi-power-x-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1778976000000,
    8672144.32
  ],
  [
    1779062400000,
    8617758.24
  ],
  [
    1779148800000,
    8597121.12
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/digi-power-x-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 3.32,
    "date": "2026-02-24",
    "high": 3.63,
    "open": 3.32,
    "close": 3.57,
    "volume": 65100
  },
  {
    "low": 3.6,
    "date": "2026-02-25",
    "high": 3.87,
    "open": 3.62,
    "close": 3.6,
    "volume": 23900
  },
  {
    "low": 3.53,
    "date": "2026-02-26",
    "high": 3.88,
    "open": 3.88,
    "close": 3.79,
    "volume": 18200
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/digi-power-x-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,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/digi-power-x-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -3.81,
  "six_month_return": 17.34,
  "three_month_return": -35.87
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/digi-power-x-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 3.5,
  "total_btc_percentage": 0.001,
  "share_price_change_state": "up"
}