Skip to main content
GET
/
fiat
/
rates
/
{token}
/
{amount}
/
{currency}
Fiat sell rate quote
curl --request GET \
  --url http://localhost:4000/v1/fiat/rates/{token}/{amount}/{currency} \
  --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('http://localhost:4000/v1/fiat/rates/{token}/{amount}/{currency}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "http://localhost:4000/v1/fiat/rates/{token}/{amount}/{currency}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "status": "success",
  "message": "<string>",
  "data": {
    "token": "<string>",
    "amount": "<string>",
    "currency": "<string>",
    "network": "<string>",
    "rate": "<string>",
    "fiatAmount": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key created in the Remitflex Dashboard at dashboard.remitflex.io (rmf_live_... or rmf_test_...). Key management endpoints require a dashboard JWT and are not part of this reference.

Path Parameters

token
string
required
amount
string
required
currency
string
required

Query Parameters

network
string
default:base

Response

200 - application/json

Fiat sell rate quote

status
string
Example:

"success"

message
string
data
object