# The Crypto Onramp Transaction Limit object

### The Crypto Onramp Transaction Limit object

```json
{
  "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"
        }
      ]
    }
  }
}
```

## 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`.
