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.
[
[
1788912000000,
43514.0
],
[
1788998400000,
43514.0
],
[
1789084800000,
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.
[
[
1788912000000,
3413750319.78
],
[
1788998400000,
3406625337.42
],
[
1789084800000,
3333898213.52
]
]
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": 5.665,
"date": "2026-09-08",
"high": 6.1285,
"open": 5.8,
"close": 5.86,
"volume": 2668347
},
{
"low": 5.62,
"date": "2026-09-09",
"high": 5.93,
"open": 5.93,
"close": 5.63,
"volume": 1543589
},
{
"low": 5.445,
"date": "2026-09-10",
"high": 5.635,
"open": 5.5,
"close": 5.45,
"volume": 1996285
}
]
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": 21.11,
"six_month_return": -22.59,
"three_month_return": 2.06
}
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": 108.8,
"total_btc_percentage": 0.207,
"share_price_change_state": "down"
}