Vinanz Limited
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/vinanz-limited/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/vinanz-limited/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1750723200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.londonstockexchange.com/news-article/BTC/bitcoin-purchase/17100034",
"holding_balance": 96.4,
"holding_net_change": 55.98,
"transaction_value_usd": 5939141.5602,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1750982400000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.londonstockexchange.com/news-article/BTC/bitcoin-purchase/17106864",
"holding_balance": 65.03,
"holding_net_change": -31.37,
"transaction_value_usd": 5901758.0,
"average_entry_value_usd": -188133.82,
"transaction_value_calculated": false
},
{
"date": 1753056000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.londonstockexchange.com/news-article/BTC/bitcoin-purchase/17143972",
"holding_balance": 85.97,
"holding_net_change": 20.94,
"transaction_value_usd": 2480000.0,
"average_entry_value_usd": 118433.62,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/vinanz-limited/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
85.97
],
[
1779062400000,
85.97
],
[
1779148800000,
85.97
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/vinanz-limited/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
6656645.0642
],
[
1779062400000,
6614898.8919
],
[
1779148800000,
6599058.059699999
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/vinanz-limited/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 2.15,
"date": "2026-05-15",
"high": 2.4,
"open": 2.25,
"close": 2.275,
"volume": 3155047
},
{
"low": 2.15,
"date": "2026-05-18",
"high": 2.4,
"open": 2.275,
"close": 2.15,
"volume": 7642664
},
{
"low": 2.11,
"date": "2026-05-19",
"high": 2.33,
"open": 2.33,
"close": 2.11,
"volume": 526378
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/vinanz-limited/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/vinanz-limited/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -18.85,
"six_month_return": -40.56,
"three_month_return": 8.21
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/vinanz-limited/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 103.5,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}