Returns the live rate used to price QR orders. The base rate is sourced from Rapira and refreshed every ~15 sec; effectiveRate applies the company's qrRateOffsetBps (basis points). Both rate and effectiveRate already include the commission — they are the value the next /orders/prepare will use.
Also returns the configured minAmountRub / maxAmountRub bounds enforced when preparing an order.
Безопасность
apiKeyAuth
- Mock serverhttps://b2b-app.lumowallet.io/_mock/apis/rates/current
- Productionhttps://b2b.lumowallet.io/rates/current
- Staginghttps://b2b-staging.lumowallet.io/rates/current
curl -i -X GET \
https://b2b-app.lumowallet.io/_mock/apis/rates/current \
-H 'X-API-Key: YOUR_API_KEY_HERE'Current rate
Final RUB/USDT rate applied to this company's QR orders (base × (1 + offsetBps/10000)). Same value as effectiveRate.
Пример:91.575
Per-company commission in basis points. Negative values reduce the rate (= our commission). 0 = no commission.
Пример:-100
Response
{ "rate": 91.575, "effectiveRate": 91.575, "baseRate": 92.5, "offsetBps": -100, "minAmountRub": 0, "maxAmountRub": 1000000, "pair": "USDT/RUB", "timestamp": "2019-08-24T14:15:22Z" }