Professional People Trace API
Implementation Guide
Sending Request
The request should be sent to Searchbug using the following URL using the POST method:
https://data.searchbug.com/api/search.aspx
Search Parameters
You can submit your request via:
- POST Header: Parameters sent as custom headers
- POST Body: Parameters sent as form-data
Parameter |
Value Example
|
Description |
CO_CODE |
3453167
|
Required. Your account number
|
PASS |
H4z865i3$1
|
API Key or account password (not needed if using Bearer Token)
|
TYPE |
api_trace
|
Required. Use api_trace for this API
|
SSN |
212-77-3123
|
9-digit Social Security Number in any format (e.g. “123-45-6789” or “123456789”). Restricted Access Add-On
is required.
Partial SSN searches by the last 4 digits is also supported. First and Last Name are required for partial SSN
searches. Restricted Access Add-On is required.
|
FNAME |
Mary
|
First name
|
MNAME |
Ann
|
Middle Name or Middle Initial
|
LNAME |
Wilke
|
Last name
|
ADDRESS |
700 Saint Joseph Ridge CT Saint Louis MO
|
Street Address in postal format. Do not include unit number.
|
CITY |
Saint Louis
|
City of the residence
|
STATE |
Mo
|
State of the residence
|
FORMAT |
JSON
|
Optional. The default is XML. To get results in JSON format, pass FORMAT=JSON
|
REF |
CUST001
|
Optional. Used for API usage tracking per application or customer (100 char max).
|
Following search combinations are allowed:
- SSN
- FNAME + LNAME (not recommended for common names)
- FNAME + LNAME + STATE
- FNAME + LNAME + CITY+ STATE
- LNAME + CITY+ STATE
- ADDRESS + CITY + STATE
MNAME can be added to FNAME + LNAME searches.
Receiving Results
The results are returned in the XML format. This an example:
<?xml version="1.0" encoding="ISO-8859-1" standalone="true"?>
- <RESULTS>
<PROVIDER>SearchBug, Inc.</PROVIDER>
<PRODUCT>api_trace</PRODUCT>
- <response>
<status>0</status>
<transaction-id>37005230R272986</transaction-id>
<subject-count>3</subject-count>
- <record>
<type>subject</type>
<name-first>MARY</name-first>
<name-middle>ANN</name-middle>
<name-last>WILKE</name-last>
<street-number>700</street-number>
<street-name>SAINT JOSEPH RIDGE</street-name>
<street-suffix>CT</street-suffix>
<City>SAINT LOUIS</City>
<state>MO</State>
<zip>63129</zip>
<zip4>7107</zip4>
<county>ST. LOUIS</county>
<phone_phone10>3144164124</phone_phone10>
<ssn></ssn>
- <date-first>
<year>1998</year>
<month>2</month>
</date-first>
- <date-last>
<year>2015</year>
<month>1</month>
</date-last>
<unit-number>C</unit-number>
- <dob>
<year>1967</year>
<month>8</month>
<day>5</day>
</dob>
<age>47</age>
</record>
</response>
</RESULTS>
Example of No Results:
<?xml version="1.0" encoding="ISO-8859-1" standalone="true"?>
<RESULTS>
<FOUND>No</FOUND>
</RESULTS>