Skip to content

Palisade API (2.0)

The Palisade API enables programmatic interaction with the various features of the Palisade platform

Download OpenAPI description
Languages
Servers
Mock server

https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api/

Sandbox server (uses TESTNET data, private keys and accounts)

https://api.sandbox.palisade.co/

Palisade server (uses MAINNET data, private keys and accounts)

https://api.palisade.co/

Addresses

Used to manage addresses

Operations

Allow Addresses (deprecated)

Used to manage legacy allow addresses

API Credentials

Used to manage credentials

Operations

Approvals

Used to manage approvals

Operations

Approvers

Used to manage approvers

Operations

Audit

Used to manage configuration for audit

Operations

Backup

Used to manage backups

Operations

Balances

Used to view balances

Operations

Compliance

Used to manage compliance

Operations

Counterparties

Used to manage counterparties

Operations

Devices

Used to manage devices

Operations

Information

Used to view information about the platform

Operations

MPC - Memberships

Used to manage MPC memberships

Operations

MPC - Quorums

Used to manage MPC quorums

Operations

MPC - Sessions

Used to manage MPC sessions

Operations

Organizations

Used to manage organizations

Operations

Policies

Used to manage connections policies

Operations

Rates

Used to retrieve rates

Operations

Sweep Configurations

Used to manage sweep configurations

Operations

Tags

Used to manage organization tags

Operations

Transactions

Used to manage transactions

Operations

Transactions - XRP

Used to manage XRP specific transactions

Operations

Users

Used to manage users

Operations

Vaults

Used to manage vaults

Operations

Vault Tags

Used to manage vault tags

Operations

Wallets

Used to manage wallets

Operations

Wallet Tags

Used to manage wallet tags

Operations

Wallet Connect

Used to manage connections

Operations

Webhooks

Used to manage webhooks

Operations

Registry

Operations

Get a blockchain

Request

Get blockchain configuration by ID

Security
TokenAuth
Path
idstringrequired

The blockchain ID to retrieve

Enum"AVALANCHE""ETHEREUM""XRP_LEDGER""POLYGON""BNBCHAIN""BASE""HEDERA""ARBITRUM""ONE_MONEY""SOLANA"
curl -i -X GET \
  'https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api/v2/blockchains/{id}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/json
idstring(Supported blockchains)required
Enum"AVALANCHE""ETHEREUM""XRP_LEDGER""POLYGON""BNBCHAIN""BASE""HEDERA""ARBITRUM""ONE_MONEY""SOLANA"
namestringrequired

Human-readable name of the blockchain

Example: "Ethereum"
namespacestringrequired

The CAIP-2 namespace identifier

Example: "eip155"
chainIdstringrequired

The chain ID (supports large numbers)

Example: "1"
rpcEndpointsArray of objects(v2RPCEndpoint)

RPC endpoints for blockchain connectivity

supportedEventsArray of strings

WalletConnect event types supported by this blockchain

supportedMethodsArray of strings

WalletConnect methods supported by this blockchain

keystoreTypesArray of strings(v2Keystore)

Supported keystore types (HSM, MPC)

Items Enum"HSM""MPC"
keyAlgorithmsArray of strings(- SECP256K1: used for evm chains and xrp ledger, supported by hsm and mpc - ED25519: used for solana, supported by mpc)

Supported key algorithms

Items Enum"SECP256K1""ED25519"
routingstringrequired

Message queue routing key base

Example: "ethereum"
statusstring(v2BlockchainStatus)required
Enum"RPC_ENDPOINT_TYPE_ENABLED""RPC_ENDPOINT_TYPE_DISABLED"
supportsWalletConnectboolean

Whether this blockchain supports WalletConnect

explorersArray of objects(v2Explorer)

Blockchain explorers for viewing transactions and addresses

createdAtstring(date-time)read-only

When the blockchain was created

updatedAtstring(date-time)read-only

When the blockchain was last updated

chainstring

Chain identifier (e.g., 'ethereum-mainnet', 'ethereum-goerli')

Example: "ethereum-mainnet"
coingeckoPlatformIdstring

CoinGecko platform identifier for sync (optional for testnets)

Example: "ethereum"
checksumTypestring(ChecksumType defines the type of address checksum used by a blockchain)
  • CHECKSUM_TYPE_NONE: No checksum (e.g., Solana)
  • CHECKSUM_TYPE_EIP55: Ethereum EIP-55
  • CHECKSUM_TYPE_BASE58CHECK: Tron Base58Check
  • CHECKSUM_TYPE_XRP: XRP Base58 with checksum (double-SHA256)
Enum"CHECKSUM_TYPE_NONE""CHECKSUM_TYPE_EIP55""CHECKSUM_TYPE_BASE58CHECK""CHECKSUM_TYPE_XRP"
blockTimeinteger(int32)

Average block time in seconds

Example: 12
confirmationBlocksinteger(int32)

Recommended number of confirmations for finality

Example: 6
Response
application/json
{ "id": "AVALANCHE", "name": "Ethereum", "namespace": "eip155", "chainId": "1", "rpcEndpoints": [ {} ], "supportedEvents": [ "string" ], "supportedMethods": [ "string" ], "keystoreTypes": [ "HSM" ], "keyAlgorithms": [ "SECP256K1" ], "routing": "ethereum", "status": "RPC_ENDPOINT_TYPE_ENABLED", "supportsWalletConnect": true, "explorers": [ {} ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "chain": "ethereum-mainnet", "coingeckoPlatformId": "ethereum", "checksumType": "CHECKSUM_TYPE_NONE", "blockTime": 12, "confirmationBlocks": 6 }

Delete a blockchain

Request

Soft delete a blockchain from the registry

Security
TokenAuth
Path
idstringrequired

The blockchain ID to delete

Enum"AVALANCHE""ETHEREUM""XRP_LEDGER""POLYGON""BNBCHAIN""BASE""HEDERA""ARBITRUM""ONE_MONEY""SOLANA"
curl -i -X DELETE \
  'https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api/v2/blockchains/{id}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

A successful response.

Bodyapplication/json
object(Empty response for successful deletion)
Response
application/json
{}

Update a blockchain

Request

Update an existing blockchain configuration

Security
TokenAuth
Path
idstringrequired

The blockchain ID to update

Enum"AVALANCHE""ETHEREUM""XRP_LEDGER""POLYGON""BNBCHAIN""BASE""HEDERA""ARBITRUM""ONE_MONEY""SOLANA"
Bodyapplication/jsonrequired
namestring

Updated blockchain name

Example: "Ethereum Mainnet"
namespacestring

Updated namespace

Example: "ethereum"
chainstring

Updated chain identifier

Example: "mainnet"
chainIdstring

Updated chain ID

Example: "1"
routingstring

Updated routing configuration

Example: "primary"
statusstring(v2BlockchainStatus)
Enum"RPC_ENDPOINT_TYPE_ENABLED""RPC_ENDPOINT_TYPE_DISABLED"
supportsWalletConnectboolean

Updated WalletConnect support

Example: true
curl -i -X PATCH \
  'https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api/v2/blockchains/{id}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "Ethereum Mainnet",
    "namespace": "ethereum",
    "chain": "mainnet",
    "chainId": "1",
    "routing": "primary",
    "status": "RPC_ENDPOINT_TYPE_ENABLED",
    "supportsWalletConnect": true
  }'

Responses

Bodyapplication/json
idstring(Supported blockchains)required
Enum"AVALANCHE""ETHEREUM""XRP_LEDGER""POLYGON""BNBCHAIN""BASE""HEDERA""ARBITRUM""ONE_MONEY""SOLANA"
namestringrequired

Human-readable name of the blockchain

Example: "Ethereum"
namespacestringrequired

The CAIP-2 namespace identifier

Example: "eip155"
chainIdstringrequired

The chain ID (supports large numbers)

Example: "1"
rpcEndpointsArray of objects(v2RPCEndpoint)

RPC endpoints for blockchain connectivity

supportedEventsArray of strings

WalletConnect event types supported by this blockchain

supportedMethodsArray of strings

WalletConnect methods supported by this blockchain

keystoreTypesArray of strings(v2Keystore)

Supported keystore types (HSM, MPC)

Items Enum"HSM""MPC"
keyAlgorithmsArray of strings(- SECP256K1: used for evm chains and xrp ledger, supported by hsm and mpc - ED25519: used for solana, supported by mpc)

Supported key algorithms

Items Enum"SECP256K1""ED25519"
routingstringrequired

Message queue routing key base

Example: "ethereum"
statusstring(v2BlockchainStatus)required
Enum"RPC_ENDPOINT_TYPE_ENABLED""RPC_ENDPOINT_TYPE_DISABLED"
supportsWalletConnectboolean

Whether this blockchain supports WalletConnect

explorersArray of objects(v2Explorer)

Blockchain explorers for viewing transactions and addresses

createdAtstring(date-time)read-only

When the blockchain was created

updatedAtstring(date-time)read-only

When the blockchain was last updated

chainstring

Chain identifier (e.g., 'ethereum-mainnet', 'ethereum-goerli')

Example: "ethereum-mainnet"
coingeckoPlatformIdstring

CoinGecko platform identifier for sync (optional for testnets)

Example: "ethereum"
checksumTypestring(ChecksumType defines the type of address checksum used by a blockchain)
  • CHECKSUM_TYPE_NONE: No checksum (e.g., Solana)
  • CHECKSUM_TYPE_EIP55: Ethereum EIP-55
  • CHECKSUM_TYPE_BASE58CHECK: Tron Base58Check
  • CHECKSUM_TYPE_XRP: XRP Base58 with checksum (double-SHA256)
Enum"CHECKSUM_TYPE_NONE""CHECKSUM_TYPE_EIP55""CHECKSUM_TYPE_BASE58CHECK""CHECKSUM_TYPE_XRP"
blockTimeinteger(int32)

Average block time in seconds

Example: 12
confirmationBlocksinteger(int32)

Recommended number of confirmations for finality

Example: 6
Response
application/json
{ "id": "AVALANCHE", "name": "Ethereum", "namespace": "eip155", "chainId": "1", "rpcEndpoints": [ {} ], "supportedEvents": [ "string" ], "supportedMethods": [ "string" ], "keystoreTypes": [ "HSM" ], "keyAlgorithms": [ "SECP256K1" ], "routing": "ethereum", "status": "RPC_ENDPOINT_TYPE_ENABLED", "supportsWalletConnect": true, "explorers": [ {} ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "chain": "ethereum-mainnet", "coingeckoPlatformId": "ethereum", "checksumType": "CHECKSUM_TYPE_NONE", "blockTime": 12, "confirmationBlocks": 6 }

Transactions - Sweep

Operations

Sweep Instances

Operations