Twenty One Capital, Inc.

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/twenty-one-capital-inc/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/twenty-one-capital-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1778976000000,
    43514.0
  ],
  [
    1779062400000,
    43514.0
  ],
  [
    1779148800000,
    43514.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
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.

Sample response
200 Successful response
[
  [
    1778976000000,
    3369282928.04
  ],
  [
    1779062400000,
    3348152964.78
  ],
  [
    1779148800000,
    3340135075.14
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 7.75,
    "date": "2026-05-15",
    "high": 8.19,
    "open": 8.15,
    "close": 7.91,
    "volume": 969300
  },
  {
    "low": 7.66,
    "date": "2026-05-18",
    "high": 7.985,
    "open": 7.75,
    "close": 7.77,
    "volume": 1085900
  },
  {
    "low": 7.61,
    "date": "2026-05-19",
    "high": 7.82,
    "open": 7.74,
    "close": 7.62,
    "volume": 783571
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/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/twenty-one-capital-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -3.79,
  "six_month_return": -48.79,
  "three_month_return": 20.76
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/twenty-one-capital-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 66.0,
  "total_btc_percentage": 0.207,
  "share_price_change_state": "down"
}