American Bitcoin Corp
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/american-bitcoin-corp/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/american-bitcoin-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/american-bitcoin-corp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
7500.0
],
[
1788998400000,
7500.0
],
[
1789084800000,
7500.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/american-bitcoin-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
588388275.0
],
[
1788998400000,
587160225.0
],
[
1789084800000,
574625100.0
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/american-bitcoin-corp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 7.65,
"date": "2026-09-08",
"high": 8.55,
"open": 7.89,
"close": 8.41,
"volume": 2040490
},
{
"low": 8.105,
"date": "2026-09-09",
"high": 8.837,
"open": 8.63,
"close": 8.13,
"volume": 1123664
},
{
"low": 7.77,
"date": "2026-09-10",
"high": 8.2594,
"open": 7.8,
"close": 8.03,
"volume": 923629
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/american-bitcoin-corp/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/american-bitcoin-corp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 16.04,
"six_month_return": -52.63,
"three_month_return": -34.72
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/american-bitcoin-corp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 58.7,
"total_btc_percentage": 0.036,
"share_price_change_state": "down"
}