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