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

# Fetch a loan proceed

> Returns a single loan proceed by ID.



## OpenAPI

````yaml get /v1/businesses/{businessId}/loans/{loanId}/proceeds/{proceedId}
openapi: 3.0.1
info:
  title: API
  version: latest
servers: []
security:
  - BearerAuth: []
tags: []
externalDocs:
  url: /
paths:
  /v1/businesses/{businessId}/loans/{loanId}/proceeds/{proceedId}:
    get:
      tags: []
      summary: Fetch a loan proceed
      description: Returns a single loan proceed by ID.
      operationId: business.loans.loanId.proceeds.proceedId.get
      parameters:
        - name: businessId
          in: path
          description: The UUID of the business.
          required: true
          schema:
            type: string
            format: uuid
        - name: loanId
          in: path
          required: true
          description: The UUID of the loan.
          schema:
            type: string
            format: uuid
        - name: proceedId
          in: path
          required: true
          description: The UUID of the loan proceed.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The requested loan proceed.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/ApiLoanProceed'
components:
  schemas:
    ApiLoanProceed:
      type: object
      description: >-
        A loan proceed: funds (or an asset) received when a loan is drawn. See
        the [Loan Proceed object](/api-reference/loan/loan#loan-proceed-object).
      required:
        - id
        - business_id
        - loan_id
        - loan_proceed_type
        - method
        - amount
        - date
        - transaction_tags
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the loan proceed.
        business_id:
          type: string
          format: uuid
          description: ID of the business that holds the loan.
        external_id:
          type: string
          nullable: true
          description: Unique ID of the proceed in your system for linking purposes.
        loan_id:
          type: string
          format: uuid
          description: ID of the loan this proceed belongs to.
        loan_proceed_type:
          $ref: '#/components/schemas/LoanProceedType'
        method:
          $ref: '#/components/schemas/PaymentMethod'
        amount:
          type: integer
          format: int64
          description: Proceed amount, in cents.
        asset_id:
          type: string
          format: uuid
          nullable: true
          description: >-
            ID of the asset funded by this proceed. Present for `ASSET`
            proceeds.
        date:
          type: string
          format: date
          description: Date the proceed was received.
        archived_at:
          type: string
          format: date-time
          nullable: true
          description: When the proceed was archived, if applicable.
        memo:
          type: string
          nullable: true
          description: Internal note about the proceed.
        metadata:
          type: object
          additionalProperties: true
          nullable: true
          description: >-
            Arbitrary JSON object you can attach for your own use. Layer stores
            and returns it unchanged.
        reference_number:
          type: string
          nullable: true
          description: Reference number for the proceed.
        transaction_tags:
          type: array
          items:
            $ref: '#/components/schemas/ApiTag'
          description: Tags applied to this record.
    LoanProceedType:
      type: string
      description: >-
        How the loan proceeds were received. `DISBURSEMENT` is a cash
        disbursement; `ASSET` means the proceeds funded an asset (e.g. financed
        equipment).
      enum:
        - ASSET
        - DISBURSEMENT
    PaymentMethod:
      type: string
      enum:
        - CASH
        - CHECK
        - CREDIT_CARD
        - ACH
        - CREDIT_BALANCE
        - OTHER
    ApiTag:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: ID for the tag.
        key:
          type: string
          description: Key for the tag.
          example: ExampleTagKey
        dimension_display_name:
          type: string
          nullable: true
          description: Display name for the tag dimension.
        value:
          type: string
          description: Value for the tag.
          example: ExampleTagValue
        value_display_name:
          type: string
          nullable: true
          description: Display name for the tag value definition.
        dimension_id:
          type: string
          format: uuid
          description: ID of the tag dimension this tag belongs to.
        definition_id:
          type: string
          format: uuid
          description: ID of the tag value definition.
        archived_at:
          type: string
          format: date-time
          nullable: true
          description: When the tag was archived.
      required:
        - id
        - key
        - value
        - dimension_id
        - definition_id
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````