American Bitcoin Corp

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/american-bitcoin-corp/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/american-bitcoin-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1771891200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.prnewswire.com/news-releases/american-bitcoin-reports-fourth-quarter-and-full-year-2025-results-302697789.html",
    "holding_balance": 6235.0,
    "holding_net_change": 392.0,
    "transaction_value_usd": 25122511.68,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1778112000000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://x.com/EricTrump/status/2052158092171715017?s=20",
    "holding_balance": 7300.0,
    "holding_net_change": 1065.0,
    "transaction_value_usd": 85196059.5,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1779062400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://x.com/ABTC/status/2056340270955037156?s=20",
    "holding_balance": 7500.0,
    "holding_net_change": 200.0,
    "transaction_value_usd": 15388854.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/american-bitcoin-corp/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    7500.0
  ],
  [
    1780876800000,
    7500.0
  ],
  [
    1780963200000,
    7500.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/american-bitcoin-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    474477075.0
  ],
  [
    1780876800000,
    473007600.0
  ],
  [
    1780963200000,
    462671175.0
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/american-bitcoin-corp/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 0.905,
    "date": "2026-06-04",
    "high": 0.934,
    "open": 0.917,
    "close": 0.914,
    "volume": 10325500
  },
  {
    "low": 0.837,
    "date": "2026-06-05",
    "high": 0.907,
    "open": 0.906,
    "close": 0.863,
    "volume": 16320700
  },
  {
    "low": 0.88,
    "date": "2026-06-08",
    "high": 0.95,
    "open": 0.899,
    "close": 0.9008,
    "volume": 11084411
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/american-bitcoin-corp/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.005
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/american-bitcoin-corp/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -22.34,
  "six_month_return": -62.78,
  "three_month_return": -18.11
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/american-bitcoin-corp/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 27.5,
  "total_btc_percentage": 0.036,
  "share_price_change_state": "down"
}