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.
[
[
1786924800000,
1000.0
],
[
1787011200000,
1000.0
],
[
1787097600000,
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.
[
[
1786924800000,
62825940.0
],
[
1787011200000,
64495060.0
],
[
1787097600000,
64692350.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": 1.8,
"date": "2026-08-14",
"high": 1.87,
"open": 1.86,
"close": 1.87,
"volume": 22300
},
{
"low": 1.87,
"date": "2026-08-17",
"high": 1.95,
"open": 1.872,
"close": 1.93,
"volume": 12500
},
{
"low": 1.81,
"date": "2026-08-18",
"high": 1.9201,
"open": 1.92,
"close": 1.83,
"volume": 10117
}
]
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": 3.98,
"six_month_return": -43.69,
"three_month_return": -25.61
}
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": 149.0,
"total_btc_percentage": 0.005,
"share_price_change_state": "down"
}