Saltar al contenido principal
POST
/
v1
/
payins
/
quotes
Obtener cotización
curl --request POST \
  --url https://stablecoin-api.sandbox.getmeru.com/v1/payins/quotes \
  --header 'Content-Type: application/json' \
  --data '
{
  "paymentRail": "<string>",
  "amount": 123,
  "fromCurrency": "<string>",
  "toCurrency": "<string>"
}
'
{
  "paymentRail": "crypto",
  "fromCurrency": "usdc",
  "toCurrency": "bob",
  "fromAmount": 100,
  "toAmount": 939.51,
  "rate": 9.4,
  "quotedAt": "2026-04-17T12:46:14.310Z",
  "expiresAt": "2026-04-17T12:46:44.310Z"
}

Cuerpo

paymentRail
string
requerido
qr_code o crypto.
amount
number
requerido
Monto a cotizar.
fromCurrency
string
requerido
Código de la moneda de origen.
toCurrency
string
requerido
Código de la moneda de destino.

Respuesta

{
  "paymentRail": "crypto",
  "fromCurrency": "usdc",
  "toCurrency": "bob",
  "fromAmount": 100,
  "toAmount": 939.51,
  "rate": 9.4,
  "quotedAt": "2026-04-17T12:46:14.310Z",
  "expiresAt": "2026-04-17T12:46:44.310Z"
}