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

> Returns detailed information about a specific credit transfer.

Fields `outstanding`, `dueDate`, and `disbursedDate` are present when the transfer status is `disbursed`, `paid`, or `past_due`. Field `paidDate` is present only when status is `paid`.




## OpenAPI

````yaml openapi/managed-payments.yaml get /v1/managedPayments/credit/lines/{lineId}/transfers/{transferId}
openapi: 3.0.2
info:
  version: ${version}
  title: Managed Payments API
  description: |
    The Managed Payments API enables Payment Service Providers (PSPs) to create
    and manage sub-client accounts for stablecoin settlement.
servers:
  - url: https://api-sandbox.circle.com
  - url: https://api.circle.com
security: []
tags:
  - name: Managed Payments Accounts
    description: Create and manage sub-client accounts for Managed Payments PSPs.
  - name: Managed Payments Credit
    description: Get credit line details and wire instructions for repayment.
  - name: Managed Payments Credit Transfers
    description: Create and manage credit transfers (drawdowns) against a credit line.
paths:
  /v1/managedPayments/credit/lines/{lineId}/transfers/{transferId}:
    get:
      tags:
        - Managed Payments Credit Transfers
      summary: Get a credit transfer
      description: >
        Returns detailed information about a specific credit transfer.


        Fields `outstanding`, `dueDate`, and `disbursedDate` are present when
        the transfer status is `disbursed`, `paid`, or `past_due`. Field
        `paidDate` is present only when status is `paid`.
      operationId: getManagedPaymentsCreditTransfer
      parameters:
        - $ref: '#/components/parameters/LineIdPath'
        - $ref: '#/components/parameters/TransferIdPath'
      responses:
        '200':
          description: Successfully retrieved a credit transfer.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/XRequestId'
          content:
            application/json:
              schema:
                title: GetManagedPaymentsCreditTransferResponse
                properties:
                  data:
                    $ref: '#/components/schemas/ManagedPaymentsCreditTransfer'
              examples:
                Disbursed (partially repaid):
                  value:
                    data:
                      id: d01a4466-2ecf-40f9-972f-a5aea5ce3891
                      amount:
                        amount: '1000.00'
                        currency: USD
                      status: disbursed
                      outstanding:
                        amount: '150.00'
                        currency: USD
                      disbursedDate: '2024-08-16T16:40:06.672841Z'
                      dueDate: '2024-08-26T16:40:06.672841Z'
                      createDate: '2024-08-16T16:40:06.672841Z'
                      updateDate: '2024-08-16T16:40:06.672841Z'
                Paid (fully repaid):
                  value:
                    data:
                      id: d01a4466-2ecf-40f9-972f-a5aea5ce3891
                      amount:
                        amount: '1000.00'
                        currency: USD
                      status: paid
                      outstanding:
                        amount: '0.00'
                        currency: USD
                      disbursedDate: '2024-08-16T16:40:06.672841Z'
                      dueDate: '2024-08-26T16:40:06.672841Z'
                      paidDate: '2024-08-25T16:40:06.672841Z'
                      createDate: '2024-08-16T16:40:06.672841Z'
                      updateDate: '2024-08-16T16:40:06.672841Z'
        '401':
          $ref: '#/components/responses/NotAuthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - bearerAuth: []
components:
  parameters:
    LineIdPath:
      name: lineId
      description: Universally unique identifier (UUID v4) of the credit line.
      in: path
      required: true
      schema:
        type: string
        format: uuid
        example: 01c39206-64e9-4e30-8649-4e187cfcbf6d
    TransferIdPath:
      name: transferId
      description: Universally unique identifier (UUID v4) of the credit transfer.
      in: path
      required: true
      schema:
        type: string
        format: uuid
        example: 2cbbce57-17b2-4133-8f63-3f2d81fc3332
  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:
    ManagedPaymentsCreditTransfer:
      type: object
      description: A Managed Payments credit transfer (drawdown) from the credit line.
      required:
        - id
        - amount
        - status
        - createDate
        - updateDate
      properties:
        id:
          description: Unique identifier of the transfer.
          type: string
          format: uuid
          example: 2cbbce57-17b2-4133-8f63-3f2d81fc3332
        amount:
          allOf:
            - $ref: '#/components/schemas/FiatMoneyUsd'
            - description: The transfer amount.
        status:
          description: Current status of the transfer.
          type: string
          enum:
            - funds_reserved
            - requested
            - rejected
            - disbursed
            - expired
            - canceled
            - closed
            - paid
            - past_due
          example: disbursed
        outstanding:
          allOf:
            - $ref: '#/components/schemas/FiatMoneyUsd'
            - description: >-
                Remaining outstanding balance on the transfer. Present when
                status is `disbursed`, `paid`, or `past_due`.
        disbursedDate:
          allOf:
            - $ref: '#/components/schemas/UtcTimestamp'
            - description: >-
                ISO-8601 UTC date/time when the transfer was disbursed. Present
                when status is `disbursed`, `paid`, or `past_due`.
        dueDate:
          allOf:
            - $ref: '#/components/schemas/UtcTimestamp'
            - description: >-
                ISO-8601 UTC date/time when the transfer repayment is due.
                Present when status is `disbursed`, `paid`, or `past_due`.
        paidDate:
          allOf:
            - $ref: '#/components/schemas/UtcTimestamp'
            - description: >-
                ISO-8601 UTC date/time when the transfer was fully repaid.
                Present only when status is `paid`.
        createDate:
          allOf:
            - $ref: '#/components/schemas/UtcTimestamp'
            - description: ISO-8601 UTC date/time when the transfer was created.
        updateDate:
          allOf:
            - $ref: '#/components/schemas/UtcTimestamp'
            - description: ISO-8601 UTC date/time when the transfer 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.
    Forbidden:
      description: >-
        The request provides authentication, but the authenticated user does not
        possess sufficient permissions for accessing this resource.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: Forbidden
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 3
              message: Forbidden
          examples:
            response:
              value:
                code: 3
                message: Forbidden
    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

````