One Trading API
REST APIWebSocket API
REST APIWebSocket API
  1. Trading
  • Public
    • Currencies
      GET
    • Instruments
      GET
    • Candlesticks
      GET
    • Fee Groups
      GET
    • Order Book
      GET
    • Market Ticker
      GET
    • Market Ticker For Instrument
      GET
    • Time
      GET
  • Trading
    • Balances
      GET
    • Fees
      GET
    • Get Orders
      GET
    • Create Order
      POST
    • Get Order by Order ID
      GET
    • Get Order by Client ID
      GET
    • Cancel All Orders
      DELETE
    • Cancel Order by Order ID
      DELETE
    • Cancel Order by Client ID
      DELETE
    • Get Trades for Order
      GET
    • Get Trades
      GET
    • Get Trade by Trade ID
      GET
  • Futures
    • Introduction
    • Funding Rate Methodology
    • Current Funding Rate
      GET
    • Funding Rate History
      GET
    • Futures Portfolio Summary
      GET
    • Get Futures Open Positions
      GET
  1. Trading

Fees

GET
https://api.onetrading.com/fast/v1/account/fees
Current fees for account. Fees are calculated and combined across all subccounts.
There are separate fee bands for each product type.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.onetrading.com/fast/v1/account/fees'
Response Response Example
{
  "account_id": "726288e6-a463-4f88-9068-024ae8f97a34",
  "running_volumes": [
    {
      "fee_group_id": "SPOT",
      "volume": 349.68,
      "currency": "EUR"
    },
    {
      "fee_group_id": "FUTURES",
      "volume": 149.31,
      "currency": "EUR"
    }
  ],
  "active_fee_tiers": [
    {
      "fee_group_id": "SPOT",
      "volume": 0,
      "maker_fee": "0.1000",
      "taker_fee": "0.2000"
    },
    {
      "fee_group_id": "FUTURES",
      "volume": 0,
      "maker_fee": "0.1000",
      "taker_fee": "0.2000"
    }
  ]
}

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Body
account_id
string <uuid>
required
The account id the fees have been requested for. Note, fees are calculated and applied across all accounts.
running_volumes
array[object (FeeRunningVolume) {3}] 
required
The current traded volumes for each product type
fee_group_id
string 
required
The ID of the fee group for this volume information
volume
number 
required
The volume traded for this particular product type
currency
string 
required
The currency representing the volume traded
active_fee_tiers
array[object (FeeActiveTier) {4}] 
required
The fee tier for each product type which is active for the account.
fee_group_id
string 
required
The ID of the fee group for this volume information
volume
number 
required
The volume at which this fee tier became active
maker_fee
string 
required
The percentage fee when a trade is executed as MAKER
taker_fee
string 
required
The percentage fee when a trade is executed as TAKER
Previous
Balances
Next
Get Orders
Built with