Dólar Oficial
GET
https://dolarapi.com/v1/dolares/oficialCotización del dólar estadounidense en el mercado oficial. Es decir, el precio de compra y venta de dólares en bancos y casas de cambio autorizadas por el Banco Central de la República Argentina (BCRA).
Respuestas
Devuelve la cotización del Dólar Oficial
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
cURL
curl -X GET \
'https://dolarapi.com/v1/dolares/oficial'
Ejemplos
cURL
curl -X GET https://dolarapi.com/v1/dolares/oficial
JavaScript
fetch("https://dolarapi.com/v1/dolares/oficial")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://dolarapi.com/v1/dolares/oficial");
Python
import requests
response = requests.get("https://dolarapi.com/v1/dolares/oficial")
print(response.json())