South Sudanese Pound (SSP) £
South Sudanese Pound exchange rates against major world currencies, checked hourly and updated as sources publish.
1 SSP = 0.000175052 USD
1 SSP in other currencies
SSP to USDUS Dollar0.00017505SSP to EUREuro0.00015351SSP to GBPBritish Pound0.00013209SSP to JPYJapanese Yen0.027586SSP to CNYChinese Yuan0.0011752SSP to CADCanadian Dollar0.00024757SSP to AUDAustralian Dollar0.000249SSP to CHFSwiss Franc0.00014499SSP to INRIndian Rupee0.016773SSP to RUBRussian Ruble0.014771
Convert to SSP
USD to SSPUS Dollar5,712.5919EUR to SSPEuro6,514.0685GBP to SSPBritish Pound7,570.537JPY to SSPJapanese Yen36.2497CNY to SSPChinese Yuan850.9449CAD to SSPCanadian Dollar4,039.2314AUD to SSPAustralian Dollar4,016.0719CHF to SSPSwiss Franc6,896.8433INR to SSPIndian Rupee59.6196RUB to SSPRussian Ruble67.6983
Get SSP rates in your app
One GET request returns every rate against SSP 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=SSP"fetch('https://rate-api.com/api/v1/latest?base=SSP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SSP = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=SSP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SSP = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=SSP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SSP = {$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-27. For developers: query these via the Rate-API REST API.