Title Check
curl --request POST \
--url https://api.deepidv.com/v1/screening/title-checkimport requests
url = "https://api.deepidv.com/v1/screening/title-check"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.deepidv.com/v1/screening/title-check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.deepidv.com/v1/screening/title-check",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.deepidv.com/v1/screening/title-check"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.deepidv.com/v1/screening/title-check")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deepidv.com/v1/screening/title-check")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"status": "found",
"subjectProperty": {
"APNFormatted": "123-456-789",
"PropertyFullStreetAddress": "1600 Amphitheatre Pkwy",
"PropertyCity": "Mountain View",
"PropertyState": "CA",
"PropertyZipCode": "94043",
"PropertyCounty": "Santa Clara",
"YearBuilt": 1998
},
"ownerInformation": {
"Owner1LastName": "Doe",
"Owner1FirstNameMiddleInitial": "John",
"MailingCity": "Mountain View",
"MailingState": "CA"
},
"locationInformation": null,
"ownerTransferInformation": null,
"lastMarketSaleInformation": null
}
{
"status": "not_found",
"message": "Could not resolve the provided address."
}
Silent Screening
Title Check
Look up property title records, ownership history, and lien data
POST
/
v1
/
screening
/
title-check
Title Check
curl --request POST \
--url https://api.deepidv.com/v1/screening/title-checkimport requests
url = "https://api.deepidv.com/v1/screening/title-check"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.deepidv.com/v1/screening/title-check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.deepidv.com/v1/screening/title-check",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.deepidv.com/v1/screening/title-check"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.deepidv.com/v1/screening/title-check")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deepidv.com/v1/screening/title-check")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"status": "found",
"subjectProperty": {
"APNFormatted": "123-456-789",
"PropertyFullStreetAddress": "1600 Amphitheatre Pkwy",
"PropertyCity": "Mountain View",
"PropertyState": "CA",
"PropertyZipCode": "94043",
"PropertyCounty": "Santa Clara",
"YearBuilt": 1998
},
"ownerInformation": {
"Owner1LastName": "Doe",
"Owner1FirstNameMiddleInitial": "John",
"MailingCity": "Mountain View",
"MailingState": "CA"
},
"locationInformation": null,
"ownerTransferInformation": null,
"lastMarketSaleInformation": null
}
{
"status": "not_found",
"message": "Could not resolve the provided address."
}
POST /v1/screening/title-check
Request
Headers
| Header | Required | Description |
|---|---|---|
x-api-key | Yes | Your API key |
Content-Type | Yes | application/json |
Body parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | Yes | Applicant email address |
firstName | string | Yes | Applicant first name (1–255 chars) |
lastName | string | Yes | Applicant last name (1–255 chars) |
address | string | Yes | US property address to look up (1–500 chars) |
Example request
curl -X POST https://api.deepidv.com/v1/screening/title-check \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"email": "applicant@example.com",
"firstName": "John",
"lastName": "Doe",
"address": "1600 Amphitheatre Parkway, Mountain View, CA 94043"
}'
const response = await fetch("https://api.deepidv.com/v1/screening/title-check", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY",
},
body: JSON.stringify({
email: "applicant@example.com",
firstName: "John",
lastName: "Doe",
address: "1600 Amphitheatre Parkway, Mountain View, CA 94043",
}),
});
const data = await response.json();
import requests
response = requests.post(
"https://api.deepidv.com/v1/screening/title-check",
headers={
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY",
},
json={
"email": "applicant@example.com",
"firstName": "John",
"lastName": "Doe",
"address": "1600 Amphitheatre Parkway, Mountain View, CA 94043",
},
)
data = response.json()
Response
200 — Success
The body is a discriminated union onstatus:
status | Description |
|---|---|
found | A single property matched — includes the property detail fields |
multiple_properties | The address matched more than one property — disambiguation required |
unsupported_region | The address is outside the supported (US) coverage area |
not_found | No property/title record matched the address |
status is found, the response carries the property detail. Each object is null when the underlying data is unavailable:
| Field | Type | Description |
|---|---|---|
subjectProperty | object | null | APN, full address, city, state, zoning, lot/building size, etc. |
ownerInformation | object | null | Owner names, mailing address, vesting/ownership rights |
locationInformation | object | null | County, census tract/block, school district, flood zone |
ownerTransferInformation | object | null | Most recent ownership transfer (document, date, deed type, price) |
lastMarketSaleInformation | object | null | Last market sale (date, price, buyer, seller, deed type) |
status is multiple_properties, the response includes message, an availableUnits array, and a properties array of { owner, apartmentOrUnit } to disambiguate. When status is unsupported_region or not_found, the response includes a human-readable message.
Error responses
| Status | Description |
|---|---|
400 Bad Request | Request body failed schema validation |
401 Unauthorized | API key is invalid |
403 Forbidden | API key is missing or resource not in org |
404 Not Found | Referenced resource was not found |
500 Server Error | Unexpected server error |
{
"status": "found",
"subjectProperty": {
"APNFormatted": "123-456-789",
"PropertyFullStreetAddress": "1600 Amphitheatre Pkwy",
"PropertyCity": "Mountain View",
"PropertyState": "CA",
"PropertyZipCode": "94043",
"PropertyCounty": "Santa Clara",
"YearBuilt": 1998
},
"ownerInformation": {
"Owner1LastName": "Doe",
"Owner1FirstNameMiddleInitial": "John",
"MailingCity": "Mountain View",
"MailingState": "CA"
},
"locationInformation": null,
"ownerTransferInformation": null,
"lastMarketSaleInformation": null
}
{
"status": "not_found",
"message": "Could not resolve the provided address."
}
⌘I