Property Boundaries

Property Boundaries returns parcel geometry in GeoJSON, ready to hand to a mapping library for lot lines. Look a parcel up by address, by lat/lng, by APN and FIPS, or fetch every parcel inside a polygon you supply.

POST/v1/PropertyParcel

Get parcel geometry

Request attributes

  • Name
    id
    Type
    integer
    Description

    Property ID from Property Search.

  • Name
    address
    Type
    string
    Description

    A fully formatted address.

  • Name
    house
    Type
    string
    Description

    House number, when using address parts.

  • Name
    street
    Type
    string
    Description

    Street name.

  • Name
    unit
    Type
    string
    Description

    Unit number.

  • Name
    city
    Type
    string
    Description

    City.

  • Name
    state
    Type
    string
    Description

    Two-character state code.

  • Name
    county
    Type
    string
    Description

    County.

  • Name
    zip
    Type
    string
    Description

    Five-digit ZIP code.

  • Name
    apn
    Type
    string
    Description

    Assessor's parcel number.

  • Name
    fips
    Type
    string
    Description

    County FIPS code, paired with apn.

  • Name
    latitude
    Type
    number
    Description

    Latitude, for a point or radius lookup.

  • Name
    longitude
    Type
    number
    Description

    Longitude, for a point or radius lookup.

  • Name
    radius
    Type
    number
    Description

    Radius in miles around the given point.

  • Name
    polygon
    Type
    array
    Description

    Return every parcel whose boundary falls inside this polygon.

  • Name
    size
    Type
    integer
    Description

    Results per page.

  • Name
    resultIndex
    Type
    integer
    Description

    Offset to start from.

Request

POST
/v1/PropertyParcel
curl -X POST https://api.realestateapi.com/v1/PropertyParcel \
  -H "x-api-key: $REALESTATEAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address": "1 Rocket Rd, Hawthorne, CA 90250"}'

Was this page helpful?