User Limit

Get the current user limit and monthlyUsed limit for onramp and offramp.

This endpoint will return the current onramp limit, offramp limit, monthly limit used by user for onramp and offramp, and isNextKycVerificationRequired (whether the more kyc verification step(s) is/are required or not).

GET user limit details.

POST https://integration.coinmena.com/onramp-bank/api/v1/user/limit

Request Body

NameTypeDescription

customerId*

String

Unique id received from /kyc/url

fiatType*

Integer

Refer fiatType mapping. Fiat-Type Mapping

{
    "status": 1,
    "code": 200,
    "data": {
        "onrampLimit": 7000,
        "offrampLimit": 7000,
        "monthlyLimitUsedOnramp": 20,
        "monthlyLimitUsedOfframp": 0,
        "isNextKycVerificationRequired": 1
    }
}

{
    "status": 1,
    "code": 200,
    "data": {
        "onrampLimit": 7000,
        "offrampLimit": 7000,
        "monthlyLimitUsedOnramp": 20,
        "monthlyLimitUsedOfframp": 0,
        "isNextKycVerificationRequired": 1
    }
}

Last updated