SkipTrace

SkipTrace resolves a person from an address, a name, a phone number, or an email, and returns contact details and demographics. Version 2 is current; v1 is deprecated.

POST/v2/SkipTrace

Trace a person

Request attributes

  • Name
    first_name
    Type
    string
    Description

    First name of the person to trace.

  • Name
    last_name
    Type
    string
    Description

    Last name of the person to trace.

  • Name
    address
    Type
    string
    Description

    Property address associated with the person.

  • Name
    unit
    Type
    string
    Description

    Unit number for the property address.

  • Name
    city
    Type
    string
    Description

    City for the property address.

  • Name
    state
    Type
    string
    Description

    Two-character state code for the property address.

  • Name
    zip
    Type
    string
    Description

    Five-digit ZIP for the property address.

  • Name
    mail_address
    Type
    string
    Description

    Mailing address, when it differs from the property.

  • Name
    mail_unit
    Type
    string
    Description

    Mailing address unit.

  • Name
    mail_city
    Type
    string
    Description

    Mailing address city.

  • Name
    mail_state
    Type
    string
    Description

    Mailing address state.

  • Name
    mail_zip
    Type
    string
    Description

    Mailing address ZIP.

  • Name
    phone
    Type
    string
    Description

    Reverse-lookup by phone number.

  • Name
    email
    Type
    string
    Description

    Reverse-lookup by email address.

Request

POST
/v2/SkipTrace
curl -X POST https://api.realestateapi.com/v2/SkipTrace \
  -H "x-api-key: $REALESTATEAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"first_name": "Jane", "last_name": "Doe", "address": "1 Rocket Rd", "city": "Hawthorne", "state": "CA", "zip": "90250"}'

Was this page helpful?