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/wallet/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
- Mock serverhttps://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/blockchains/{id}
- Sandbox server (uses TESTNET data, private keys and accounts)https://api.sandbox.palisade.co/v2/blockchains/{id}
- Palisade server (uses MAINNET data, private keys and accounts)https://api.palisade.co/v2/blockchains/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/blockchains/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{}
- Mock serverhttps://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/blockchains/{id}
- Sandbox server (uses TESTNET data, private keys and accounts)https://api.sandbox.palisade.co/v2/blockchains/{id}
- Palisade server (uses MAINNET data, private keys and accounts)https://api.palisade.co/v2/blockchains/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.ripple.com/_mock/products/wallet/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
}'Bodyapplication/json
Enum"AVALANCHE""ETHEREUM""XRP_LEDGER""POLYGON""BNBCHAIN""BASE""HEDERA""ARBITRUM""ONE_MONEY""SOLANA"
Enum"RPC_ENDPOINT_TYPE_ENABLED""RPC_ENDPOINT_TYPE_DISABLED"
Chain identifier (e.g., 'ethereum-mainnet', 'ethereum-goerli')
Example: "ethereum-mainnet"
CoinGecko platform identifier for sync (optional for testnets)
Example: "ethereum"
Enum"CHECKSUM_TYPE_NONE""CHECKSUM_TYPE_EIP55""CHECKSUM_TYPE_BASE58CHECK""CHECKSUM_TYPE_XRP"
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 }
Request
List blockchains with advanced filtering. Supports both GET (bookmarkable) and POST (complex filters).
Security
TokenAuth
- Mock serverhttps://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/blockchains:list
- Sandbox server (uses TESTNET data, private keys and accounts)https://api.sandbox.palisade.co/v2/blockchains:list
- Palisade server (uses MAINNET data, private keys and accounts)https://api.palisade.co/v2/blockchains:list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.ripple.com/_mock/products/wallet/api-docs/palisade-api/palisade-api/v2/blockchains:list \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"filter": {
"status": {
"eq": 0,
"notEq": 0,
"in": [
0
],
"notIn": [
0
],
"isNull": true,
"gt": 0,
"gte": 0,
"lt": 0,
"lte": 0
},
"name": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
},
"chainId": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
},
"checksumType": {
"eq": 0,
"notEq": 0,
"in": [
0
],
"notIn": [
0
],
"isNull": true,
"gt": 0,
"gte": 0,
"lt": 0,
"lte": 0
},
"chain": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
}
},
"search": {
"term": "stable",
"fields": [
"name",
"symbol"
],
"type": "SEARCH_TYPE_CONTAINS",
"minScore": 0.1,
"options": {
"caseSensitive": true,
"minTermLength": 0,
"maxResults": 0,
"multiTermAnd": true
}
},
"pagination": {
"pageSize": 50,
"pageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=",
"orderBy": "created_at",
"order": "SORT_ORDER_ASC"
}
}'Response
application/json
{ "blockchains": [ { … } ], "pagination": { "previousPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "nextPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "total": 100 } }