Euro
GET
https://cl.dolarapi.com/v1/cotizaciones/eurCotización del euro en pesos chilenos
Respuestas
Devuelve la cotización del Euro
JSON
{
"compra": 0,
"venta": 0,
"ultimoCierre": 0,
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://cl.dolarapi.com/v1/cotizaciones/eurEjemplos
cURL
curl -X GET \
'https://cl.dolarapi.com/v1/cotizaciones/eur'
JavaScript
fetch('https://cl.dolarapi.com/v1/cotizaciones/eur')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://cl.dolarapi.com/v1/cotizaciones/eur';
$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://cl.dolarapi.com/v1/cotizaciones/eur'
response = requests.get(url)
print(response.json())