Coinbase Global Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/coinbase-global-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/coinbase-global-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1753920000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001679788/23a907fd-1893-4395-baf1-ac8b7a06e097.pdf",
"holding_balance": 11776.0,
"holding_net_change": 2509.0,
"transaction_value_usd": 290442893.78,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1761782400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://s27.q4cdn.com/397450999/files/doc_financials/2025/q3/a869e9e6-7bef-461f-ae28-5a688f86bcb8.pdf",
"holding_balance": 14548.0,
"holding_net_change": 2772.0,
"transaction_value_usd": 300229859.16,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767139200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001679788/bfd1f1fb-c113-49c9-acec-07af6b8acb64.pdf",
"holding_balance": 15389.0,
"holding_net_change": 841.0,
"transaction_value_usd": 73580166.48,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/coinbase-global-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
15389.0
],
[
1779062400000,
15389.0
],
[
1779148800000,
15389.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/coinbase-global-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
1191568115.54
],
[
1779062400000,
1184095371.03
],
[
1779148800000,
1181259793.89
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/coinbase-global-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 192.3,
"date": "2026-05-15",
"high": 206.0,
"open": 205.64,
"close": 195.43,
"volume": 14428600
},
{
"low": 184.15,
"date": "2026-05-18",
"high": 194.2,
"open": 190.25,
"close": 189.44,
"volume": 10399800
},
{
"low": 185.5301,
"date": "2026-05-19",
"high": 195.53,
"open": 188.375,
"close": 193.45,
"volume": 6923176
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/coinbase-global-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.4758,
"quarterly_earnings_growth": 4.306,
"eps_estimate_current_quarter": 0.0444
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/coinbase-global-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -8.59,
"six_month_return": -31.88,
"three_month_return": 17.92
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/coinbase-global-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 2.4,
"total_btc_percentage": 0.073,
"share_price_change_state": "up"
}