Request for Quote (RfQ)
Buy BTC with ZAR
Sell BTC for ZAR
Current Quote
There are no current quotes.
Please fill out the request form to receive a quote.
Price per coin
Total proceeds
Total cost
Quote expires in
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?