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

# List loan proceeds

> Returns all proceeds for a specific loan.



## OpenAPI

````yaml get /v1/businesses/{businessId}/loans/{loanId}/proceeds
openapi: 3.0.1
info:
  title: API
  version: latest
servers: []
security:
  - BearerAuth: []
tags: []
externalDocs:
  url: /
paths:
  /v1/businesses/{businessId}/loans/{loanId}/proceeds:
    get:
      tags: []
      summary: List loan proceeds
      description: Returns all proceeds for a specific loan.
      operationId: business.loans.loanId.proceeds.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
      responses:
        '200':
          description: A list of loan proceeds.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ApiLoanProceed'
                  meta:
                    $ref: '#/components/schemas/RequestMetadata'
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.
    RequestMetadata:
      type: object
      description: Request metadata. Present on paginated list responses.
      properties:
        type:
          type: string
          description: Metadata type discriminator. Value will be `request_metadata`.
          example: request_metadata
        pagination:
          $ref: '#/components/schemas/PaginationMetadata'
    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
    PaginationMetadata:
      type: object
      description: >-
        Cursor-based pagination metadata returned alongside paginated list
        responses.
      properties:
        sort_by:
          type: string
          nullable: true
          description: Field the result set is sorted by.
        sort_order:
          type: string
          enum:
            - ASC
            - DESC
          description: Sort direction applied to the result set.
        cursor:
          type: string
          nullable: true
          description: >-
            Opaque cursor to pass as `pagination_cursor` to fetch the next page.
            Null when there are no further pages.
        has_more:
          type: boolean
          description: Whether additional pages are available after the current one.
        total_count:
          type: integer
          format: int64
          nullable: true
          description: Total number of records across all pages, when available.
      required:
        - sort_by
        - sort_order
        - cursor
        - has_more
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````