Coinbase Global 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/coinbase-global-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/coinbase-global-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/coinbase-global-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/coinbase-global-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    973563694.29
  ],
  [
    1780876800000,
    970548527.52
  ],
  [
    1780963200000,
    949339561.61
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/coinbase-global-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 161.89,
    "date": "2026-06-04",
    "high": 166.5,
    "open": 164.19,
    "close": 164.13,
    "volume": 8499400
  },
  {
    "low": 147.88,
    "date": "2026-06-05",
    "high": 158.7,
    "open": 158.7,
    "close": 152.4,
    "volume": 16672900
  },
  {
    "low": 155.0,
    "date": "2026-06-08",
    "high": 164.28,
    "open": 156.4,
    "close": 162.11,
    "volume": 8817744
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/coinbase-global-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.4758,
  "quarterly_earnings_growth": 4.306,
  "eps_estimate_current_quarter": 0.0444
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/coinbase-global-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -15.99,
  "six_month_return": -40.85,
  "three_month_return": -18.86
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/coinbase-global-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 2.4,
  "total_btc_percentage": 0.073,
  "share_price_change_state": "up"
}