Skip to content

Get sources and uses

GET
/api/apiGateway/getDealFunds/{dealId}

Get the sources and uses of funds for a given deal.

Parameters

dealId string

The unique identifier of the deal that you want to retrieve.

Response

Type: application/json

Schema: DealFundsInfoResponseDto

success boolean

error ErrorDto

id string

fundsLoansInfo FundsLoansInfoDto

fundsSourcesInfo FundsSourcesInfoDto

fundsUsesInfo FundsUsesInfoDto

GET ${BASE_URL}/api/apiGateway/getDealFunds/0b6696e4-7c45-46c2-bb1f-d36d3ee93df7
Accept: */*
Authorization: Bearer eyJz93a...k4laUWw
curl --request GET \
    --url "${BASE_URL}/api/apiGateway/getDealFunds/0b6696e4-7c45-46c2-bb1f-d36d3ee93df7" \
    --header 'Accept: */*' \
    --header 'Authorization: Bearer eyJz93a...k4laUWw'
Response
{
  "success": true,
  "error": {
    "target": "string",
    "code": "Duplicated",
    "message": "string",
    "details": ["string"]
  },
  "id": "string",
  "fundsLoansInfo": {
    "loanFundsItems": [
      {
        "sourcesOfFunds": "string",
        "amount": 0,
        "loanPaymentStructure": "InterestOnly",
        "amortizationTerm": 0,
        "interestRate": 0,
        "dealIncomeValuation": 0,
        "dealNOI": 0,
        "debtYield": 0,
        "ltv": 0,
        "dscr": 0
      }
    ],
    "avgLTV": 0,
    "totalDSCR": 0,
    "totalDebtYield": 0
  },
  "fundsSourcesInfo": {
    "fundSourceItems": [
      {
        "id": "string",
        "sourcesOfFunds": "string",
        "amount": 0,
        "loanPaymentStructure": "InterestOnly",
        "amortizationTerm": 0,
        "interestRate": 0,
        "dollarPerUnit": 0,
        "dollarPerSF": 0,
        "percentOfTotal": 0,
        "default": true,
        "isDefault": true
      }
    ],
    "totalAmount": 0,
    "totalDollarPerUnit": 0,
    "totalDollarPerSF": 0,
    "balanceBetweenUsesAndSources": 0,
    "balanceName": "string"
  },
  "fundsUsesInfo": {
    "fundUseItems": [
      {
        "id": "string",
        "usesOfFunds": "string",
        "amount": 0,
        "dollarPerUnit": 0,
        "dollarPerSF": 0,
        "percentOfTotal": 0,
        "default": true,
        "isDefault": true
      }
    ],
    "totalAmount": 0,
    "totalDollarPerUnit": 0,
    "totalDollarPerSF": 0
  }
}