Skip to content

Francos Suizos

GET
/v1/cotizaciones/chf

Cotización del franco suizo en pesos uruguayos

Respuestas

Devuelve la cotización del Franco Suizo
JSON
{
"compra": 0,
"venta": 0,
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}

Ejemplos

cURL
curl -X GET \
'https://uy.dolarapi.com/v1/cotizaciones/chf'
JavaScript
fetch('https://uy.dolarapi.com/v1/cotizaciones/chf')
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?php
$url = 'https://uy.dolarapi.com/v1/cotizaciones/chf';
$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://uy.dolarapi.com/v1/cotizaciones/chf'

response = requests.get(url)
print(response.json())
Powered by VitePress OpenAPI