Skip to content

Euro

GET
/v1/cotizaciones/eur

Cotización del euro en pesos uruguayos

Respuestas

Devuelve la cotización del Euro
JSON
{
"compra": 0,
"venta": 0,
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}

Ejemplos

cURL
curl -X GET https://uy.dolarapi.com/v1/cotizaciones/eur
JavaScript
fetch("https://uy.dolarapi.com/v1/cotizaciones/eur")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://uy.dolarapi.com/v1/cotizaciones/eur");
Python
import requests
response = requests.get("https://uy.dolarapi.com/v1/cotizaciones/eur")
print(response.json())
Powered by VitePress OpenAPI