Skip to content

Peso Argentino

GET
/v1/cotizaciones/ars

Cotización del peso argentino en pesos chilenos

Respuestas

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

Ejemplos

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