The Crypto Onramp Transaction Limit object
Attributes
- object string, value is "crypto.onramp_transaction_limits" String representing the object’s type. Objects of the same type share the same value.
- crypto _ customer _ id string The ID of the crypto customer.
- limits map The remaining onramp limit for the crypto customer, separated by currency, payment method, and settlement speed. Limits are shown for currencies that correspond to the regions where the customer previously transacted. If the customer has no prior transactions, we return limits for all supported currencies.
- livemode boolean If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse.
The Crypto Onramp Transaction Limit object
{ "object": "crypto.onramp_transaction_limits", "crypto_customer_id": "crc_1NamBL2eZvKYlo2CP38sZVEW", "livemode": true, "limits": { "usd.fiat": { "card": [ { "limit": 3000, "settlement_speed": "instant" } ], "us_bank_account": [ { "limit": 5000, "settlement_speed": "standard" }, { "limit": 1000, "settlement_speed": "instant" } ] } }}
Retrieve Onramp Transaction Limits
GET / v1 / crypto / onramp_transaction_limits
Retrieves the remaining onramp limit for a crypto customer.
Parameters
- customer _ ip _ address string The IP address of the customer requesting transaction limits. We support IPv4 and IPv6 addresses.
- destination _ network enum The destination blockchain network to use for limit calculations. Possible enum values
avalancheAvalanche network.baseBase network.bitcoinBitcoin network.celoCelo network.ethereumEthereum network.optimismOptimism network.polygonPolygon network.solanaSolana network.stellarStellar network.suiSui network. Show 2 more - destination _ tag string The destination tag for the wallet address, if applicable for the network.
- wallet _ address string The wallet address to use for destination-specific limit calculations.
Returns
Returns an OnrampTransactionLimits object
cURL
Response
{ "object": "crypto.onramp_transaction_limits", "crypto_customer_id": "crc_1NamBL2eZvKYlo2CP38sZVEW", "livemode": true, "limits": { "usd.fiat": { "card": [ { "limit": 3000, "settlement_speed": "instant" } ], "us_bank_account": [ { "limit": 5000, "settlement_speed": "standard" }, { "limit": 1000, "settlement_speed": "instant" } ] } }}
