Virtu Financial, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/virtu-financial-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/virtu-financial-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1743379200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1592386/000159238625000080/virt-20250331.htm",
"holding_balance": 235.0,
"holding_net_change": 235.0,
"transaction_value_usd": 19416000.0,
"average_entry_value_usd": 82621.28,
"transaction_value_calculated": false
},
{
"date": 1754006400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://x.com/btcNLNico/status/1951018664788107301?t=H87booRtv0r-rOKyj_wjag&s=19",
"holding_balance": 410.0,
"holding_net_change": 175.0,
"transaction_value_usd": 18783275.0,
"average_entry_value_usd": 107333.0,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/virtu-financial-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
410.0
],
[
1780876800000,
410.0
],
[
1780963200000,
410.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/virtu-financial-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
25938080.1
],
[
1780876800000,
25857748.8
],
[
1780963200000,
25292690.9
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/virtu-financial-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 50.67,
"date": "2026-06-04",
"high": 52.02,
"open": 51.1,
"close": 51.47,
"volume": 1125100
},
{
"low": 50.9,
"date": "2026-06-05",
"high": 52.28,
"open": 51.43,
"close": 52.18,
"volume": 1076200
},
{
"low": 52.61,
"date": "2026-06-08",
"high": 54.03,
"open": 52.98,
"close": 53.02,
"volume": 978791
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/virtu-financial-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 1.3738,
"quarterly_earnings_growth": 0.843,
"eps_estimate_current_quarter": 1.6463
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/virtu-financial-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 7.02,
"six_month_return": 49.56,
"three_month_return": 26.42
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/virtu-financial-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.2,
"total_btc_percentage": 0.002,
"share_price_change_state": "down"
}