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.
[
[
1788912000000,
1826.0
],
[
1788998400000,
1826.0
],
[
1789084800000,
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.
[
[
1788912000000,
143252932.02
],
[
1788998400000,
142953942.78
],
[
1789084800000,
139902057.68
]
]
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.3202,
"date": "2026-09-08",
"high": 0.3543,
"open": 0.33,
"close": 0.3232,
"volume": 27596971
},
{
"low": 0.3156,
"date": "2026-09-09",
"high": 0.3443,
"open": 0.3422,
"close": 0.3162,
"volume": 19304221
},
{
"low": 0.2916,
"date": "2026-09-10",
"high": 0.3298,
"open": 0.3,
"close": 0.3087,
"volume": 10166341
}
]
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.15,
"quarterly_earnings_growth": -0.916,
"eps_estimate_current_quarter": -0.15
}
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": 53.58,
"six_month_return": -39.11,
"three_month_return": -3.83
}
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": 60.7,
"total_btc_percentage": 0.009,
"share_price_change_state": "up"
}