Skip to content

Libra Esterlina

GET
/v1/cotizaciones/gbp

Cotización de la libra esterlina en pesos uruguayos

Respuestas

Devuelve la cotización de la Libra Esterlina
JSON
{
"compra": 0,
"venta": 0,
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}

Ejemplos

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

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