Cotizaciones
GET
https://uy.dolarapi.com/v1/cotizacionesCotizaciones de las monedas más utilizadas en Uruguay
Respuestas
Devuelve las cotizaciones de las monedas más utilizadas en Uruguay
JSON
[
{
"compra": 0,
"venta": 0,
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
]
GET
https://uy.dolarapi.com/v1/cotizacionesEjemplos
cURL
curl -X GET https://uy.dolarapi.com/v1/cotizaciones
JavaScript
fetch("https://uy.dolarapi.com/v1/cotizaciones")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://uy.dolarapi.com/v1/cotizaciones");
Python
import requests
response = requests.get("https://uy.dolarapi.com/v1/cotizaciones")
print(response.json())