# Get Basic Fee - Spot/Margin

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/base-fee:
    get:
      summary: Get Basic Fee - Spot/Margin
      deprecated: false
      description: |-
        :::info[Description]
        This interface is for the user’s spot/margin basic fee rate.
        :::
      tags:
        - Classic REST/Account Info/Trade Fee
        - MAIN
        - TH
        - TR
        - AU
        - EU
        - ALL
      parameters:
        - name: currencyType
          in: query
          description: >-
            Currency type: 0-crypto currency, 1-fiat currency. Default is
            0-crypto currency
          required: false
          example: 0
          schema:
            type: integer
            enum:
              - 0
              - 1
            x-apidog-enum:
              - value: 0
                name: '0'
                description: cryptocurrency
              - value: 1
                name: '1'
                description: fiat currency
            default: 0
            examples:
              - 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  data:
                    type: object
                    properties:
                      takerFeeRate:
                        type: string
                        description: Base taker fee rate
                      makerFeeRate:
                        type: string
                        description: Base maker fee rate
                    required:
                      - takerFeeRate
                      - makerFeeRate
                    x-apidog-orders:
                      - takerFeeRate
                      - makerFeeRate
                required:
                  - code
                  - data
                x-apidog-orders:
                  - code
                  - data
              example:
                code: '200000'
                data:
                  takerFeeRate: '0.001'
                  makerFeeRate: '0.001'
          headers: {}
          x-apidog-name: OK
      security: []
      x-abandon: normal
      x-domain: Spot
      x-api-channel: Private
      x-api-permission: General
      x-api-rate-limit-pool: Spot
      x-sdk-service: Account
      x-sdk-sub-service: Fee
      x-sdk-method-name: getBasicFee
      x-sdk-method-description: This interface is for the user’s spot/margin basic fee rate.
      x-api-rate-limit-weight: 3
      x-apidog-folder: Classic REST/Account Info/Trade Fee
      x-apidog-status: released
      x-run-in-apidog: https://www.kucoin.com/docs-new/web/project/345089/apis/api-3470149-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.kucoin.com
    description: OPEN
security: []

```