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.
[
[
1778976000000,
1793.0
],
[
1779062400000,
1826.0
],
[
1779148800000,
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.
[
[
1778976000000,
138831738.98
],
[
1779062400000,
140500237.02
],
[
1779148800000,
140163778.26
]
]
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.48,
"date": "2026-05-15",
"high": 0.508,
"open": 0.5,
"close": 0.5,
"volume": 6260800
},
{
"low": 0.471,
"date": "2026-05-18",
"high": 0.499,
"open": 0.499,
"close": 0.483,
"volume": 6783500
},
{
"low": 0.4015,
"date": "2026-05-19",
"high": 0.43,
"open": 0.406,
"close": 0.417,
"volume": 19820599
}
]
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": -26.97,
"six_month_return": -53.25,
"three_month_return": -7.54
}
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": 45.1,
"total_btc_percentage": 0.009,
"share_price_change_state": "up"
}