Set partner fee
curl --request PUT \
--url https://api.sand.etherfuse.com/ramp/partner-fee \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"partnerFeeDefaultBps": 100
}
'const options = {
method: 'PUT',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({partnerFeeDefaultBps: 100})
};
fetch('https://api.sand.etherfuse.com/ramp/partner-fee', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/partner-fee"
payload = { "partnerFeeDefaultBps": 100 }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"partnerFeeDefaultBps": 100
}Organizations
Set partner fee
Sets the default partner fee (in basis points) for the caller’s organization. The target organization is resolved from the API key — the fee always applies to the org that owns the key. The fee is capped at 500 bps (5.00%).
To configure a different org (for example, a child organization), call this endpoint using an API key issued for that org.
Once set, this default applies to all new quotes for the organization unless overridden
per-quote via the partnerFeeBps field on the quote request.
Partner fees are layered on top of platform fees and settled offline via finance — there is no on-chain component.
PUT
/
ramp
/
partner-fee
Set partner fee
curl --request PUT \
--url https://api.sand.etherfuse.com/ramp/partner-fee \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"partnerFeeDefaultBps": 100
}
'const options = {
method: 'PUT',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({partnerFeeDefaultBps: 100})
};
fetch('https://api.sand.etherfuse.com/ramp/partner-fee', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/partner-fee"
payload = { "partnerFeeDefaultBps": 100 }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"partnerFeeDefaultBps": 100
}