Skip to main content

Get Screening Result

Get Person Result Details​

GET {{baseurl}}/api/v1/persons/{id}

Retrieves the full profile details for a specific person record returned from a prior screening search. Use the uid from the search response as the id path parameter.

Path Parameters​

NameTypeRequiredDescription
idStringYesThe unique identifier (uid) of the person record

Request Example​

GET {{baseurl}}/api/v1/persons/abc123xyz

Response​

{
"status": 200,
"message": "persons fetched successfully",
"code": "info",
"data": {
"date": "2024-10-20T11:03:23+00:00",
"requestId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"matchesCount": 1,
"persons": [
{
"uid": "abc123xyz",
"score": 0.94,
"deceased": false,
"gender": "Male",
"names": [
{
"type": "Primary",
"firstName": "John",
"lastName": "Doe",
"fullName": "John Doe",
"lang": "en",
"_id": "64f1a2b3c4d5e6f7a8b9c0d1"
},
{
"type": "Alias",
"firstName": "Johnny",
"lastName": "Doe",
"fullName": "Johnny Doe",
"lang": "en",
"_id": "64f1a2b3c4d5e6f7a8b9c0d2"
},
{
"type": "Translation",
"firstName": "جون",
"lastName": "دو",
"fullName": "جون دو",
"lang": "ar",
"_id": "64f1a2b3c4d5e6f7a8b9c0d6"
}
],
"dobs": [
{
"day": 15,
"month": 3,
"year": 1975
}
],
"category": [
{
"type": "PEP",
"level": "International",
"_id": "64f1a2b3c4d5e6f7a8b9c0d3"
},
{
"type": "Sanction",
"level": "International",
"_id": "64f1a2b3c4d5e6f7a8b9c0d7"
}
],
"countries": [
{
"type": "Citizenship",
"code": "NG",
"_id": "64f1a2b3c4d5e6f7a8b9c0d4"
},
{
"type": "Residence",
"code": "GB",
"_id": "64f1a2b3c4d5e6f7a8b9c0d8"
}
],
"organizations": [
{
"name": "Federal Government of Nigeria",
"position": "Minister of Finance",
"_id": "64f1a2b3c4d5e6f7a8b9c0d5"
}
],
"addresses": [
{
"type": "Primary",
"line": "3 Eagle Square, Abuja",
"country": "NG",
"state": "FCT"
},
{
"type": "Birth place",
"line": "",
"country": "NG",
"state": "Lagos"
}
],
"images": [
"https://example.com/images/john-doe.jpg"
],
"sources": [
"UN Consolidated List",
"OFAC SDN List"
],
"links": [
{
"title": "Reuters Article",
"url": "https://www.reuters.com/article/example"
},
{
"title": "BBC Profile",
"url": "https://www.bbc.com/news/example"
}
],
"description": [
{
"type": "Description",
"value": "Former Minister of Finance, included on international sanctions list since 2021."
}
],
"extra": [
{
"key": "Passport Number",
"value": "A12345678"
},
{
"key": "National ID",
"value": "11111111111"
}
],
"relations": [],
"contactDetails": [],
"documents": []
}
]
}
}

Response Fields​

FieldTypeDescription
uidStringUnique identifier for this person record
scoreNumberMatch confidence score (0–1)
deceasedBooleanWhether the person is recorded as deceased
genderStringMale, Female, or other recorded value
namesArrayAll known names (Primary, Alias, Translation, Transliteration)
dobsArrayKnown dates of birth
categoryArrayScreening categories the person appears in (PEP, Sanction, etc.)
countriesArrayCountries associated with the person (Citizenship, Residence)
organizationsArrayOrganisations and positions held
addressesArrayKnown addresses (Primary, Secondary, Birth place)
imagesArrayURLs to profile images
sourcesArrayWatchlist or database sources where this person appears
linksArrayExternal reference URLs (news, official records)
descriptionArrayNarrative descriptions from source databases
extraArrayAdditional key-value metadata (document numbers, identifiers)
relationsArrayKnown associates or related persons
contactDetailsArrayContact information if available
documentsArrayIdentity documents on record

Error Responses​

HTTP/1.1 404 Not Found​

{
"status": 404,
"message": "Person not found",
"code": "error"
}

HTTP/1.1 403 Forbidden​

{
"success": false,
"statusCode": 403,
"message": "Permission denied",
"name": "UnauthorizedError",
"data": {}
}

HTTP/1.1 500 Internal Server Error​

{
"success": false,
"statusCode": 500,
"message": "Service unavailable",
"name": "Error",
"data": {}
}