Libra Esterlina
GET
https://uy.dolarapi.com/v1/cotizaciones/gbpCotizació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"
}
GET
https://uy.dolarapi.com/v1/cotizaciones/gbpEjemplos
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())