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

# List all credit fees

> Returns a paginated list of all historical fees. Filterable by create date range, currency, and status.



## OpenAPI

````yaml openapi/credit.yaml get /v1/credit/fees
openapi: 3.0.2
info:
  version: ${version}
  title: Credit API
  description: >
    The Circle Credit API provides access to credit facilities including Line of
    Credit and Settlement Advance products.


    **Line of Credit** enables direct drawdowns with auto-approval and
    asynchronous disbursement. Supports both fiat and crypto repayment.


    **Settlement Advance** requires a reserve-then-request flow with manual
    approval. Requires wire proof upload for disbursement approval. Supports
    fiat repayment only.
servers:
  - url: https://api-sandbox.circle.com
  - url: https://api.circle.com
security: []
tags:
  - name: Credit
    description: Get credit line details.
  - name: Credit Transfers
    description: Create, reserve, and manage credit transfers (drawdowns).
  - name: Credit Fees
    description: View fees charged on credit transfers.
  - name: Credit Repayments
    description: View and initiate repayments on credit transfers.
paths:
  /v1/credit/fees:
    get:
      tags:
        - Credit Fees
      summary: List all credit fees
      description: >-
        Returns a paginated list of all historical fees. Filterable by create
        date range, currency, and status.
      operationId: listCreditFees
      parameters:
        - $ref: '#/components/parameters/CreditFeeStatus'
        - name: transferId
          description: Filters fees to those associated with a specific transfer.
          in: query
          required: false
          schema:
            type: string
            format: uuid
        - $ref: '#/components/parameters/CreditCurrency'
        - $ref: '#/components/parameters/From'
        - $ref: '#/components/parameters/To'
        - $ref: '#/components/parameters/PageBefore'
        - $ref: '#/components/parameters/PageAfter'
        - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Successfully retrieved a list of credit fees.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/XRequestId'
          content:
            application/json:
              schema:
                title: ListCreditFeesResponse
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CreditFee'
              examples:
                Credit Fees:
                  value:
                    data:
                      - id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        transferId: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
                        amount:
                          amount: '15.00'
                          currency: USD
                        status: paid
                        accruedDate: '2024-03-21T00:00:00.000Z'
                        createDate: '2024-03-21T00:00:00.000Z'
                        updateDate: '2024-04-10T09:30:00.000Z'
                      - id: b2c3d4e5-f6a7-8901-bcde-f12345678901
                        transferId: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
                        amount:
                          amount: '15.00'
                          currency: USD
                        status: pending
                        accruedDate: '2024-03-22T00:00:00.000Z'
                        createDate: '2024-03-22T00:00:00.000Z'
                        updateDate: '2024-03-22T00:00:00.000Z'
        '401':
          $ref: '#/components/responses/NotAuthorized'
      security:
        - bearerAuth: []
components:
  parameters:
    CreditFeeStatus:
      name: status
      description: Filters fees by their current status.
      in: query
      required: false
      schema:
        type: string
        enum:
          - pending
          - paid
          - failed
    CreditCurrency:
      name: currency
      description: Filters by currency code.
      in: query
      required: false
      schema:
        type: string
        enum:
          - USD
    From:
      name: from
      description: Queries items created since the specified date-time (inclusive).
      in: query
      required: false
      schema:
        type: string
        format: date-time
        example: '2020-04-10T02:13:30.000Z'
    To:
      name: to
      description: Queries items created before the specified date-time (inclusive).
      in: query
      required: false
      schema:
        type: string
        format: date-time
        example: '2020-04-10T02:13:30.000Z'
    PageBefore:
      name: pageBefore
      description: >
        A collection ID value used for pagination.


        It marks the exclusive end of a page. When provided, the collection
        resource will return the next `n` items before

        the id, with `n` being specified by `pageSize`.


        The items will be returned in the natural order of the collection.


        The resource will return the first page if neither `pageAfter` nor
        `pageBefore` are specified.


        SHOULD NOT be used in conjuction with pageAfter.
      in: query
      required: false
      schema:
        type: string
    PageAfter:
      name: pageAfter
      description: >
        A collection ID value used for pagination.


        It marks the exclusive begin of a page. When provided, the collection
        resource will return the next `n` items after

        the id, with `n` being specified by `pageSize`.


        The items will be returned in the natural order of the collection.


        The resource will return the first page if neither `pageAfter` nor
        `pageBefore` are specified.


        SHOULD NOT be used in conjuction with pageBefore.
      in: query
      required: false
      schema:
        type: string
    PageSize:
      name: pageSize
      description: >
        Limits the number of items to be returned.


        Some collections have a strict upper bound that will disregard this
        value. In case the specified value is higher

        than the allowed limit, the collection limit will be used.


        If avoided, the collection will determine the page size itself.
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
        example: 5
  headers:
    XRequestId:
      description: >-
        Universally unique identifier (UUID v4) for the request. Helpful for
        identifying a request when communicating with Circle support.
      schema:
        type: string
        format: uuid
        example: 2adba88e-9d63-44bc-b975-9b6ae3440dde
  schemas:
    CreditFee:
      type: object
      description: A fee charged on a credit transfer.
      required:
        - id
        - transferId
        - amount
        - status
        - accruedDate
        - createDate
        - updateDate
      properties:
        id:
          description: Unique identifier of the fee.
          type: string
          format: uuid
          example: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
        transferId:
          description: Identifier of the transfer this fee is associated with.
          type: string
          format: uuid
          example: fc988ed5-c129-4f70-a064-e5beb7eb8e32
        amount:
          $ref: '#/components/schemas/FiatMoneyUsd'
          description: The fee amount.
        status:
          description: Current status of the fee.
          type: string
          enum:
            - pending
            - paid
            - failed
          example: pending
        accruedDate:
          $ref: '#/components/schemas/UtcTimestamp'
          description: ISO-8601 UTC date/time when the fee was accrued.
        createDate:
          $ref: '#/components/schemas/UtcTimestamp'
          description: ISO-8601 UTC date/time when the fee record was created.
        updateDate:
          $ref: '#/components/schemas/UtcTimestamp'
          description: ISO-8601 UTC date/time when the fee record was last updated.
    FiatMoneyUsd:
      type: object
      required:
        - amount
        - currency
      properties:
        amount:
          description: Magnitude of the amount, in units of the currency, with a `.`.
          type: string
          example: '3.14'
        currency:
          description: Currency code.
          type: string
          enum:
            - USD
    UtcTimestamp:
      type: string
      description: ISO-8601 UTC date/time format.
      example: '2020-04-10T02:13:30.000Z'
  responses:
    NotAuthorized:
      description: >-
        The request has not been applied because it lacks valid authentication
        credentials.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: NotAuthorized
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 401
              message: Malformed authorization.
          examples:
            response:
              value:
                code: 401
                message: Malformed authorization.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````