Build

Market Data

Access market data including base rates and asset types in the Lev External API v2.

Updated March 2026

Base Rates

GET/api/external/v2/market/base-rates

Get current base rates (SOFR, CMT, Prime, etc.)

Response (200):

{
  "request_id": "...",
  "timestamp": "2026-03-20T15:30:45Z",
  "data": [
    {
      "code": "sofr_30",
      "name": "SOFR 30-Day",
      "rate": 4.33
    },
    {
      "code": "cmt_5y",
      "name": "5-Year CMT",
      "rate": 3.95
    },
    {
      "code": "cmt_10y",
      "name": "10-Year CMT",
      "rate": 4.15
    }
  ]
}

Each base rate object contains:

FieldTypeDescription
codestringRate identifier code
namestringDisplay name
ratenumber|nullCurrent rate value
unauthorized
Authentication requiredMissing or invalid Authorization header

Asset Types

GET/api/external/v2/market/asset-types

Get available asset type definitions

Response (200):

{
  "request_id": "...",
  "timestamp": "2026-03-20T15:30:45Z",
  "data": [
    {
      "id": 1,
      "description": "Multifamily",
      "property_sub_types": ["garden", "mid-rise", "high-rise"]
    },
    {
      "id": 2,
      "description": "Office",
      "property_sub_types": ["CBD", "suburban"]
    },
    {
      "id": 3,
      "description": "Retail",
      "property_sub_types": ["strip_center", "mall", "single_tenant"]
    },
    {
      "id": 4,
      "description": "Industrial",
      "property_sub_types": ["warehouse", "flex"]
    },
    {
      "id": 5,
      "description": "Mixed-Use",
      "property_sub_types": null
    }
  ]
}

Each asset type object contains:

FieldTypeDescription
idintegerAsset type identifier
descriptionstring|nullAsset type name/description
property_sub_typesarray|nullSub-type classifications

Asset type IDs are used when creating deal properties (asset_type_id field).

unauthorized
Authentication requiredMissing or invalid Authorization header
More in this section