Dólar Oficial
GET
https://bo.dolarapi.com/v1/dolares/oficialCotización del dólar estadounidense en pesos bolivianos
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/oficialEjemplos
cURL
curl -X GET https://bo.dolarapi.com/v1/dolares/oficial
JavaScript
fetch("https://bo.dolarapi.com/v1/dolares/oficial")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://bo.dolarapi.com/v1/dolares/oficial");
Python
import requests
response = requests.get("https://bo.dolarapi.com/v1/dolares/oficial")
print(response.json())