Dólar Binance
GET
https://bo.dolarapi.com/v1/dolares/binanceCotización del dólar estadounidense en pesos bolivianos según Binance
Respuestas
Devuelve la cotización del Dólar Estadounidense
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://bo.dolarapi.com/v1/dolares/binanceEjemplos
cURL
curl -X GET \
'https://bo.dolarapi.com/v1/dolares/binance'
JavaScript
fetch('https://bo.dolarapi.com/v1/dolares/binance')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://bo.dolarapi.com/v1/dolares/binance';
$method = 'GET';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests
url = 'https://bo.dolarapi.com/v1/dolares/binance'
response = requests.get(url)
print(response.json())