Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

5282 articles

The Crypto Onramp Transaction Limit object


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 is false.

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 avalanche Avalanche network. base Base network. bitcoin Bitcoin network. celo Celo network. ethereum Ethereum network. optimism Optimism network. polygon Polygon network. solana Solana network. stellar Stellar network. sui Sui 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" } ] } }}
Last verified 2026-09-24

Is this helpful?