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": 1771977600000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.businesswire.com/news/home/20260225152012/en/DDC-Advances-Bitcoin-Accumulation-Strategy-Holdings-Reach-2118-BTC",
    "holding_balance": 2118.0,
    "holding_net_change": 50.0,
    "transaction_value_usd": 3239032.0,
    "average_entry_value_usd": 64780.64,
    "transaction_value_calculated": false
  },
  {
    "date": 1772582400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.businesswire.com/news/home/20260304003561/en/DDC-Enterprise-Limited-Reports-Preliminary-Unaudited-Record-High-2025-Revenue-and-Adjusted-EBITDA-1-Expands-Bitcoin-Treasury-to-2183-BTC",
    "holding_balance": 2183.0,
    "holding_net_change": 65.0,
    "transaction_value_usd": 4724974.8,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "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
  }
]
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
[
  [
    1778976000000,
    2383.0
  ],
  [
    1779062400000,
    2383.0
  ],
  [
    1779148800000,
    2383.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
[
  [
    1778976000000,
    184515356.38
  ],
  [
    1779062400000,
    183358195.41
  ],
  [
    1779148800000,
    182919103.83
  ]
]
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.21,
    "date": "2026-05-15",
    "high": 1.25,
    "open": 1.25,
    "close": 1.24,
    "volume": 66888
  },
  {
    "low": 1.15,
    "date": "2026-05-18",
    "high": 1.23,
    "open": 1.2,
    "close": 1.2,
    "volume": 25522
  },
  {
    "low": 1.09,
    "date": "2026-05-19",
    "high": 1.2,
    "open": 1.2,
    "close": 1.12,
    "volume": 68773
  }
]
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": -45.37,
  "six_month_return": -77.37,
  "three_month_return": -60.0
}
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": 344.3,
  "total_btc_percentage": 0.011,
  "share_price_change_state": "down"
}