Paraguayan Guaraní (PYG) ₲
Paraguayan Guaraní exchange rates against major world currencies, checked hourly and updated as sources publish.
1 PYG = 0.000168675 USD
1 PYG in other currencies
PYG to USDUS Dollar0.00016867PYG to EUREuro0.00014792PYG to GBPBritish Pound0.00012728PYG to JPYJapanese Yen0.026581PYG to CNYChinese Yuan0.0011324PYG to CADCanadian Dollar0.00023855PYG to AUDAustralian Dollar0.00023993PYG to CHFSwiss Franc0.00013971PYG to INRIndian Rupee0.016162PYG to RUBRussian Ruble0.01434
Convert to PYG
USD to PYGUS Dollar5,928.5773EUR to PYGEuro6,760.3567GBP to PYGBritish Pound7,856.7688JPY to PYGJapanese Yen37.6202CNY to PYGChinese Yuan883.118CAD to PYGCanadian Dollar4,191.9493AUD to PYGAustralian Dollar4,167.9141CHF to PYGSwiss Franc7,157.6037INR to PYGIndian Rupee61.8737RUB to PYGRussian Ruble69.7372
Get PYG rates in your app
One GET request returns every rate against PYG as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=PYG"fetch('https://rate-api.com/api/v1/latest?base=PYG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PYG = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=PYG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PYG = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=PYG');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PYG = {$data['rates']['USD']} USD\n";Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.