Skip to main content
GET
/
v2
/
tenant
/
fees
curl --request GET \
  --url 'https://api.glider.fi/v2/tenant/fees' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "swapBps": 25
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.glider.fi/llms.txt

Use this file to discover all available pages before exploring further.

Returns the tenant’s stored integrator swap-fee default. swapBps is the basis-point fee charged on the output side of every swap; null when no default is configured.
  • Auth: x-api-key header (required)
  • Required scope: fees:read
Per-strategy overrides live at GET /v2/strategies/{strategyId}/fees.
curl --request GET \
  --url 'https://api.glider.fi/v2/tenant/fees' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "swapBps": 25
  }
}