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.
[
[
1780790400000,
85.97
],
[
1780876800000,
85.97
],
[
1780963200000,
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.
[
[
1780790400000,
5438772.5517
],
[
1780876800000,
5421928.4496
],
[
1780963200000,
5303445.4553
]
]
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": 1.55,
"date": "2026-06-04",
"high": 1.81,
"open": 1.6,
"close": 1.75,
"volume": 1613011
},
{
"low": 1.61,
"date": "2026-06-05",
"high": 1.75,
"open": 1.75,
"close": 1.7,
"volume": 19604996
},
{
"low": 1.61,
"date": "2026-06-08",
"high": 1.8,
"open": 1.7,
"close": 1.65,
"volume": 5063800
}
]
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": -31.25,
"six_month_return": -43.1,
"three_month_return": -28.26
}
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": 102.8,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}