Cryptocurrency Markets
Market | Price | 24h Change | 24h Volume | |
---|---|---|---|---|
ADA/BTC |
0.00000508
/ R0.57 |
+0.99% | 1135.81696164 | Trade |
BAT/BTC |
0.00002453
/ R2.77 |
+0.37% | 344.16755671 | Trade |
BCH/BTC |
0.029207
/ R3296.32 |
+0.00% | 0.432245 | Trade |
BTC/TUSD |
7189.94
/ R111803.51 |
-1.62% | 0.406421 | Trade |
BTC/ZAR |
112860.64
/ R112860.64 |
-0.88% | 109.695953 | Trade |
BTT/BTC |
0.00000003
/ R0.0 |
+0.00% | 15182.51374437 | Trade |
CVC/BTC |
0.00000338
/ R0.38 |
+2.11% | 12479.98120057 | Trade |
EOS/BTC |
0.000358
/ R40.4 |
-0.28% | 168.426432 | Trade |
ETH/BTC |
0.019861
/ R2241.53 |
-2.00% | 4.58297 | Trade |
LINK/BTC |
0.00029419
/ R33.2 |
-4.95% | 1689.45273482 | Trade |
LTC/BTC |
0.006101
/ R688.56 |
-0.49% | 7.863429 | Trade |
OMG/BTC |
0.0001
/ R11.29 |
+0.00% | 105.411576 | Trade |
QTUM/BTC |
0.000238
/ R26.86 |
+3.48% | 10.1341 | Trade |
REP/BTC |
0.00137
/ R154.62 |
-4.40% | 11.136409 | Trade |
TRX/BTC |
0.00000198
/ R0.22 |
+0.51% | 23280.64647788 | Trade |
TUSD/ZAR |
15.55
/ R15.55 |
+0.00% | 0.0 | Trade |
XMR/BTC |
0.007246
/ R817.79 |
+0.00% | 0.0 | Trade |
XRP/BTC |
0.0000304
/ R3.43 |
-0.26% | 302.60571444 | Trade |
XZC/BTC |
0.00046
/ R51.92 |
-0.43% | 80.049468 | Trade |
XZC/ZAR |
60.25
/ R60.25 |
-0.33% | 38.286366 | Trade |
Our Advantage
Military grade security
When we say OVEX is secure, we mean it. Our state of the art security system has multiple layers of protection and round-the-clock risk monitoring.Large selection of cryptocurrency markets
We support over 20 of the world's top cryptocurrencies. You can now trade Bitcoin, Ethereum and other altcoins all in one place.Superior technology
We've built an exchange from the ground up. Our matching engine can process 1,000,000 trades per second, making OVEX one of the fastest exchanges in the world.Trust
OVEX works with some of the world's leading cryptocurrency and blockchain companies. Plus we're backed by some of the world's top investors. We may be a new exchange, but we're here to stay.Earn interest
We're working hard to create a revolutionary new type of savings product. The OVEX Cryptocurrency Interest Account will enable you to earn up to 7% interest on your wallet balance.Simple and advanced trading
Whether you're an advanced trader or just getting started, OVEX is for all types of cryptocurrency enthusiasts.Verify your account in seconds
Verify your identity in a matter of seconds. We've partnered with Civic for their secure, instant and decentralized identity services.Secure cold storage
We practice 100% cold storage. No customer funds are kept in vulnerable hot wallets. All withdrawals need to be authorised by a majority of OVEX partners, vastly improving the security of your account.Use data to trade programmatically. Build an integration in just a couple of minutes using the OVEX Postman Collection and API Documentation. WebSocket API coming soon.
1 // Require https 2 var https = require('https'); 3 4 // Get 100 most recent trades on BTC/ZAR market 5 var options = { 6 'method': 'GET', 7 'hostname': 'www.ovex.io', 8 'path': '/api/v2/trades?market=btczar&limit=100&order_by=desc', 10 }; 11 12 var req = https.request(options, function (res) { 13 var chunks = []; 14 res.on("data", function (chunk) { 15 chunks.push(chunk); 16 }); 17 res.on("end", function (chunk) { 18 var body = Buffer.concat(chunks); 19 console.log(body.toString()); 20 }); 21 res.on("error", function (error) { 22 console.error(error); 23 }); 24 }); 25 26 req.end();
Ready to get started?