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

# Get active fees

> Returns the active merchant fee schedule.



## OpenAPI

````yaml /openapi.json get /v1/fees
openapi: 3.0.3
info:
  contact:
    email: support@yara.cash
    name: Yara API Support
  description: >-
    Merchant-facing wallets/address-as-a-service API for creating merchant
    receive addresses, inspecting balances, quoting transfers, and initiating
    payouts to whitelisted recipients.

    Public endpoints are for external integrators. Dashboard endpoints are
    gateway-to-environment surfaces protected by the external API gateway.
    Internal endpoints are platform/system surfaces protected by an internal
    token.
  license:
    name: Proprietary
  title: Yara External API - Public API
  version: '1.0'
servers:
  - url: https://api.yara.cash
security: []
paths:
  /v1/fees:
    get:
      tags:
        - public.fees
      summary: Get active fees
      description: Returns the active merchant fee schedule.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeeScheduleResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    FeeScheduleResponse:
      properties:
        data:
          $ref: '#/components/schemas/FeeSchedule'
      type: object
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorBody'
      type: object
    FeeSchedule:
      properties:
        crypto:
          $ref: '#/components/schemas/CryptoFee'
        id:
          example: b21df7bd-9b49-44f9-9eea-950536b68f81
          type: string
        ngn:
          $ref: '#/components/schemas/NGNFee'
        status:
          example: ACTIVE
          type: string
        usd_bank:
          $ref: '#/components/schemas/USDBankFee'
      type: object
    ErrorBody:
      properties:
        code:
          example: validation_error
          type: string
        message:
          example: invalid JSON body
          type: string
      type: object
    CryptoFee:
      properties:
        deposit_fee_percentage:
          example: '0'
          type: string
        withdrawal_fee:
          $ref: '#/components/schemas/CryptoWithdrawalFee'
      type: object
    NGNFee:
      properties:
        deposit_fee_cap:
          example: '0'
          type: string
        deposit_fee_percentage:
          example: '0'
          type: string
        withdrawal_fee:
          example: '100'
          type: string
      type: object
    USDBankFee:
      properties:
        deposit_fee_cap:
          example: '0'
          type: string
        deposit_fee_percentage:
          example: '0.25'
          type: string
        withdrawal_fee_percentage:
          example: '0.4'
          type: string
      type: object
    CryptoWithdrawalFee:
      properties:
        arbitrum:
          example: '0.1'
          type: string
        base:
          example: '0.1'
          type: string
        bitcoin:
          example: '0.1'
          type: string
        bsc:
          example: '0.1'
          type: string
        celo:
          example: '0.1'
          type: string
        ethereum:
          example: '0.5'
          type: string
        optimism:
          example: '0.1'
          type: string
        polygon:
          example: '0.1'
          type: string
        solana:
          example: '0.1'
          type: string
        tron:
          example: '0.1'
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'Public merchant API key. You can also send Authorization: ApiKey <key>.'
      in: header
      name: X-Yara-API-Key
      type: apiKey

````