The Palisade API enables programmatic interaction with the various features of the Palisade platform
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/
https://api.sandbox.palisade.co/
https://api.palisade.co/
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/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/palisade/api-docs/palisade-api/palisade-api-1/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
}'Supported key algorithms
Chain identifier (e.g., 'ethereum-mainnet', 'ethereum-goerli')
CoinGecko platform identifier for sync (optional for testnets)
- 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)
{ "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 }
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/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/palisade/api-docs/palisade-api/palisade-api-1/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"
}
}'{ "blockchains": [ { … } ], "pagination": { "previousPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "nextPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "total": 100 } }
Type of search to perform
- SEARCH_TYPE_CONTAINS: Default substring search
- SEARCH_TYPE_STARTS_WITH: Prefix search
- SEARCH_TYPE_EXACT: Exact match
- SEARCH_TYPE_FUZZY: Fuzzy/similarity search
- SEARCH_TYPE_FULLTEXT: Full-text search (future)
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/currencies
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/currencies
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/currencies
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/currencies?filter.enabled.eq=true&filter.enabled.isNull=true&filter.name.eq=string&filter.name.notEq=string&filter.name.contains=string&filter.name.startsWith=string&filter.name.endsWith=string&filter.name.in=string&filter.name.notIn=string&filter.name.regex=string&filter.name.isNull=true&filter.name.fuzzy.value=string&filter.name.fuzzy.minSimilarity=0.1&filter.code.eq=string&filter.code.notEq=string&filter.code.contains=string&filter.code.startsWith=string&filter.code.endsWith=string&filter.code.in=string&filter.code.notIn=string&filter.code.regex=string&filter.code.isNull=true&filter.code.fuzzy.value=string&filter.code.fuzzy.minSimilarity=0.1&filter.symbol.eq=string&filter.symbol.notEq=string&filter.symbol.contains=string&filter.symbol.startsWith=string&filter.symbol.endsWith=string&filter.symbol.in=string&filter.symbol.notIn=string&filter.symbol.regex=string&filter.symbol.isNull=true&filter.symbol.fuzzy.value=string&filter.symbol.fuzzy.minSimilarity=0.1&search.term=string&search.fields=string&search.type=SEARCH_TYPE_CONTAINS&search.minScore=0.1&search.options.caseSensitive=true&search.options.minTermLength=0&search.options.maxResults=0&search.options.multiTermAnd=true&pagination.pageSize=0&pagination.pageToken=string&pagination.orderBy=string&pagination.order=SORT_ORDER_ASC' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "currencies": [ { … } ], "pagination": { "previousPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "nextPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "total": 100 } }