Nano Labs Ltd
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/nano-labs-ltd/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/nano-labs-ltd/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1733961600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir.nano.cn/news-releases/news-release-details/nano-labs-announces-bitcoin-holdings-exceed-360-btc-valued-over",
"holding_balance": 360.0,
"holding_net_change": 360.0,
"transaction_value_usd": 35892000.0,
"average_entry_value_usd": 99700.0,
"transaction_value_calculated": false
},
{
"date": 1750896000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://x.com/NanoLabsLtd/status/1938078559328997755",
"holding_balance": 1000.0,
"holding_net_change": 640.0,
"transaction_value_usd": 68484185.6,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/nano-labs-ltd/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
1000.0
],
[
1779062400000,
1000.0
],
[
1779148800000,
1000.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/nano-labs-ltd/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
77429860.0
],
[
1779062400000,
76944270.0
],
[
1779148800000,
76760010.0
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/nano-labs-ltd/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 2.331,
"date": "2026-05-15",
"high": 2.62,
"open": 2.4,
"close": 2.52,
"volume": 119400
},
{
"low": 2.446,
"date": "2026-05-18",
"high": 2.84,
"open": 2.61,
"close": 2.46,
"volume": 159700
},
{
"low": 2.4297,
"date": "2026-05-19",
"high": 2.74,
"open": 2.49,
"close": 2.67,
"volume": 88188
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/nano-labs-ltd/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/nano-labs-ltd/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 11.72,
"six_month_return": -43.19,
"three_month_return": -12.17
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/nano-labs-ltd/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 123.8,
"total_btc_percentage": 0.005,
"share_price_change_state": "down"
}