Skip to main content
POST
/
api
/
public
/
v1
/
fees
Get fee configuration
curl --request POST \
  --url https://api.wallbit.io/api/public/v1/fees \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "type": "TRADE"
}
'
{
  "data": {
    "fee_type": "TRADE",
    "tier": "LEVEL1",
    "percentage_fee": "0.5",
    "fixed_fee_usd": "0.00"
  }
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Obtain your API key from the Wallbit dashboard under Settings → API Keys.

Body

application/json
type
enum<string>
required

Fee category to resolve. Currently only stock trading (TRADE) is supported.

Available options:
TRADE

Response

Fee configuration found, or no row for the user's tier (empty data array)

data

Persisted fee configuration for a fee type and subscription tier (subset exposed by the public API)