Skip to main content

Responses

The Shufti Pro Verification API will send you two types of responses if a request for verification is made. First is the HTTP response sent against your request, and the second is the callback response. Both HTTP and callback responses will be in JSON format with a header. application/json The response header also includes a Key Signature. This key is used for validating the source of the response. Be sure to validate the request by generating signature and matching it with the Signature value from the response header.

HTTP Status Codes

Shufti Pro Verification API uses conventional HTTP response codes to indicate the success or failure of an API request. Every response is generated in JSON with a specific HTTP code.

Following is a list of HTTP codes that are generated in responses by Shufti Pro Verification API.


HTTP codeHTTP messageMessage
200OKsuccess
400Bad RequestBad Request: one or more parameter is invalid or missing
401UnauthorizedUnauthorized: invalid signature key provided in the request
402Request FailedInvalid request data: missing required parameters
403ForbiddenForbidden: service not allowed
404Not FoundResource not found
409ConflictConflicting data: already exists
429Too Many RequestsToo Many Attempts.
500Server ErrorInternal Server Error
504Gateway TimeoutServer error
524Timeout from CloudflareUnofficial Server Error

Response Events

Events are sent in responses that show the status of the request. These events are sent in both HTTP and callback responses.


EventdescriptionHTTP ResponseCallback Response
request.invalidRequest parameters provided in request are invalid.YesNo
request.unauthorizedRequest is unauthorized. The information provided in authorization header is invalid.YesNo
verification.acceptedRequest was valid and accepted after verification.YesYes
verification.declinedRequest was valid and declined after verification.YesYes
request.deletedRequest has been deleted.YesYes
verification.status.changedRequest status has been updated.NoYes

Background Checks Response Events

verification.accepted
{
"reference": "17374217",
"event": "verification.accepted",
"verification_data": {
"background_checks": {
"dob": "1990-01-01",
"name": {
"first_name": "John",
"last_name": "Doe"
}
}
},
"verification_result": {
"background_checks": 1
},
"info": {
"agent": {
"is_desktop": true,
"is_phone": false,
"useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36",
"device_name": "Macintosh",
"browser_name": "",
"platform_name": "OS X - 10_14_0"
},
"geolocation": {
"host": "212.103.50.243",
"ip": "212.103.50.243",
"rdns": "212.103.50.243",
"asn": "9009",
"isp": "M247 Ltd",
"country_name": "Germany",
"country_code": "DE",
"region_name": "Hesse",
"region_code": "HE",
"city": "Frankfurt am Main",
"postal_code": "60326",
"continent_name": "Europe",
"continent_code": "EU",
"latitude": "50.1049",
"longitude": "8.6295",
"metro_code": "",
"timezone": "Europe/Berlin"
}
}
}

AML for Businesses Response Events

verification.accepted
{
"reference": "17374217",
"event": "verification.accepted",
"verification_data": {
"aml_for_business": {
"business_name": "Shufti Pro Ltd"
}
},
"verification_result": {
"aml_for_businesses": 1
},
"info": {
"agent": {
"is_desktop": true,
"is_phone": false,
"useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36",
"device_name": "Macintosh",
"browser_name": "",
"platform_name": "OS X - 10_14_0"
},
"geolocation": {
"host": "212.103.50.243",
"ip": "212.103.50.243",
"rdns": "212.103.50.243",
"asn": "9009",
"isp": "M247 Ltd",
"country_name": "Germany",
"country_code": "DE",
"region_name": "Hesse",
"region_code": "HE",
"city": "Frankfurt am Main",
"postal_code": "60326",
"continent_name": "Europe",
"continent_code": "EU",
"latitude": "50.1049",
"longitude": "8.6295",
"metro_code": "",
"timezone": "Europe/Berlin"
}
}
}

Verification Response

Responses will contain the following parameters:


ParametersDescription
referenceYour unique request reference, which you provided us at the time of request, so that you can identify the response in relation to the request made.
eventThis is the request event which shows status of request. Event is changed in every response. Please consult Events for more information.
errorWhenever there is an error in your request, this parameter will have the details of that error.
verification_resultIt is only returned in case of a valid verification. This includes results of each verification.
1 means accepted
0 means declined
null means not processed
Check verification.accepted and verification.declined responses in Events section for a sample response.
verification_dataIt is only returned in case of a valid verification. This object will include the all the gathered data in a request process. Check verification.accepted and verification.declined responses in Events section for a sample response.
infoThis object will be returned in case of verification.accepted or verification.declined. It contains the following keys:
Agent provides information about the device and browser of the end-user.
Geolocation provides information about the geographical location of the end-user.
For Details on info object go to Info
declined_reasonThis parameter will have the reason due to which a verification has been declined, and is only returned in this case in the callback URL.
For more info click here
declined_codesThis array contains status codes of all declined verification reasons. It will return only for verification.declined.
For more info click here
services_declined_codesThis object contains status codes of declined reasons for each service separately. Each service object will contain an array of status codes for declined reasons specific to that service. It will return only for verification. declined.
For more info click here

tip

Callback response will be sent on the callback_url provided in the request callback_url parameter.


Status Response

The Shufti Pro Verification API will send a JSON response if a status request is made. Make sure to validate the request by generating signature and matching it with the Signature value from the response header.

ParametersDescription
referenceYour unique request reference, which you provided us at the time of request, so that you can identify the response in relation to the request made.
eventThis is the request event which shows status of request. Event is changed in every response.
Please consult Events for more information.
countryThis contains country code sent by the merchant at the time of request. Country code in the format of ISO 3166-1 alpha-2. Please consult Supported Countries for country codes.
Type: string
Example: DE
null if not provided by merchant.
proofs
  • verification_report: This key provides a URL to download a PDF containing detailed request verification information. The PDF can be accessed by sending a POST request to the specified URL, including the access-token in the payload. It's important to note that the URL is only accessible one time.
  • access_token: The clients will get this key to access proof using POST method only.

Note: The URL returned is temporary and valid for 15 minutes only.
verification_dataThis contains all the data used for verification. This will only be returned in case of verification.accepted or verification.declined.
verification_resultThis is the complete result of the verification. 1 stands for verified, 0 for not verified and null for no verification performed. This will only be returned in case of verification.accepted or verification.declined.
infoThis object will be returned in case of verification.accepted or verification.declined. It contains the following keys:
Agent provides information about the device and browser of the end-user.
Geolocation provides information about the geographical location of the end-user.
For Details on info object go to Info
declined_reasonThis key will only be returned when event is verification.declined. This will contain the reason why verification was declined.
declined_codesThis array contains status codes of all declined verification reasons. It will return only for verification.declined.
services_declined_codesThis object contains status codes of declined reasons for each service separately. Each service object will contain an array of status codes for declined reasons specific to that service. It will return only for verification. declined.

caution

request.invalid response with HTTP status code 400 means the request is invalid.

background-checks-request-status
{
"reference": "17374217",
"event": "verification.declined",
"proofs": {
"verification_report": "https://ns.shuftipro.com/api/pea/15dad9f24bc07f457db83035c34ed8de1bfbc628",
"access_token": "0b08c40d850d571ddf2e8b9d8f9201c3b01f0d3902d63a9503253d9a20666d79"
},
"verification_data": {
"background_checks": {
"name": {
"first_name": "John",
"last_name": "Doe"
},
"aml_data": {
"filters": [
"pep-class-3",
"pep-class-1",
"pep-class-4",
"pep",
"sanction",
"warning",
"fitness-probity",
"pep-class-2"
],
"hits": [
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Muchell Ivan",
"O'Neill",
"Ivan O. Mitchell",
"John Doe",
"Ivan Mitchel",
"Ivan A. Mitchell",
"Mitchell Ivan",
"Mitchelle Ivan",
"Black Ivan Mitchell",
"Ivon Mitchell"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1961-09-16",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar: nose, left jawline, forehead between eyes and over right eyebrow; Tattoos: left arm \"Anita\", left side of chest \"Shannal\", right side of chest \"Shaquana\"",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 6' 1\" , Weight: 245 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=221",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Jarsis Howard",
"Howard Jamar Jarsis",
"Jamar Jarsis Howard",
"Jarsis Jamare Howard",
"Howard Jamar",
"John Doe",
"Jamar Jarsis Hower",
"Jarmar Howard",
"Jarmar Jamar Howard",
"Black Na",
"Jamar Hower",
"Jarsis Jamar Howard",
"J. Jarris Howard",
"Jamar Jamar Howard",
"Jamar Jamare Howard",
"Jarmar Black",
"J. Jarsis Howard",
"Jamal Howard"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1977-03-01",
"source": "united-states-alaska-sex-offenders",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "State of Alaska Department of Public Safety",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Eye Color": [
{
"value": "BROWN",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Hair Color": [
{
"value": "BLACK",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Height": [
{
"value": "6' 1\"",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Race": [
{
"value": "BLACK",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Weight": [
{
"value": "226 Lbs.",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Locationurl": [
{
"value": "https://sor.dps.alaska.gov/Registry/Detail?SexOffenderId=854736285783302852",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Related Url": [
{
"value": "https://sor.dps.alaska.gov/Registry/Detail?SexOffenderId=854736285783302852",
"source": "united-states-alaska-sex-offenders",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-alaska-sex-offenders": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2023-01-11T00:00:00Z",
"listing_started_utc": "2019-09-16T00:00:00Z",
"name": "United States Alaska Sex Offenders",
"url": "https://sor.dps.alaska.gov/Registry/Search"
}
},
"sources": [
"united-states-alaska-sex-offenders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Mark Carson",
"Mark Boseman",
"Bruce Carter",
"Herbert Alexander",
"Marc Bozeman",
"M. Boseman",
"John Doe",
"Mark Bozeman",
"Mark Bowman",
"Mark Jackson",
"Mark Carter",
"Dennis Bozeman",
"Mark Carterbozeman",
"Mark Mitchell",
"Mark Bethea",
"Marcus Matthews",
"Mark Broughman",
"Mark Brough",
"David Brown",
"Mark Dawson",
"Donald Briskin",
"David Whitney"
],
"assets": [],
"associates": [],
"fields": {
"Gender": [
{
"value": "male",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Address": [
{
"value": "Philadelphia County",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "Pennsylvania Parole Board",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Height": [
{
"value": "6 ft 01 in",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www.pa.gov/pbpp/absconders/Absconder/9284W",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "230",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-pennsylvania-most-wanted-absconders": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2023-08-13T00:00:00Z",
"listing_started_utc": "2022-11-13T00:00:00Z",
"name": "United States Pennsylvania Most Wanted Absconders",
"url": "https://www.pa.gov/pbpp/absconders/Search"
}
},
"sources": [
"united-states-pennsylvania-most-wanted-absconders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Thomas G. Darren",
"Dee Jacobs",
"John Doe",
"Jonathan Jacobs",
"Thomas Darren",
"Darren T. Thomas",
"Darrin Thomas",
"Darren Garey",
"John G. Jacobs"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1968-04-18",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scars on left eyem left elbow, missing part of right middle finger",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 6' 0\" , Weight: 175 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=1380",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Sean Price",
"Shawn Price",
"Shawnakisa Price",
"John Doe"
],
"assets": [],
"associates": [],
"fields": {
"Gender": [
{
"value": "male",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Address": [
{
"value": "Philadelphia County",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "Pennsylvania Parole Board",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Height": [
{
"value": "6 ft 01 in",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www.pa.gov/pbpp/absconders/Absconder/036GG",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "240",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-pennsylvania-most-wanted-absconders": {
"aml_types": [
"warning"
],
"listing_started_utc": "2022-12-13T00:00:00Z",
"name": "United States Pennsylvania Most Wanted Absconders",
"url": "https://www.pa.gov/pbpp/absconders/Search"
}
},
"sources": [
"united-states-pennsylvania-most-wanted-absconders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Anthony Newland",
"John Doe",
"Anthony Dion Newland",
"Anthony Ferguson-Newland",
"Anthony Ferguson-Newlan"
],
"assets": [],
"associates": [],
"fields": {
"Gender": [
{
"value": "male",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Address": [
{
"value": "Allegheny County",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "Pennsylvania Parole Board",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Height": [
{
"value": "5 ft 10 in",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www.pa.gov/pbpp/absconders/Absconder/596JX",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "260",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-pennsylvania-most-wanted-absconders": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2023-07-13T00:00:00Z",
"listing_started_utc": "2023-04-13T00:00:00Z",
"name": "United States Pennsylvania Most Wanted Absconders",
"url": "https://www.pa.gov/pbpp/absconders/Search"
}
},
"sources": [
"united-states-pennsylvania-most-wanted-absconders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Michael Tiburcio",
"John Doe"
],
"assets": [],
"associates": [],
"fields": {
"Gender": [
{
"value": "male",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Address": [
{
"value": "Philadelphia County",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "Pennsylvania Parole Board",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Height": [
{
"value": "5 ft 11 in",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Race": [
{
"value": "Other",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www.pa.gov/pbpp/absconders/Absconder/445EK",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "210",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-pennsylvania-most-wanted-absconders": {
"aml_types": [
"warning"
],
"listing_started_utc": "2023-02-13T00:00:00Z",
"name": "United States Pennsylvania Most Wanted Absconders",
"url": "https://www.pa.gov/pbpp/absconders/Search"
}
},
"sources": [
"united-states-pennsylvania-most-wanted-absconders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Neil Wright",
"John Doe"
],
"assets": [],
"associates": [],
"fields": {
"Gender": [
{
"value": "male",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Address": [
{
"value": "Philadelphia County",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "Pennsylvania Parole Board",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Height": [
{
"value": "6 ft 00 in",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www.pa.gov/pbpp/absconders/Absconder/353HI",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "175",
"source": "united-states-pennsylvania-most-wanted-absconders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-pennsylvania-most-wanted-absconders": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2023-06-13T00:00:00Z",
"listing_started_utc": "2020-08-03T00:00:00Z",
"name": "United States Pennsylvania Most Wanted Absconders",
"url": "https://www.pa.gov/pbpp/absconders/Search"
}
},
"sources": [
"united-states-pennsylvania-most-wanted-absconders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Bobbie Endsley",
"Conoly Jackson",
"Raymond Wilson",
"John Doe",
"Robert Stone",
"Richard Brown",
"Conoly Anderson",
"Bobby Endsley",
"Robert Green",
"R. Welberto Lawson",
"Endsley Robert Doyle",
"Robert Endsley",
"Billy Grand",
"Anderson Conoly"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1948-10-29",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
],
"Activation Date": [
{
"value": "11/21/1978",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar- Chin, , Scar- Left Arm, , Scar- Neck, , Scar- Right Arm",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States Michigan Department of Corrections",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "wanted",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
],
"offence": [
{
"value": "Larceny Over $100",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-michigan-department-of-corrections-wanted-escapes",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-michigan-department-of-corrections-wanted-escapes": {
"aml_types": [
"warning"
],
"listing_started_utc": "2019-08-27T00:00:00Z",
"name": "United States Michigan Department of Corrections Wanted Escapes",
"url": "https://mdocweb.state.mi.us/otis2/mostwanted.aspx"
}
},
"sources": [
"united-states-michigan-department-of-corrections-wanted-escapes"
],
"types": [
"warning"
]
},
{
"name": "Doe John",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Ramiro Garcia",
"Doe John",
"Flores Heriberto",
"Garcia Ramiro",
"Luis Hernandez",
"Hernandez Flores"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1971-12-13",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Activation Date": [
{
"value": "September 29, 2017",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New Jersey Department of Corrections",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "wanted",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Hair Color": [
{
"value": "Brown",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Height": [
{
"value": "5'7\"",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Race": [
{
"value": "Unknown",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www20.state.nj.us/DOC_Inmate/details?x=1505324&n=8",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": "related_url"
}
],
"Weight": [
{
"value": "192 lbs.",
"source": "united-states-new-jersey-department-of-corrections-escapes",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-new-jersey-department-of-corrections-escapes": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2023-07-11T00:00:00Z",
"listing_started_utc": "2019-08-27T00:00:00Z",
"name": "United States New Jersey Department of Corrections Escapes",
"url": "https://www20.state.nj.us/DOC_Inmate/escapes"
}
},
"sources": [
"united-states-new-jersey-department-of-corrections-escapes"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Emanuel Collins",
"John Doe",
"Ross Oliver",
"Emmanuel Colliuns",
"Emmanul Collins",
"Oliver M. Ross",
"Tommy Jones"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1973-01-30",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scars: back, left eye, left hand and right side of face; Tattoos: none known",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 9\" , Weight: 198 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=376",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"John Doe",
"Artis Horne",
"A. Braheam Horne",
"Artaviusm Horne",
"Artaviusm Hornet",
"Artavius Jermain Horne",
"Artainus Horne",
"Horne Artavius Jermain",
"Artaivus Horne",
"Miller Artaivus",
"Artvius Horne",
"Actavius Miller"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1983",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Activation Date": [
{
"value": "11/28/2017",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Address": [
{
"value": "STATION HOUSE SHELTER, 2601 NORTH BROAD STREET, PHILADELPHIA, PA 19132",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States Pennsylvania",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "Non-compliant Sex Offender",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Height": [
{
"value": "5' 11\"",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"offence": [
{
"value": "5902 - PROSTITUTION AND RELATED OFFENSES (WITH A MINOR)",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://www.pameganslaw.state.pa.us/OffenderDetails/PhysDesc/44055",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "230",
"source": "united-states-pennsylvania-non-compliant-sex-offenders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-pennsylvania-non-compliant-sex-offenders": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2019-12-11T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States Pennsylvania Non-compliant Sex Offenders",
"url": "https://www.pameganslaw.state.pa.us/Search/NonCompliantSearch"
}
},
"sources": [
"united-states-pennsylvania-non-compliant-sex-offenders"
],
"types": [
"warning"
]
},
{
"name": "Doe John",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Gallun Edward Lee",
"Galon Elwood",
"Gallon Doogie",
"Davis Edward",
"Edward Ben",
"Edward Gillam",
"Gallon Benjamin",
"Doe John",
"Gillam Edward",
"Gillan Edward Lee",
"L. Gillam Edward",
"Edward Davis",
"Ben Edward",
"Gallon Edward",
"Gillam Edward Lee",
"Davis Benjamin"
],
"assets": [],
"associates": [],
"fields": {
"Place of Birth": [
{
"value": "Canada",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Original Place of Birth Text": [
{
"value": "CA",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Date of Birth": [
{
"value": "1947-10-17",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Address": [
{
"value": "4/10 MILE DOWN BLUE TANK ROAD, WICKENBURG, 85358",
"source": "united-states-arizona-department-of-public-safety-sex-offenders",
"tag": ""
},
{
"value": "MILE MARKER 79 X HWY 21 LOWMAN ID 83637 BOISE COUNTY",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "Arizona Department of Public Safety",
"source": "united-states-arizona-department-of-public-safety-sex-offenders",
"tag": ""
},
{
"value": "Idaho State Police",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "Non-compliant Sex Offender",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Eye Color": [
{
"value": "BLUE",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Hair Color": [
{
"value": "BROWN",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Height": [
{
"value": "6 ft 00 in",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Other Info": [
{
"value": "Level: Level 1",
"source": "united-states-arizona-department-of-public-safety-sex-offenders",
"tag": ""
}
],
"Race": [
{
"value": "WHITE",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Related URL": [
{
"value": "https://isp.idaho.gov/sor_id/SOR?id=32254&sz=400",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": "related_url"
},
{
"value": "https://www.icrimewatch.net/offenderdetails.php?OfndrID=1361226&AgencyID=55662",
"source": "united-states-arizona-department-of-public-safety-sex-offenders",
"tag": "related_url"
}
],
"Weight": [
{
"value": "160 lbs",
"source": "united-states-idaho-non-compliant-sex-offenders",
"tag": ""
}
],
"Countries": [
{
"value": "Canada",
"source": "",
"tag": "country_names"
}
]
},
"media": [],
"source_notes": {
"united-states-arizona-department-of-public-safety-sex-offenders": {
"aml_types": [
"warning"
],
"listing_started_utc": "2019-10-30T00:00:00Z",
"name": "United States Arizona Department of Public Safety Sex Offenders",
"url": "http://www.icrimewatch.net/results.php?SubmitAllSearch=1&AgencyID=55662"
},
"united-states-idaho-non-compliant-sex-offenders": {
"aml_types": [
"warning"
],
"country_codes": [
"CA"
],
"listing_ended_utc": "2019-12-11T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States Idaho State Police Non-compliant Sex Offenders",
"url": "https://isp.idaho.gov/sor_id/SOR?form=6&typ=noncomp&page=1&sz=400"
}
},
"sources": [
"united-states-arizona-department-of-public-safety-sex-offenders",
"united-states-idaho-non-compliant-sex-offenders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Leonard Bell",
"Bell Leonardo",
"Leo Bell",
"John Doe",
"Lenardo Bell",
"Lerrnerdo Bell"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1964-06-28",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar on left eyebrow and right eyebrow",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 6' 0\" , Weight: 167 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=693",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Furet Dwight",
"Ira Moseby",
"Ira G. Morsby",
"Ira Morshy",
"Ira Morris",
"Dwyth Furet",
"John Doe",
"Irvin Paden",
"Ira Morsbey",
"Ira Delroy",
"Irving Paden",
"Ika Morsby",
"Irvins Paden",
"Ira Mosby",
"Delroy Murray",
"Ira Mosley",
"Irving Peden",
"Ira Charge",
"Delroy Wilson Ira Morsey",
"Marvin Aaron"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1960-02-21",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Left arm, Left eye area; wears glasses and upper dentures or partial plate",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5'06\" , Weight: 178 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=1473",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Winslow Jackson",
"W. Harris Lawrence",
"Winslow Harris",
"John Doe"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1964-03-30",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar on left wrist",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 10\" , Weight: 183 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=748",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Clovis E. Roche",
"Roche Cloves",
"John Doe"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1982-08-02",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Branding on both arms",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 11\" , Weight: 138 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=664",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Dominick Gillian",
"Rogers Tarrell",
"John Doe",
"Terrell Rogers",
"Tarel Rogers",
"Tyrell Rodgers"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1986-03-03",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scars: right side of neck, left eyebrow and left arm; Tattoos: \"PLAYBOY\" on left arm",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 11\" , Weight: 236 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=681",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Lamont T. Tate",
"John Doe",
"Terry Tate",
"Lamont M. Tate",
"Tate Lamonts",
"Tate Lamont",
"Terry Lamont",
"Roosevelt Moore"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1981-08-24",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar on right wrist; Tattoo: right bi-cep - \"Tie-Key\"",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 6' 3\" , Weight: 220 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=1106",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Tookes Willieal",
"Willie al Tookes",
"John Doe"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1962-01-06",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar on forehead; Tattoos: Left arm - Olivia, Heart; Right arm - Al, Denise 1/4/82; Wears glasses, partial plate on top and bottom teeth",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 11\" , Weight: 210 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=1556",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"John Doe",
"Christopher R. Weisswange",
"Chris R. Weiss Wange",
"Weisswange Chris",
"Christopher Weisswange"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1973-04-04",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Scar above lip; Tattoos: right arm - \"Chris\", right shoulder - cartoon character, left arm - rose, right leg - dagger, back - imprint of daughter's feet",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 10\" , Weight: 270 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=866",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Young Druce",
"John Doe",
"James Washing",
"Druce A. Young",
"Bruce A. Young",
"James Washington",
"Anthony Young",
"Tony Young",
"Washington Young",
"Druces Young"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1960-08-13",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Distinguishing Features": [
{
"value": "Gold tooth on top left of mouth",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "United States New York Department of Corrections",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Enforcement Type": [
{
"value": "apprehended",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Eye Color": [
{
"value": "Brown",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Hair Color": [
{
"value": "Gray",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Other Info": [
{
"value": "Height: 5' 4\" , Weight: 185 lbs.",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Race": [
{
"value": "Black",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": ""
}
],
"Related URL": [
{
"value": "http://161.11.133.89/mostwanted/mostwanteddet.asp?id=903",
"source": "united-states-new-york-department-of-corrections-most-wanted",
"tag": "related_url"
}
]
},
"media": [],
"source_notes": {
"united-states-new-york-department-of-corrections-most-wanted": {
"aml_types": [
"warning"
],
"listing_ended_utc": "2020-06-03T00:00:00Z",
"listing_started_utc": "2019-09-11T00:00:00Z",
"name": "United States New York Department of Corrections Most Wanted",
"url": "https://doccs.ny.gov/osi-most-wanted"
}
},
"sources": [
"united-states-new-york-department-of-corrections-most-wanted"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"S. Brandon Dietrich",
"Joe Doe",
"Brandon Scott Dietrick",
"S. John Doe",
"S. Brandon Schweitzer",
"John Doe",
"Brandon Scott Schweitzer",
"Doe Joe Schweitzer",
"Deitrick Brandon Scott",
"Brandon Scott Schwietzer",
"Joe Schweitzer",
"Brandon Scott Detrick",
"Brandon Schwietzer",
"S. Brendon Deitrick",
"Brandon Deitrick",
"Doe Schweitzer",
"Brandon Dietrick",
"J. Doe Schweitzer",
"Brandon Schweitzer",
"S. Brandon Deitrick"
],
"assets": [],
"associates": [],
"fields": {
"Date of Birth": [
{
"value": "1974-08-30",
"source": "united-states-alaska-sex-offenders",
"tag": "date_of_birth"
}
],
"Gender": [
{
"value": "male",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Enforcement Agency": [
{
"value": "State of Alaska Department of Public Safety",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Eye Color": [
{
"value": "BLUE",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Hair Color": [
{
"value": "BLONDE",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Height": [
{
"value": "5' 6\"",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Race": [
{
"value": "WHITE",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
],
"Weight": [
{
"value": "185 Lbs.",
"source": "united-states-alaska-sex-offenders",
"tag": ""
}
]
},
"media": [],
"source_notes": {
"united-states-alaska-sex-offenders": {
"aml_types": [
"warning"
],
"listing_started_utc": "2019-09-16T00:00:00Z",
"name": "United States Alaska Sex Offenders",
"url": "https://sor.dps.alaska.gov/Registry/Search"
}
},
"sources": [
"united-states-alaska-sex-offenders"
],
"types": [
"warning"
]
},
{
"name": "John Doe",
"entity_type": "person",
"score": 0.7,
"match_types": [
"aka_exact"
],
"alternative_names": [
"Melvin Archer",
"Melvin James",
"Mitch James",
"Melvin Arches",
"Melvin Pinnock",
"Mel Archer",
"John Doe",
"Melvin Hendricks",
"Errol Gaskins",
"Wayne Jackson",
"Melvin Archer, I"