Euro
GET
https://dolarapi.com/v1/cotizaciones/eurCotización del Euro en el mercado.
Respuestas
Devuelve la cotización del Euro
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
Ejemplos
cURL
curl -X GET https://dolarapi.com/v1/cotizaciones/eur
JavaScript
fetch("https://dolarapi.com/v1/cotizaciones/eur")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://dolarapi.com/v1/cotizaciones/eur");
Python
import requests
response = requests.get("https://dolarapi.com/v1/cotizaciones/eur")
print(response.json())