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

# List fees

> Returns a paginated list of your fee rows - project defaults and account overrides - optionally filtered by type or scope.



## OpenAPI

````yaml /api-reference/openapi.json get /fees/
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sg.sandbox.api.reap.global
    description: Singapore sandbox
  - url: https://sg.prod.api.reap.global
    description: Singapore production
  - url: https://mx.sandbox.api.reap.global
    description: Mexico sandbox
  - url: https://mx.prod.api.reap.global
    description: Mexico production
  - url: https://sandbox.api.reap.global
    description: Singapore sandbox (alias)
  - url: https://prod.api.reap.global
    description: Singapore production (alias)
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Crypto Withdrawals
  - name: Disputes
  - name: Fees
  - name: Fiat Deposits
  - name: Fraud Alerts
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
  - name: Agentic
paths:
  /fees/:
    get:
      tags:
        - Fees
      summary: List fees
      description: >-
        Returns a paginated list of your fee rows - project defaults and account
        overrides - optionally filtered by type or scope.
      operationId: list_fees
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            default: 20
            examples:
              - 20
              - 50
              - 100
            description: 'Maximum number of items to return (1-100, default: 20)'
            type: integer
            exclusiveMinimum: 0
            maximum: 100
        - name: cursor
          in: query
          required: false
          schema:
            description: >-
              Opaque cursor for pagination. Pass nextCursor from previous
              response to get next page.
            type: string
        - name: type
          in: query
          required: false
          schema:
            description: Filter by fee type (comma-separated).
            type: array
            items:
              type: string
              enum:
                - FX_MARKUP
                - ATM_DOMESTIC_VARIABLE
                - ATM_DOMESTIC_FIXED
                - ATM_CROSS_BORDER_VARIABLE
                - ATM_CROSS_BORDER_FIXED
              example: FX_MARKUP
        - name: scopeType
          in: query
          required: false
          schema:
            description: Filter by scope type (comma-separated).
            type: array
            items:
              type: string
              enum:
                - PROJECT
                - ACCOUNT
              example: PROJECT
        - name: scopeId
          in: query
          required: false
          schema:
            description: Filter by the exact entity the fee attaches to.
            type: string
            format: uuid
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Response for status 200
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Fee'
                      description: A cardholder fee row.
                  nextCursor:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Cursor for next page, or null if no more items
                required:
                  - items
                  - nextCursor
components:
  schemas:
    Fee:
      type: object
      properties:
        id:
          description: Fee ID.
          type: string
          format: uuid
        type:
          type: string
          enum:
            - FX_MARKUP
            - ATM_DOMESTIC_VARIABLE
            - ATM_DOMESTIC_FIXED
            - ATM_CROSS_BORDER_VARIABLE
            - ATM_CROSS_BORDER_FIXED
          description: Which cardholder fee this row sets.
          example: FX_MARKUP
        value:
          oneOf:
            - $ref: '#/components/schemas/FeeBpsValue'
              title: FeeBpsValue
            - $ref: '#/components/schemas/FeeAmountValue'
              title: FeeAmountValue
          description: The fee value, denominated as `unit` says.
        scope:
          oneOf:
            - type: object
              properties:
                type:
                  type: string
                  const: PROJECT
              required:
                - type
              title: Project
            - type: object
              properties:
                type:
                  type: string
                  const: ACCOUNT
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: Account
          description: >-
            Where the fee attaches. PROJECT rows are the default rate card for
            your program; an ACCOUNT row overrides one fee type for one account.
        version:
          type: integer
          minimum: -9007199254740991
          maximum: 9007199254740991
          description: >-
            Incremented on every change. Transaction events record the version
            that priced them.
        createdAt:
          type: string
          description: ISO 8601 creation timestamp.
        updatedAt:
          type: string
          description: ISO 8601 last-update timestamp.
      required:
        - id
        - type
        - value
        - scope
        - version
        - createdAt
        - updatedAt
    FeeBpsValue:
      type: object
      properties:
        unit:
          type: string
          const: BPS
        bps:
          type: integer
          minimum: 0
          maximum: 10000
          examples:
            - 51
            - 150
          description: Rate in basis points of the transaction bill amount (100 bps = 1%).
      required:
        - unit
        - bps
    FeeAmountValue:
      type: object
      properties:
        unit:
          type: string
          const: AMOUNT
        amount:
          type: number
          minimum: 0
          examples:
            - 100.5
            - 0
            - 1234.99
          description: Fixed fee per transaction, in the project's billing currency.
        currency:
          type: string
          examples:
            - USD
            - HKD
            - EUR
          description: >-
            Currency of fixed fee amounts - the billing currency of the
            project's card program.
      required:
        - unit
        - amount
        - currency
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````