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