biquote
Home/Crypto/VETUSDT
crypto · Crypto

VETUSDT

VET / USDT
0.008944
6.67% today
Last 24 hours
Bid
0.008939
Ask
0.008949
Day High
0.009914
Day Low
0.008674

VETUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.008800.008960.008670.00894+1.69%
23 Sept 20260.009300.009910.008740.00880-5.37%
22 Sept 20260.009060.009360.009040.00930+2.65%

VETUSDT API access

VET / USDT prices are available over REST and WebSocket with no API key and no signup. Rate limit is 15,000 requests per minute per IP.

curl
curl "https://biquote.io/api/VETUSDT"
Python
import requests

r = requests.get("https://biquote.io/api/VETUSDT")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])
JavaScript
const r = await fetch("https://biquote.io/api/VETUSDT");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);
WebSocket
// SignalR hub — pushes every tick for VETUSDT
const conn = new signalR.HubConnectionBuilder()
  .withUrl("https://biquote.io/hubs/tick")
  .build();
conn.on("ReceiveTick", t => console.log(t.symbol, t.mid));
await conn.start();
await conn.invoke("Subscribe", "VETUSDT");

Also available for VETUSDT: daily candles, hourly candles · full API documentation

More crypto instruments