Reonomy

Reonomy (an Altus Group company) is a commercial real-estate property-intelligence platform whose REST API delivers property search, property detail, ownership, mortgage, sales and debt, tax, tenant, and contact / skip-trace data across U.S. commercial real estate. The API resolves addresses to a stable Reonomy property ID and returns rich detail records keyed by that ID.

6 APIs 0 Features
Commercial Real EstateProperty DataProperty IntelligenceOwnershipSkip Trace

APIs

Reonomy Property Search API

Searches U.S. commercial real-estate properties by attribute filters (asset category, land use, building area, sale price, dates) and map filters (radius circle, polygon, boundi...

Reonomy Property Detail API

Retrieves detailed records for a single property by ID, or up to 250 properties at once via the bulk endpoint, with selectable detail types (basic, taxes, sales, mortgages, owne...

Reonomy Ownership API

The ownership detail type on the Property Detail API returns likely owners, reported owners, mortgage signatories, and linked companies for a property, surfaced through the prop...

Reonomy Sales & Debt API

The sales, mortgages, and foreclosure detail types on the Property Detail API return transaction history, deed sale amounts, lender and loan data (including CMBS), and default /...

Reonomy Tenants API

The tenants detail type on the Property Detail API returns occupant business data and associated contacts for a property.

Reonomy Contacts API

Contact data (persons with names, jobs, addresses, phones, and emails) is returned through the ownership and tenant detail types; a filter_pii option excludes personally identif...

Collections

Pricing Plans

Reonomy Plans Pricing

2 plans

PLANS

Rate Limits

Reonomy Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Reonomy Property API
  version: '2.0'
request:
  auth:
    type: basic
    basic:
      username: '{{accessKey}}'
      password: '{{secretKey}}'
items:
- info:
    name: Search
    type: folder
  items:
  - info:
      name: Search for properties
      type: http
    http:
      method: POST
      url: https://api.reonomy.com/v2/search/summaries
      body:
        type: json
        data: "{\n  \"settings\": {\n    \"asset_category\": [\"multifamily\"],\n    \"building_area\": { \"min\": 100000\
          \ }\n  },\n  \"map_filters\": {\n    \"circles\": [ { \"lat\": 40.7128, \"lon\": -74.006, \"radius_m\": 100 } ]\n\
          \  },\n  \"limit\": 10\n}"
    docs: Returns property IDs and coordinates for properties matching attribute and map filters. Page with the returned search_token.
  - info:
      name: Retrieve property parcel shapes
      type: http
    http:
      method: POST
      url: https://api.reonomy.com/v2/search/property-shapes
      body:
        type: json
        data: "{\n  \"property_ids\": [\"<property_id>\"]\n}"
    docs: Returns parcel shape geometry for the specified properties.
  - info:
      name: Resolve a property to a Reonomy property ID
      type: http
    http:
      method: POST
      url: https://api.reonomy.com/v2/resolve/property
      body:
        type: json
        data: "{\n  \"address\": \"1 World Trade Center\",\n  \"city\": \"New York\",\n  \"state_code\": \"NY\",\n  \"postal_code\"\
          : \"10007\"\n}"
    docs: Locates a matching Reonomy property ID from an address, geolocation, or place name.
- info:
    name: Property
    type: folder
  items:
  - info:
      name: Get a single property
      type: http
    http:
      method: GET
      url: https://api.reonomy.com/v2/property/{{property_id}}?detail_type=basic&detail_type=ownership
    docs: Returns detailed information for a single Reonomy property. Repeat detail_type to request multiple sections.
  - info:
      name: Get multiple properties
      type: http
    http:
      method: POST
      url: https://api.reonomy.com/v2/property/bulk
      body:
        type: json
        data: "{\n  \"property_ids\": [\"<property_id_1>\", \"<property_id_2>\"],\n  \"detail_type\": [\"basic\", \"sales\"\
          , \"mortgages\"]\n}"
    docs: Returns detailed records for up to 250 property IDs specified in the request body.