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.
[
[
1782864000000,
43.15
],
[
1782950400000,
43.15
],
[
1783036800000,
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.
[
[
1782864000000,
2587470.3325
],
[
1782950400000,
2653199.8645
],
[
1783036800000,
2697996.4685
]
]
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.23,
"date": "2026-06-30",
"high": 6.79,
"open": 6.61,
"close": 6.4,
"volume": 95700
},
{
"low": 5.85,
"date": "2026-07-01",
"high": 6.44,
"open": 6.39,
"close": 5.91,
"volume": 33200
},
{
"low": 5.38,
"date": "2026-07-02",
"high": 6.08,
"open": 5.9,
"close": 5.66,
"volume": 111500
}
]
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.1975,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.29
}
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": -15.52,
"six_month_return": 35.08,
"three_month_return": 20.94
}
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.5,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}