Canaan Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/canaan-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/canaan-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1770681600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investor.canaan-creative.com/news-releases/news-release-details/canaan-inc-provides-january-2026-bitcoin-production-and-mining",
"holding_balance": 1778.0,
"holding_net_change": 28.0,
"transaction_value_usd": 1925536.76,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1773100800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investor.canaan-creative.com/news-releases/news-release-details/canaan-inc-provides-february-2026-bitcoin-production-and-mining",
"holding_balance": 1793.0,
"holding_net_change": 15.0,
"transaction_value_usd": 1048950.15,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1778716800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investor.canaan-creative.com/news-releases/news-release-details/canaan-inc-provides-april-2026-bitcoin-production-and-mining",
"holding_balance": 1826.0,
"holding_net_change": 33.0,
"transaction_value_usd": 2675789.16,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/canaan-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
1826.0
],
[
1780876800000,
1826.0
],
[
1780963200000,
1826.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/canaan-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
115519351.86
],
[
1780876800000,
115161583.68
],
[
1780963200000,
112645008.74
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/canaan-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.36,
"date": "2026-06-04",
"high": 0.405,
"open": 0.37,
"close": 0.389,
"volume": 8676300
},
{
"low": 0.358,
"date": "2026-06-05",
"high": 0.382,
"open": 0.38,
"close": 0.358,
"volume": 18782900
},
{
"low": 0.3522,
"date": "2026-06-08",
"high": 0.37,
"open": 0.365,
"close": 0.3543,
"volume": 7698898
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/canaan-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.04,
"quarterly_earnings_growth": -0.916,
"eps_estimate_current_quarter": -0.07
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/canaan-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -31.2,
"six_month_return": -63.81,
"three_month_return": -30.47
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/canaan-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 42.2,
"total_btc_percentage": 0.009,
"share_price_change_state": "up"
}