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
file_get_contents("https://uy.dolarapi.com/v1/cotizaciones/gbp");
Python
import requests
response = requests.get("https://uy.dolarapi.com/v1/cotizaciones/gbp")
print(response.json())
Powered by VitePress OpenAPI