Skip to main content
This page is in active development. Concrete numbers and partner-integration pricing land here soon — track via the changelog.

How DZap charges

DZap charges a transparent protocol fee on volume routed through the aggregator. Two characteristics:
  • Surfaced in every quote — the fee field of every quote response is exact, not an estimate.
  • No hidden spread — the route’s price reflects the underlying DEX/bridge price; DZap does not widen quotes.

Fee schedule

OperationFeeNotes
Same-chain swapTBDDocumented at quote time
Cross-chain bridgeTBDCombined with bridge protocol fee
Fuse intent (gasless)TBDSolver spread; bound at signature time

Partner / integrator pricing

If you’re integrating DZap and want a custom fee or revenue share, see Partnership Requests.

Where fees show up

In SDK responses:
{
  "amountOut": "...",
  "fee": [
    { "amount": "...", "amountUSD": "...", "asset": { "symbol": "USDC" }, "included": true }
  ]
}
included: true means the fee is taken out of the route’s input; false means it’s charged separately on top.

Cookbook recipe

For an integrator who wants to surface DZap’s fee + add their own platform fee, see the Partner Fees recipe in the Cookbook.
Last modified on May 4, 2026