Skip to content

Guaraní Paraguayo

GET
/v1/cotizaciones/pyg

Cotización del guaraní paraguayo en pesos uruguayos

Respuestas

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

Ejemplos

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