Dólar Oficial
GET
https://ve.dolarapi.com/v1/dolares/oficialCotización del Dólar Oficial en Venezuela
Respuestas
Devuelve la cotización del Dólar Oficial
JSON
{
"fuente": "string",
"nombre": "string",
"compra": 0,
"venta": 0,
"promedio": 0,
"fechaActualizacion": "string"
}
GET
https://ve.dolarapi.com/v1/dolares/oficialEjemplos
cURL
curl -X GET https://ve.dolarapi.com/v1/dolares/oficial
JavaScript
fetch("https://ve.dolarapi.com/v1/dolares/oficial")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://ve.dolarapi.com/v1/dolares/oficial");
Python
import requests
response = requests.get("https://ve.dolarapi.com/v1/dolares/oficial")
print(response.json())