Twenty One Capital, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/twenty-one-capital-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/twenty-one-capital-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1748908800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://mempool.space/address/bc1qp7ngy8fdevakrqd98z0j27cl6vmeemtn9tc7mrsulcg8g3g52lkq92ulqr",
"holding_balance": 37230.0,
"holding_net_change": 917.5,
"transaction_value_usd": 96723556.47500001,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1748908800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://mempool.space/address/bc1qpzt4m58zzqgp84ktyuj5tz8g8k8ssg2g2d5eeerwhx4gxulqq5mqjzm5gc",
"holding_balance": 36312.0,
"holding_net_change": 10500.0,
"transaction_value_usd": 1106918085.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1753833600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://xxi.money/",
"holding_balance": 43514.0,
"holding_net_change": 6284.0,
"transaction_value_usd": 740444662.5999999,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
43514.0
],
[
1780876800000,
43514.0
],
[
1780963200000,
43514.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
2752852725.54
],
[
1780876800000,
2744327027.52
],
[
1780963200000,
2684356467.86
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 6.21,
"date": "2026-06-04",
"high": 6.4,
"open": 6.23,
"close": 6.26,
"volume": 2044300
},
{
"low": 5.515,
"date": "2026-06-05",
"high": 6.12,
"open": 6.12,
"close": 5.64,
"volume": 2350100
},
{
"low": 5.72,
"date": "2026-06-08",
"high": 5.94,
"open": 5.9,
"close": 5.84,
"volume": 1046657
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/twenty-one-capital-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/twenty-one-capital-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -30.14,
"six_month_return": -59.72,
"three_month_return": -13.74
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 137.2,
"total_btc_percentage": 0.207,
"share_price_change_state": "down"
}