DDC Enterprise Limited

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/ddc-enterprise-limited/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/ddc-enterprise-limited/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1773878400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.businesswire.com/news/home/20260319670695/en/DDC-Enterprise-Adds-200-BTC-Lifting-Corporate-Bitcoin-Treasury-to-2383-BTC",
    "holding_balance": 2383.0,
    "holding_net_change": 200.0,
    "transaction_value_usd": 13981644.0,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1779321600000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://ir.ddc.xyz/news-events/press-releases/detail/88/ddc-acquires-200-bitcoin-lifting-total-holdings-to-2583-btc-per-share-bitcoin-exposure-increases-without-dilution",
    "holding_balance": 2583.0,
    "holding_net_change": 200.0,
    "transaction_value_usd": 15899200.0,
    "average_entry_value_usd": 79496.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1779840000000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://ir.ddc.xyz/news-events/press-releases/detail/89/ddc-adds-131-bitcoin-to-2714-btc-treasury-two-purchases-in-seven-days-lift-per-share-bitcoin-exposure-13-9",
    "holding_balance": 2714.0,
    "holding_net_change": 131.0,
    "transaction_value_usd": 10366685.0,
    "average_entry_value_usd": 79135.0,
    "transaction_value_calculated": false
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    2714.0
  ],
  [
    1780876800000,
    2714.0
  ],
  [
    1780963200000,
    2714.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    171697437.54
  ],
  [
    1780876800000,
    171165683.52
  ],
  [
    1780963200000,
    167425275.86
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 1.14,
    "date": "2026-06-04",
    "high": 1.2393,
    "open": 1.14,
    "close": 1.2393,
    "volume": 57621
  },
  {
    "low": 1.09,
    "date": "2026-06-05",
    "high": 1.26,
    "open": 1.26,
    "close": 1.095,
    "volume": 71026
  },
  {
    "low": 1.1,
    "date": "2026-06-08",
    "high": 1.1796,
    "open": 1.15,
    "close": 1.12,
    "volume": 97932
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/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/ddc-enterprise-limited/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -20.0,
  "six_month_return": -63.87,
  "three_month_return": -58.52
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 345.3,
  "total_btc_percentage": 0.013,
  "share_price_change_state": "down"
}