Empery Digital 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/empery-digital-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/empery-digital-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1775433600000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://ir.emperydigital.com/news-events/press-releases/detail/181/empery-digital-announces-update-on-share-repurchase-program",
    "holding_balance": 2989.0,
    "holding_net_change": -370.0,
    "transaction_value_usd": 24653840.0,
    "average_entry_value_usd": -66632.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1776038400000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://ir.emperydigital.com/news-events/press-releases/detail/183/empery-digital-announces-update-on-share-repurchase-program",
    "holding_balance": 2934.0,
    "holding_net_change": -55.0,
    "transaction_value_usd": 4096107.3999999994,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1776384000000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://ir.emperydigital.com/news-events/press-releases/detail/184/empery-digital-announces-update-on-share-repurchase-program",
    "holding_balance": 2914.0,
    "holding_net_change": -20.0,
    "transaction_value_usd": 1541640.0,
    "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/empery-digital-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    2914.0
  ],
  [
    1782950400000,
    2914.0
  ],
  [
    1783036800000,
    2914.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    174736698.7
  ],
  [
    1782950400000,
    179175536.62
  ],
  [
    1783036800000,
    182200734.86
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 3.425,
    "date": "2026-06-30",
    "high": 3.7,
    "open": 3.69,
    "close": 3.56,
    "volume": 1643000
  },
  {
    "low": 3.57,
    "date": "2026-07-01",
    "high": 3.77,
    "open": 3.6,
    "close": 3.71,
    "volume": 2021700
  },
  {
    "low": 3.7,
    "date": "2026-07-02",
    "high": 4.3,
    "open": 3.7,
    "close": 3.97,
    "volume": 1018300
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/empery-digital-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.11,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -0.1
}
Metric

Performance Metrics

Calculated performance metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 0.51,
  "six_month_return": -10.99,
  "three_month_return": -6.15
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 163.3,
  "total_btc_percentage": 0.014,
  "share_price_change_state": "down"
}