Skip to main content
DELETE
/
api
/
fees
/
policy
/
polymarket
curl -s -X DELETE "https://trade.predexon.com/api/fees/policy/polymarket" \
  -H "x-api-key: YOUR_API_KEY"
{
  "enabled": true,
  "platformFeeBps": 25,
  "partnerFeeBps": 0,
  "partnerTreasuryAddress": null,
  "totalFeeBps": 25
}
This is idempotent — calling DELETE when no partner fee exists returns the current state without error.
curl -s -X DELETE "https://trade.predexon.com/api/fees/policy/polymarket" \
  -H "x-api-key: YOUR_API_KEY"
{
  "enabled": true,
  "platformFeeBps": 25,
  "partnerFeeBps": 0,
  "partnerTreasuryAddress": null,
  "totalFeeBps": 25
}

Authorizations

x-api-key
string
header
required

Response

200 - application/json

Partner fee removed

enabled
boolean

Whether fees are active

platformFeeBps
number

Predexon platform fee in basis points (currently 25)

partnerFeeBps
number

Partner markup fee in basis points (0 if not configured)

partnerTreasuryAddress
string | null

EVM address receiving partner fee revenue

totalFeeBps
number

Combined fee: platformFeeBps + partnerFeeBps