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

# Get One Fee by Code

> Return a single fee line's **effective** value for your platform, looked up by
its ``fee_code`` (e.g. ``ach.push``, ``wallet.send``, ``card.acquiring``).

Same resolution as `List Your Fee Schedule`: your override if set, otherwise the
universal default — and the ``source`` field tells you which one you got.
Returns ``404`` if the ``fee_code`` is not a known catalog line.



## OpenAPI

````yaml GET /v1/platform/fees/catalog/{fee_code}
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: embed-tokens
paths:
  /v1/platform/fees/catalog/{fee_code}:
    get:
      tags:
        - fees
      summary: Get One Fee by Code
      description: >-
        Return a single fee line's **effective** value for your platform, looked
        up by

        its ``fee_code`` (e.g. ``ach.push``, ``wallet.send``,
        ``card.acquiring``).


        Same resolution as `List Your Fee Schedule`: your override if set,
        otherwise the

        universal default — and the ``source`` field tells you which one you
        got.

        Returns ``404`` if the ``fee_code`` is not a known catalog line.
      operationId: get_fee_catalog_entry_v1_platform_fees_catalog__fee_code__get
      parameters:
        - name: fee_code
          in: path
          required: true
          schema:
            type: string
            description: The fee line code, e.g. ``ach.push`` or ``card.acquiring``.
            examples:
              - ach.push
            title: Fee Code
          description: The fee line code, e.g. ``ach.push`` or ``card.acquiring``.
      responses:
        '200':
          description: One fee line's effective value for your platform.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
              example:
                status_code: 200
                data:
                  fee_code: ach.push
                  label: ACH Push
                  category: ACH
                  domain: payout
                  structure: flat_plus_percent
                  allowed_structures:
                    - flat
                    - percent
                    - flat_plus_percent
                    - tiered
                  bearer: payer
                  bearer_selectable: true
                  is_metered: false
                  is_dormant: false
                  supports_caps: true
                  amount_based: true
                  actions:
                    flat_fee: 0.25
                    percent_fee: 0.5
                  caps:
                    min_fee: 0.25
                    max_fee: 5
                  source: override
                  policy_id: 7a1c9e2b-4d6f-4a8b-9c1e-2d5f3a6b7c8d
                query_generated_time: 1712847600000
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````