Digi Power X Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/digi-power-x-inc/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/digi-power-x-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/digi-power-x-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
112.0
],
[
1779062400000,
112.0
],
[
1779148800000,
112.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
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.
[
[
1778976000000,
8672144.32
],
[
1779062400000,
8617758.24
],
[
1779148800000,
8597121.12
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/digi-power-x-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/digi-power-x-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/digi-power-x-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -3.81,
"six_month_return": 17.34,
"three_month_return": -35.87
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/digi-power-x-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 3.5,
"total_btc_percentage": 0.001,
"share_price_change_state": "up"
}