Convert RUB to FJD
Russian Ruble → Fijian Dollar
1 RUB = 0.0264341 FJD(1 FJD = 37.829947 RUB)
Currency converter
1 RUB =
0.026434 FJD
RUB to FJD: last 30 days
Over the last 30 days, 1 RUB traded between 0.025213 and 0.02673 FJD, averaging 0.025988 FJD. The RUB/FJD rate is up 3.10% since 2026-08-28.
- 30-day high
- 0.02673
- 2026-09-22
- 30-day low
- 0.025213
- 2026-09-03
- 30-day average
- 0.025988
- Days with data: 30
- 30-day change
- +3.10%
- since 2026-08-28
0.02673
0.0252132026-08-28 → 2026-09-26
| Date | 1 RUB in FJD | Daily change |
|---|---|---|
| 2026-09-26 | 0.026434 | 0.00% |
| 2026-09-25 | 0.026434 | +0.08% |
| 2026-09-24 | 0.026412 | -0.48% |
| 2026-09-23 | 0.026539 | -0.72% |
| 2026-09-22 | 0.02673 | +1.30% |
| 2026-09-21 | 0.026388 | +0.13% |
| 2026-09-20 | 0.026353 | +0.37% |
| 2026-09-19 | 0.026255 | -1.07% |
| 2026-09-18 | 0.026539 | +0.10% |
| 2026-09-17 | 0.026511 | +0.87% |
| 2026-09-16 | 0.026282 | +0.39% |
| 2026-09-15 | 0.026179 | +0.14% |
| 2026-09-14 | 0.026143 | -0.63% |
| 2026-09-13 | 0.026308 | +0.09% |
| 2026-09-12 | 0.026285 | -0.60% |
| Date | 1 RUB in FJD | Daily change |
|---|---|---|
| 2026-09-11 | 0.026444 | +1.75% |
| 2026-09-10 | 0.025989 | +1.41% |
| 2026-09-09 | 0.025626 | +0.60% |
| 2026-09-08 | 0.025472 | +0.28% |
| 2026-09-07 | 0.025401 | -0.69% |
| 2026-09-06 | 0.025576 | -0.37% |
| 2026-09-05 | 0.025671 | +1.38% |
| 2026-09-04 | 0.02532 | +0.43% |
| 2026-09-03 | 0.025213 | -0.77% |
| 2026-09-02 | 0.025409 | -0.23% |
| 2026-09-01 | 0.025467 | -0.39% |
| 2026-08-31 | 0.025567 | +0.11% |
| 2026-08-30 | 0.025538 | +0.09% |
| 2026-08-29 | 0.025514 | -0.49% |
| 2026-08-28 | 0.02564 | — |
RUB to FJD conversion table
1 RUB0.026434 FJD
5 RUB0.13217 FJD
10 RUB0.26434 FJD
25 RUB0.66085 FJD
50 RUB1.3217 FJD
100 RUB2.6434 FJD
500 RUB13.217 FJD
1,000 RUB26.4341 FJD
5,000 RUB132.1704 FJD
10,000 RUB264.3408 FJD
Get the RUB/FJD rate in your app
One GET request returns the latest RUB → FJD rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/RUB/FJD"fetch('https://rate-api.com/api/v1/pair/RUB/FJD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} FJD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/FJD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} FJD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/FJD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} FJD\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "FJD"
},
"rate": 0.0264,
"timestamp": 1790429424,
"date": "2026-09-26"
}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.
Related conversions
FJD to RUBFijian Dollar → Russian Ruble37.8299Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.