> ## 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 repayments

> Returns a paginated list of all repayments (fiat and crypto). Filterable by create date range, transfer ID, type, and status.



## OpenAPI

````yaml openapi/credit.yaml get /v1/credit/repayments
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/repayments:
    get:
      tags:
        - Credit Repayments
      summary: List all credit repayments
      description: >-
        Returns a paginated list of all repayments (fiat and crypto). Filterable
        by create date range, transfer ID, type, and status.
      operationId: listCreditRepayments
      parameters:
        - $ref: '#/components/parameters/CreditRepaymentTransferId'
        - $ref: '#/components/parameters/CreditRepaymentType'
        - $ref: '#/components/parameters/CreditRepaymentStatus'
        - $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 repayments.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/XRequestId'
          content:
            application/json:
              schema:
                title: ListCreditRepaymentsResponse
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CreditRepayment'
              examples:
                Credit Repayments:
                  value:
                    data:
                      - id: c3d4e5f6-a7b8-9012-cdef-123456789012
                        transferId: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
                        repaymentAccountId: be913bbd-83a9-4777-a924-5388f70ffe8b
                        amountApplied:
                          amount: '50450.00'
                          currency: USD
                        paymentAmount:
                          amount: '50450.00'
                          currency: USD
                        type: fiat
                        status: completed
                        settlementDate: '2024-04-10T09:30:00.000Z'
                        createDate: '2024-04-10T09:30:00.000Z'
                        updateDate: '2024-04-10T09:30:00.000Z'
        '401':
          $ref: '#/components/responses/NotAuthorized'
      security:
        - bearerAuth: []
components:
  parameters:
    CreditRepaymentTransferId:
      name: transferId
      description: Filters repayments by the associated transfer ID.
      in: query
      required: false
      schema:
        type: string
        format: uuid
    CreditRepaymentType:
      name: type
      description: Filters repayments by type.
      in: query
      required: false
      schema:
        type: string
        enum:
          - fiat
          - crypto
    CreditRepaymentStatus:
      name: status
      description: Filters repayments by their current status.
      in: query
      required: false
      schema:
        type: string
        enum:
          - pending
          - completed
          - failed
    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:
    CreditRepayment:
      type: object
      description: A repayment applied to a credit transfer.
      required:
        - id
        - transferId
        - amountApplied
        - paymentAmount
        - type
        - status
        - settlementDate
        - createDate
        - updateDate
      properties:
        id:
          description: Unique identifier of the repayment.
          type: string
          format: uuid
          example: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
        transferId:
          description: Identifier of the transfer this repayment is applied to.
          type: string
          format: uuid
          example: fc988ed5-c129-4f70-a064-e5beb7eb8e32
        repaymentAccountId:
          description: >-
            Identifier of the fiat account the repayment was made to. Pass this
            to `GET /v1/credit/repaymentAccounts/{fiatAccountId}` to retrieve
            the bank account details. Provided for fiat repayments; omitted for
            crypto repayments.
          type: string
          format: uuid
          example: be913bbd-83a9-4777-a924-5388f70ffe8b
        amountApplied:
          $ref: '#/components/schemas/FiatMoneyUsd'
          description: The amount applied toward the transfer's outstanding balance.
        paymentAmount:
          $ref: '#/components/schemas/FiatMoneyUsd'
          description: The total payment amount received.
        type:
          description: The type of repayment.
          type: string
          enum:
            - fiat
            - crypto
          example: fiat
        status:
          description: Current status of the repayment.
          type: string
          enum:
            - pending
            - completed
            - failed
          example: completed
        settlementDate:
          $ref: '#/components/schemas/UtcTimestamp'
          description: ISO-8601 UTC date/time when the repayment was settled.
        createDate:
          $ref: '#/components/schemas/UtcTimestamp'
          description: ISO-8601 UTC date/time when the repayment record was created.
        updateDate:
          $ref: '#/components/schemas/UtcTimestamp'
          description: ISO-8601 UTC date/time when the repayment 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

````