LiveOne Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/liveone-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/liveone-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001491419/a097fd10-d355-4e2e-b964-7c0c7f1a1a54.html",
"holding_balance": 43.15,
"holding_net_change": 43.15,
"transaction_value_usd": 5000000.0,
"average_entry_value_usd": 115874.86,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/liveone-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
43.15
],
[
1780876800000,
43.15
],
[
1780963200000,
43.15
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/liveone-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
2729824.7715
],
[
1780876800000,
2721370.392
],
[
1780963200000,
2661901.4935
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/liveone-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 6.28,
"date": "2026-06-04",
"high": 6.75,
"open": 6.28,
"close": 6.45,
"volume": 110300
},
{
"low": 5.97,
"date": "2026-06-05",
"high": 7.005,
"open": 6.48,
"close": 6.02,
"volume": 37500
},
{
"low": 6.16,
"date": "2026-06-08",
"high": 6.595,
"open": 6.16,
"close": 6.415,
"volume": 48718
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/liveone-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.38,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.4375
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/liveone-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 19.02,
"six_month_return": 39.15,
"three_month_return": 24.32
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/liveone-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 3.1,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}