Vinanz Limited

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/vinanz-limited/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    85.97
  ],
  [
    1782950400000,
    85.97
  ],
  [
    1783036800000,
    85.97
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    5155152.3635
  ],
  [
    1782950400000,
    5286108.7451
  ],
  [
    1783036800000,
    5375359.3603
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 1.415,
    "date": "2026-07-01",
    "high": 1.5,
    "open": 1.5,
    "close": 1.45,
    "volume": 4385094
  },
  {
    "low": 1.418,
    "date": "2026-07-02",
    "high": 1.467,
    "open": 1.45,
    "close": 1.45,
    "volume": 184044
  },
  {
    "low": 1.45,
    "date": "2026-07-03",
    "high": 1.53,
    "open": 1.45,
    "close": 1.45,
    "volume": 413516
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": 0,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -17.14,
  "six_month_return": -36.96,
  "three_month_return": -40.82
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/vinanz-limited/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 120.3,
  "total_btc_percentage": 0.0,
  "share_price_change_state": "down"
}