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

# Get a credit repayment

> Returns detailed information about a specific repayment.



## OpenAPI

````yaml openapi/credit.yaml get /v1/credit/repayments/{id}
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/{id}:
    get:
      tags:
        - Credit Repayments
      summary: Get a credit repayment
      description: Returns detailed information about a specific repayment.
      operationId: getCreditRepayment
      parameters:
        - $ref: '#/components/parameters/IdPath'
      responses:
        '200':
          description: Successfully retrieved a credit repayment.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/XRequestId'
          content:
            application/json:
              schema:
                title: GetCreditRepaymentResponse
                properties:
                  data:
                    $ref: '#/components/schemas/CreditRepayment'
              examples:
                Fiat Repayment:
                  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'
                Crypto Repayment:
                  value:
                    data:
                      id: d4e5f6a7-b890-1234-defa-234567890123
                      transferId: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
                      amountApplied:
                        amount: '25000.00'
                        currency: USD
                      paymentAmount:
                        amount: '25000.00'
                        currency: USD
                      type: crypto
                      status: completed
                      settlementDate: '2024-04-08T12:00:00.000Z'
                      createDate: '2024-04-08T12:00:00.000Z'
                      updateDate: '2024-04-08T12:00:00.000Z'
        '401':
          $ref: '#/components/responses/NotAuthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - bearerAuth: []
components:
  parameters:
    IdPath:
      name: id
      description: Universally unique identifier (UUID v4) of a resource.
      in: path
      required: true
      schema:
        type: string
        format: uuid
        example: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
  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.
    NotFound:
      description: The specified resource was not found.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: NotFound
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 404
              message: Not found.
          examples:
            response:
              value:
                code: 404
                message: Not found.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````