Get slippage setting
GET
/v1/exchange/slippage
const url = 'https://api.parasta.io/v1/exchange/slippage';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.parasta.io/v1/exchange/slippage \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
object
slippage
string
isCustom
boolean
systemDefault
string
Example generated
{ "slippage": "example", "isCustom": true, "systemDefault": "example"}