APIVine
HomeAPIsDocsContact
Sign InBrowse APIs
APIVine

A curated collection of reliable APIs for developers. All APIs available through RapidAPI with free tiers for testing.

API Categories

  • Government & Public Data
  • Real Estate
  • Business & Location
  • Finance & Markets
  • E-commerce & Products

Resources

  • Browse APIs
  • Documentation
  • RapidAPI Hub
  • Request an API

Company

  • Contact Us
  • Privacy Policy
  • Terms of Service
  • Imprint

© 2026 APIVine by Kretronik GmbH. All rights reserved.

APIVine
HomeAPIsDocsContact
Sign InBrowse APIs
  1. Home
  2. /
  3. APIs
  4. /
  5. National Property Owner Lookup API

National Property Owner Lookup API

Featured

Find who owns any property — or every property a person or LLC owns — across major US counties, sourced directly from county assessor open data.

Real Estatev1.0NYC Open Data (PLUTO)Philadelphia OPA Property AssessmentsWashington DC Integrated Tax System (ITSPE)Boston Property Assessment
Get API on RapidAPI
Free tier: Free tier available

About this API

The National Property Owner Lookup API resolves property ownership from official county assessor records. Run a forward lookup (which owner is on a given street address) or a reverse lookup (every parcel a person or LLC owns within a county) — ideal for skip-tracing, real estate due diligence, lead generation, and CRM data enrichment. Each result is a normalized record with the owner name, situs address, parcel identifier, property type, assessed value, year built, and — where the county publishes it — the owner's mailing address and owner-occupancy flag. Coverage currently spans New York City, Philadelphia, Washington DC, and Boston, with more counties added over time; call the /counties endpoint for the live list. Every county returns the identical response shape, so you integrate once and get new markets for free.

Endpoints

GET/owner/counties

List Supported Counties

Return the counties currently supported. Use the returned slug values for the county parameter on /lookup and /portfolio.

Example Response

json
{
  "count": 4,
  "counties": [
    { "slug": "nyc", "name": "New York City, NY", "state": "NY" },
    { "slug": "philadelphia", "name": "Philadelphia, PA", "state": "PA" },
    { "slug": "washington-dc", "name": "Washington, DC", "state": "DC" },
    { "slug": "boston", "name": "Boston, MA", "state": "MA" }
  ]
}
GET/owner/lookup

Owner Lookup by Address

Forward lookup — find the owner(s) of a property by street address. The address is matched as a case-insensitive substring against the county assessor roll, so a partial address may return several parcels.

Parameters

NameTypeRequiredDescription
addressstringRequiredStreet address to look up (e.g. "350 Fifth Ave")
countystringRequiredCounty slug from /owner/counties (e.g. "nyc", "philadelphia", "washington-dc", "boston")
limitnumberOptionalMax matching records to return (1-100, default 25)

Example Response

json
{
  "county": "nyc",
  "address": "350 5 Avenue",
  "count": 1,
  "results": [
    {
      "county": "nyc",
      "state": "NY",
      "owner_name": "EMPIRE STATE REALTY OP LP",
      "address": "350 5 AVENUE",
      "city": "MANHATTAN",
      "zip_code": "10118",
      "parcel_id": "1000477501",
      "property_type": "O4",
      "assessed_value": 286000000,
      "year_built": 1931,
      "owner_mailing_address": null,
      "owner_occupied": null
    }
  ]
}
GET/owner/portfolio

Owner Portfolio (Reverse Lookup)

Reverse lookup — find every property owned by a person or LLC within a county. Powers skip-tracing and portfolio analysis. Owner name is matched as a partial, case-insensitive substring.

Parameters

NameTypeRequiredDescription
namestringRequiredOwner name or LLC to search (partial match, e.g. "CENTRAL CAPITAL GROUP")
countystringRequiredCounty slug from /owner/counties
limitnumberOptionalMax properties to return (1-200, default 50)

Example Response

json
{
  "county": "philadelphia",
  "owner_query": "CENTRAL CAPITAL GROUP",
  "count": 1,
  "results": [
    {
      "county": "philadelphia",
      "state": "PA",
      "owner_name": "CENTRAL CAPITAL GROUP LLC",
      "address": "2124 E LEHIGH AVE",
      "city": "PHILADELPHIA",
      "zip_code": "19125",
      "parcel_id": "314249400",
      "property_type": "COMMERCIAL",
      "assessed_value": 295000,
      "year_built": 1925,
      "owner_mailing_address": "1500 MARKET ST PHILADELPHIA PA 19102",
      "owner_occupied": null
    }
  ]
}

Use Cases

  • Skip-tracing absentee and LLC property owners
  • Real estate due diligence and lead generation
  • CRM and proptech data enrichment
  • Identifying portfolios behind shell companies
  • Direct-mail marketing to property owners
  • Title and lending pre-screening
  • Journalistic and academic research into property ownership

Quick Info

Version
1.0
Status
Active
Free Tier
Yes
Free Limit
Free tier available

Data Sources

NYC Open Data (PLUTO)Philadelphia OPA Property AssessmentsWashington DC Integrated Tax System (ITSPE)Boston Property Assessment
APIVine

A curated collection of reliable APIs for developers. All APIs available through RapidAPI with free tiers for testing.

API Categories

  • Government & Public Data
  • Real Estate
  • Business & Location
  • Finance & Markets
  • E-commerce & Products

Resources

  • Browse APIs
  • Documentation
  • RapidAPI Hub
  • Request an API

Company

  • Contact Us
  • Privacy Policy
  • Terms of Service
  • Imprint

© 2026 APIVine by Kretronik GmbH. All rights reserved.