Cango Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/cango-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/cango-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1770595200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://ir-image.cangoonline.com/ir-documents/2026-02-09_Cango-Inc-Completes-%20Bitcoin-Sale-to-Strengthen-Financial-Position-1.pdf",
"holding_balance": 3023.6,
"holding_net_change": -4451.0,
"transaction_value_usd": 312128422.46,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1772755200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir-image.cangoonline.com/ir-documents/2026-03-06_Cango-Inc.%20Announces-February-2026-Computing-and-Energy-Operations-Update-1.pdf",
"holding_balance": 3313.4,
"holding_net_change": 289.8,
"transaction_value_usd": 19737512.928,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1774915200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://ir-image.cangoonline.com/ir-documents/2026-04-08_Cango-Inc-Announces-March-2026-Operational-Update-Strategically-Optimizing-Mining-Fleet-and-Improving-Production-Economics.pdf",
"holding_balance": 1025.69,
"holding_net_change": -2000.0,
"transaction_value_usd": 136333220.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/cango-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
1025.69
],
[
1780876800000,
1025.69
],
[
1780963200000,
1025.69
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/cango-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
64888852.1409
],
[
1780876800000,
64687888.6992
],
[
1780963200000,
63274292.9981
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/cango-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.39,
"date": "2026-06-04",
"high": 0.42,
"open": 0.4,
"close": 0.42,
"volume": 330500
},
{
"low": 0.3,
"date": "2026-06-05",
"high": 0.4,
"open": 0.4,
"close": 0.33,
"volume": 1239800
},
{
"low": 0.3119,
"date": "2026-06-08",
"high": 0.3476,
"open": 0.32,
"close": 0.33,
"volume": 2000194
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/cango-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.1,
"quarterly_earnings_growth": 1.373,
"eps_estimate_current_quarter": -0.19
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/cango-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -40.0,
"six_month_return": -74.42,
"three_month_return": -48.03
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/cango-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 46.9,
"total_btc_percentage": 0.005,
"share_price_change_state": "down"
}