Skip to main content
GET
/
wallet
/
transactions
/
gateways
transactions - Get available payment gateways
curl --request GET \
  --url https://api.ripio.com/wallet/transactions/gateways/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": [
    {
      "gateway": "crypto",
      "name": "Crypto",
      "order": 1,
      "actions": [
        {
          "action": "SEND",
          "enabled": true,
          "account_enabled": true,
          "fee": "0.00",
          "fixed_fee": "0.00",
          "custom_fee_currencies": {},
          "taxes": [],
          "deliver_time": "24hs",
          "blocked": false
        }
      ]
    }
  ]
}

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 gateways by gateway identifier. Only gateways exposed through the Ripio gateway are accepted. If omitted, all allowed gateways are returned.

Example:

"bank-transfer-cvu"

action
string

Filter gateways by action type. If omitted, all allowed actions are returned.

Example:

"WITHDRAWAL"

Response

Payment gateways retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object[]
required