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-1/
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/
Query
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)
Enum"SEARCH_TYPE_CONTAINS""SEARCH_TYPE_STARTS_WITH""SEARCH_TYPE_EXACT""SEARCH_TYPE_FUZZY""SEARCH_TYPE_FULLTEXT"
- 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'Response
application/json
{ "currencies": [ { … } ], "pagination": { "previousPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "nextPageToken": "cGFnZV9zaXplPTEwJnBhZ2VfdG9rZW49MjA=", "total": 100 } }
- 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 POST \
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/currencies \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"code": "USD",
"name": "United States Dollar",
"symbol": "$",
"decimals": 2,
"enabled": true
}'Response
application/json
{ "name": "United States Dollar", "code": "USD", "symbol": "$", "decimals": 2, "enabled": true }
- Mock server
https://docs.ripple.com/_mock/products/palisade/api-docs/palisade-api/palisade-api-1/v2/currencies/{code}
- Sandbox server (uses TESTNET data, private keys and accounts)
https://api.sandbox.palisade.co/v2/currencies/{code}
- Palisade server (uses MAINNET data, private keys and accounts)
https://api.palisade.co/v2/currencies/{code}
- 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/{code}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "name": "United States Dollar", "code": "USD", "symbol": "$", "decimals": 2, "enabled": true }