DDC Enterprise Limited
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/ddc-enterprise-limited/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/ddc-enterprise-limited/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
2383.0
],
[
1779062400000,
2383.0
],
[
1779148800000,
2383.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
184515356.38
],
[
1779062400000,
183358195.41
],
[
1779148800000,
182919103.83
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/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/ddc-enterprise-limited/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -45.37,
"six_month_return": -77.37,
"three_month_return": -60.0
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/ddc-enterprise-limited/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 344.3,
"total_btc_percentage": 0.011,
"share_price_change_state": "down"
}