Skip to main content
GET
/
wallet
/
transactions
/
limits
transactions - Get transaction limits
curl --request GET \
  --url https://api.ripio.com/wallet/transactions/limits/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": [
    {
      "gateway": "bank-transfer",
      "actions": [
        {
          "action": "DEPOSIT",
          "currency": "ARS",
          "currency_balance_id": 2,
          "limits": {
            "min_amount": 100,
            "max_amount": 500000,
            "daily_amount": 500000,
            "daily_qty": 5,
            "monthly_amount": 2000000,
            "monthly_qty": 30,
            "annual_amount": 10000000,
            "annual_qty": 365
          },
          "remaining": {
            "daily_amount": 450000,
            "daily_qty": 4,
            "monthly_amount": 1500000,
            "monthly_qty": 28,
            "annual_amount": 9000000,
            "annual_qty": 362
          }
        }
      ]
    }
  ]
}

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.

Query Parameters

gateway
string

Filter limits by gateway. Only gateways exposed through the Ripio gateway are accepted. If omitted, limits for all allowed gateways are returned (including the global limit).

Example:

"crypto"

action
string

Filter limits by transaction action type. If omitted, limits for all allowed actions are returned.

Example:

"DEPOSIT"

Response

Transaction limits retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object[]
required