Build

Deal Properties

Access properties associated with deals in the Lev External API v2.

Updated March 2026

List Properties

GET/api/external/v2/deals/{deal_id}/properties

List properties associated with a deal

Response (200):

{
  "request_id": "...",
  "timestamp": "2026-03-20T15:30:45Z",
  "data": [
    {
      "id": 301,
      "name": "123 Main Street",
      "address": "123 Main St",
      "city": "New York",
      "state": "NY",
      "zip": "10001",
      "asset_type_id": 5,
      "units": 50,
      "square_footage": 45000.0,
      "year_built": 1985
    }
  ]
}
unauthorized
Authentication requiredMissing or invalid Authorization header
not_found
Deal not foundThe deal_id doesn't exist or isn't accessible to the authenticated user

Property Object

FieldTypeDescription
idintegerProperty identifier
namestring|nullProperty name
addressstring|nullStreet address
citystring|nullCity
statestring|nullState (2-letter code)
zipstring|nullZIP code
asset_type_idinteger|nullAsset type ID
unitsinteger|nullNumber of units
square_footagenumber|nullTotal square footage
year_builtinteger|nullYear the property was built
More in this section