Skip to content

Peso Uruguayo

GET
/v1/cotizaciones/uyu

Cotización del Peso Uruguayo en el mercado.

Respuestas

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

Ejemplos

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