> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tbox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get your account trading settings

> Returns the authenticated client’s effective fee plus the products it may trade with their order-value limits. Orders that violate these are rejected with a 400.



## OpenAPI

````yaml /api-reference/openapi.json get /account/settings
openapi: 3.0.0
info:
  title: Xenios Trading API
  description: >-
    Place and manage orders, stream live market and account data, and read
    wallets, deposits and reference data over one authenticated gateway. All
    protected endpoints are authenticated with an HMAC-SHA256 request signature
    (see the Authentication guide). Decimal amounts are strings; timestamps are
    ISO-8601. Successful responses are wrapped in a standard { statusCode,
    success, message, data } envelope.
  version: '1.0'
  contact: {}
servers:
  - url: https://<your-host>/api/v1/trading
    description: Development gateway. Prefix every trading path with this base URL.
security:
  - xenios-hmac: []
tags:
  - name: Orders
    description: >-
      Place, cancel, and read your orders. Placement is idempotent on
      client_order_id.
  - name: Order Book
    description: Top-of-book depth snapshots for a trading pair.
  - name: Products
    description: Tradable products and pairs, plus OHLCV candles for charting.
  - name: Assets
    description: The assets available to your account.
  - name: Wallets
    description: Generate deposit addresses and read deposit history.
  - name: Account
    description: Your trading fee and effective account settings.
  - name: Health
    description: Liveness and readiness probes.
paths:
  /account/settings:
    get:
      tags:
        - Account
      summary: Get your account trading settings
      description: >-
        Returns the authenticated client’s effective fee plus the products it
        may trade with their order-value limits. Orders that violate these are
        rejected with a 400.
      operationId: getAccountSettings
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/ClientSettingsResponse'
        '401':
          description: Missing or invalid API credentials.
      security:
        - xenios-hmac:
            - read:account
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code echoed in the body.
          example: 200
        success:
          type: boolean
          description: True for success responses.
          example: true
        message:
          type: string
          description: Human-readable status message.
          example: Request processed successfully
      required:
        - statusCode
        - success
    ClientSettingsResponse:
      type: object
      properties:
        markupPercent:
          type: number
          description: Effective trading fee (markup) as a percent.
          example: 0.3
        restricted:
          type: boolean
          description: >-
            True when a product whitelist is in effect (the products below are
            the only ones tradable). False = unrestricted (the products below
            are all enabled products).
          example: false
        products:
          description: >-
            The products the caller may trade, each with its effective
            order-value limits.
          type: array
          items:
            $ref: '#/components/schemas/ProductRule'
      required:
        - markupPercent
        - restricted
        - products
    ProductRule:
      type: object
      properties:
        productId:
          type: string
          description: Trading pair id.
          example: BTC-USD
        base:
          type: string
          description: Base asset symbol.
          example: BTC
        quote:
          type: string
          description: Quote asset symbol.
          example: USD
        quoteCurrency:
          type: string
          description: Currency the order-value limits are expressed in.
          example: USD
        minOrderSize:
          type: object
          description: >-
            Minimum order value in the quote currency. Null = no minimum
            (Coinbase floor applies).
          nullable: true
          example: '10'
        maxOrderSize:
          type: object
          description: >-
            Maximum order value in the quote currency. Null = no maximum
            (Coinbase ceiling applies).
          nullable: true
          example: '100000'
      required:
        - productId
        - base
        - quote
        - quoteCurrency
  securitySchemes:
    xenios-hmac:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        HMAC-SHA256 authentication. Sign every request and send X-API-KEY,
        X-API-SIGNATURE, X-API-TIMESTAMP and X-API-NONCE (see the Authentication
        guide). Each route also requires a specific claim on your API key (e.g.
        read:orders, write:orders, read:account, read:market-data).

````