v1

latestOpenAPI 3.0.22026-08-061303782.1 MB
Fees
Split Transfers

List Fees

Retrieve a list of Fee resources.

Filter fees by linked entity: You can filter fees by the entity that generated them using the linked_to query parameter:

  • Transfer fees: ?linked_to=TRnErBfrHLgdAi3BqAkWLN27
  • Authorization fees: ?linked_to=AUg8unYpnWBEY1AdVUDkdQYJ
  • Split transfer fees: ?linked_to=split_transfer_split_transfer_97gaitUpcmzqjYYpQbei9j
  • Compliance Form fees: ?linked_to=cf_uwErNm23TKYNEiqrEdJK59
  • Payment Instrument fees: ?linked_to=PInVUXZLswZi6pdcK1T41MuE
  • Merchant-specific fees: ?linked_to=MUwfZPNW3r4EqLMzwgr6txw4

{% admonition type="info" %} Merchant-specific fees include monthly dues and assessments and any custom fees. {% /admonition %}

To show fees charged to a specific entity during a period, pass the created_at.gte and created_at.lte query parameters.

  • Example: ?merchant_id=MUeDVrf2ahuKc9Eg5TeZugvs&created_at.lte=2025-01-01&created_at.gte=2025-02-01
get/fees

Query parameters

after_cursorstring

Return every resource created after the cursor value.

before_cursorstring

Return every resource created before the cursor value.

created_at.gtestring date-time
Example:2022-09-27T11:21:23

Filter where created_at is after the given date.

created_at.ltestring date-time
Example:2026-09-27T11:21:23

Filter where created_at is before the given date.

limitinteger
Example:10

The numbers of items to return.

linked_tostring

The ID of the resource that generated the Fee.

merchant_idstring

The ID of the Merchant that was charged fees.

tags.keystring
Example:card_type

Filter by the tag's key. For more information, see Tags.

tags.valuestring
Example:business_card

Filter by the tag's value. For more information, see Tags.

updated_at.gtestring date-time
Example:2022-09-27T11:21:23

Filter where updated_at is after the given date.

updated_at.ltestring date-time
Example:2026-09-27T11:21:23

Filter where updated_at is before the given date.

Headers

Finix-Versionstring
Example:2022-02-01

Specify the API version of your request. For more details, see Versioning.

Response

List of Fee resources

Example response

{
  "_embedded": {
    "fees": [
      {
        "amount": 2.393
      }
    ]
  }
}