MUR exchange rates âÃÂàall currency pairs from Bank of Mauritius
MUR exchange rates âÃÂàall currency pairs from Bank of Mauritius
1000 (raw units)
price
9
calls / 30d
7
unique payers
2026-09-17
updated
Provider
mru-oracle.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x237371f8b372A02b58fB430eb564b7c5cb936f75",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"rates": [
{
"buy": 45.21,
"currency": "USD 1",
"mid": 46.04,
"sell": 46.87
},
{
"buy": 53.7893,
"currency": "EUR 1",
"mid": 54.7244,
"sell": 55.6596
},
{
"buy": 61.6449,
"currency": "GBP 1",
"mid": 62.7153,
"sell": 63.7857
},
{
"buy": 29.566,
"currency": "JPY 100",
"mid": 30.57,
"sell": 31.574
},
{
"buy": 2.41,
"currency": "ZAR 1",
"mid": 2.515,
"sell": 2.62
}
]
},
"name": "SENTINEL",
"scrapedAt": "2026-03-03T22:00:00.000Z",
"source": "Bank of Mauritius"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mru-oracle.com/forex" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mru-oracle.com/forex");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mru-oracle.com/forex")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4984.json, and this resource appears in /discovery/resources and /discovery/search.