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/assets:list
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/assets:list
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/assets: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/assets:list \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"filter": {
"blockchain": {
"eq": 0,
"notEq": 0,
"in": [
0
],
"notIn": [
0
],
"isNull": true,
"gt": 0,
"gte": 0,
"lt": 0,
"lte": 0
},
"enabled": {
"eq": true,
"isNull": true
},
"isVetted": {
"eq": true,
"isNull": true
},
"standard": {
"eq": 0,
"notEq": 0,
"in": [
0
],
"notIn": [
0
],
"isNull": true,
"gt": 0,
"gte": 0,
"lt": 0,
"lte": 0
},
"organizationId": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
},
"symbol": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
},
"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
}
},
"contractAddress": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
},
"source": {
"eq": "string",
"notEq": "string",
"contains": "string",
"startsWith": "string",
"endsWith": "string",
"in": [
"string"
],
"notIn": [
"string"
],
"regex": "string",
"isNull": true,
"fuzzy": {
"value": "string",
"minSimilarity": 0.1
}
},
"lastSyncedAt": {
"eq": "2024-08-08T10:00:00Z",
"notEq": "2024-08-08T10:00:00Z",
"before": "2024-08-08T10:00:00Z",
"after": "2024-08-08T10:00:00Z",
"gte": "2024-08-08T10:00:00Z",
"lte": "2024-08-08T10:00:00Z",
"between": {
"start": "2024-08-01T00:00:00Z",
"end": "2024-08-31T23:59:59Z"
},
"isNull": true,
"relativeDays": -7
},
"hasChecksum": {
"eq": true,
"isNull": true
}
},
"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"
}
}'{ "assets": [ { … } ], "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/blockchains
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/blockchains
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/blockchains
- 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/blockchains?filter.status.eq=0&filter.status.notEq=0&filter.status.in=0&filter.status.notIn=0&filter.status.isNull=true&filter.status.gt=0&filter.status.gte=0&filter.status.lt=0&filter.status.lte=0&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.chainId.eq=string&filter.chainId.notEq=string&filter.chainId.contains=string&filter.chainId.startsWith=string&filter.chainId.endsWith=string&filter.chainId.in=string&filter.chainId.notIn=string&filter.chainId.regex=string&filter.chainId.isNull=true&filter.chainId.fuzzy.value=string&filter.chainId.fuzzy.minSimilarity=0.1&filter.checksumType.eq=0&filter.checksumType.notEq=0&filter.checksumType.in=0&filter.checksumType.notIn=0&filter.checksumType.isNull=true&filter.checksumType.gt=0&filter.checksumType.gte=0&filter.checksumType.lt=0&filter.checksumType.lte=0&filter.chain.eq=string&filter.chain.notEq=string&filter.chain.contains=string&filter.chain.startsWith=string&filter.chain.endsWith=string&filter.chain.in=string&filter.chain.notIn=string&filter.chain.regex=string&filter.chain.isNull=true&filter.chain.fuzzy.value=string&filter.chain.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'{ "blockchains": [ { … } ], "pagination": { "previousPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "nextPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "total": 100 } }
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/blockchains
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/blockchains
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/blockchains
- 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 \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"id": "AVALANCHE",
"name": "Ethereum Mainnet",
"namespace": "ethereum",
"chain": "mainnet",
"chainId": "1",
"routing": "primary",
"status": "RPC_ENDPOINT_TYPE_ENABLED",
"supportsWalletConnect": true,
"rpcEndpoints": [
{
"url": "https://mainnet.infura.io/v3/YOUR-PROJECT-ID",
"priority": 0,
"type": "RPC_ENDPOINT_TYPE_HTTP"
}
],
"explorers": [
{
"name": "Etherscan",
"url": "https://etherscan.io",
"transactionFormat": "/tx/{txHash}",
"addressFormat": "/address/{address}"
}
],
"keystoreTypes": [
"HSM"
],
"keyAlgorithms": [
"SECP256K1"
],
"supportedEvents": [
"string"
],
"supportedMethods": [
"string"
]
}'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 }