biquote
Home/Crypto/MANAUSDT
crypto · Crypto

MANAUSDT

MANA / USDT
0.08365
4.00% today
Last 24 hours
Bid
0.0836
Ask
0.0837
Day High
0.0895
Day Low
0.0817

MANAUSDT daily history

DateOpenHighLowCloseChange
24 Sept 20260.08260.08390.08190.0837+1.33%
23 Sept 20260.08840.08950.08180.0826-6.56%
22 Sept 20260.08700.08930.08630.0884+1.61%

MANAUSDT API access

MANA / 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/MANAUSDT"
Python
import requests

r = requests.get("https://biquote.io/api/MANAUSDT")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])
JavaScript
const r = await fetch("https://biquote.io/api/MANAUSDT");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);
WebSocket
// SignalR hub — pushes every tick for MANAUSDT
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", "MANAUSDT");

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

More crypto instruments