---
title: "Get fee by ID"
method: GET
path: "/config/fees/{id}"
tags: ["Fees"]
---

# Get fee by ID

`GET /config/fees/{id}`

Gets a fee by ID.

## Path parameters

- `id` string, uuid, required

## Response `200`

Successfully retrieved fee.

- FiatFee — Represents a fee to be applied based on various criteria.
  - `value` number, required — Value of the fee to be applied. fiat node uses this value and `fee_type` to calculate the fee.
  - `currency_code` string, required — Currency this fee applies to.
  - `role_type` 'SENDING' | 'RECEIVING' | 'INSTITUTION_SENDING' | 'INSTITUTION_RECEIVING', required — Role of the party to which the fee applies.<p>If set to `SENDING`, the fee is charged to the originator of the payment.</p> <p>If set to `RECEIVING`, the fee is charged to the beneficiary of the payment.</p> <p>If set to `INSTITUTION_SENDING`, the fee is charged to the financial institution that is sending the payment.</p> <p>If set to `INSTITUTION_RECEIVING`, the fee is charged to the financial institution that is receiving the payment.</p>
  - `payment_type` 'REGULAR' | 'RETURN', required — Payment type the fee applies to.
  - `node_type` 'INITIAL' | 'INTERMEDIATE' | 'TERMINAL', required — Fiat node to which the fee applies.<p>If set to `INITIAL`, the fee is charged to the first fiat instance in the payment chain.</p> <p>If set to `INTERMEDIATE`, the fee is charged to each fiat instance in the payment chain that is not the first or last fiat instance.</p> <p>If set to `TERMINAL`, the fee is charged to the last fiat instance in the payment chain.</p>
  - `fee_type` 'PERCENTAGE' | 'FLAT_RATE', required — Method used to calculate the fee.
  - `partner_name` string — Owner of the account involved in the payment, in RippleNet Address format. For example, `rn.us.ca.san_francisco`.
  - `account_name` string — For a fee that applies to a specific account, provides the account name. Used in combination with the `partner_name` value.
  - `upper_limit` number — For a slab-based fee, provides the upper limit of the slab. Used in combination with the `lower_limit` value.
  - `lower_limit` number — For a slab-based fee, provides the lower limit of the slab. Used in combination wtih the `upper_limit` value.
  - `feeId` string, uuid, required — Unique identifier of the fee.
  - `payout_method` string — The payout method for this fee.
  - `fee_category` 'NONE' | 'OVERSEAS_DELIVERY_CHARGES' | 'BENEFICIARY_BANK_CHARGE' | 'PROCESSING_HANDLING_CHARGE' | 'LOCAL_GOVERNMENT_CHARGE' | 'OTHER' — Category that describes the purpose of the fee.
  - `fee_description` string — Optional free-form description for the fee.

## Other responses

- `404` — Fee not found.

---

[API](https://skmtc.net/ripple/apis/ripplenet-server-api.md) · [All operations](https://skmtc.net/ripple/apis/ripplenet-server-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ripple/ripplenet-server-api/revisions/7843f07ca150/schema)
