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": 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
  },
  {
    "date": 1774915200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001679788/000167978826000054/coin-20260331.htm#fact-identifier-628",
    "holding_balance": 16492.0,
    "holding_net_change": 1103.0,
    "transaction_value_usd": 77569999.0,
    "average_entry_value_usd": 70326.38,
    "transaction_value_calculated": false
  }
]
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
[
  [
    1786924800000,
    16492.0
  ],
  [
    1787011200000,
    16492.0
  ],
  [
    1787097600000,
    16492.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
[
  [
    1786924800000,
    1036125402.48
  ],
  [
    1787011200000,
    1063652529.52
  ],
  [
    1787097600000,
    1066906236.2
  ]
]
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": 147.86,
    "date": "2026-08-14",
    "high": 152.59,
    "open": 151.42,
    "close": 148.47,
    "volume": 7265300
  },
  {
    "low": 147.2,
    "date": "2026-08-17",
    "high": 152.2,
    "open": 148.36,
    "close": 150.55,
    "volume": 5768300
  },
  {
    "low": 146.02,
    "date": "2026-08-18",
    "high": 150.73,
    "open": 148.0,
    "close": 146.23,
    "volume": 6605965
  }
]
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.4495,
  "quarterly_earnings_growth": 4.306,
  "eps_estimate_current_quarter": -0.2278
}
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": -8.85,
  "six_month_return": -11.92,
  "three_month_return": -22.81
}
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.7,
  "total_btc_percentage": 0.079,
  "share_price_change_state": "up"
}