Skip to content

Peso Chileno

GET
/v1/cotizaciones/clp

Cotización del Peso Chileno en el mercado.

Respuestas

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

Ejemplos

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