Skip to main content
GET
/
v1
/
name-screenings
/
alerts
/
{id}
Get alert by ID
curl --request GET \
  --url https://api.godiligent.ai/v1/name-screenings/alerts/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "id": "714808a0-faf0-4e0f-a3a3-fbe490a10efd",
  "reference": "5jb7h9b1kiu51kbwyrjhog350",
  "provider": "WORLD_CHECK",
  "status": "COMPLETED",
  "remediation_status": "REMEDIATED",
  "hits": [
    {
      "reference": "5jb766qtsj0e1kbwyrlh03gpe",
      "hit_categories": [
        "MEDIA"
      ],
      "evidences": [
        {
          "type": "DOB",
          "categories": [
            "DOB_AMBIGUOUS",
            "DOB_YEAR_MISMATCH"
          ],
          "supporting_facts": [
            {
              "subject": "HIT",
              "predicate": "date_of_birth",
              "value": "1974",
              "citations": [
                {
                  "name": "WEB_SEARCH",
                  "url": "https://example.com/article"
                }
              ]
            }
          ]
        }
      ],
      "resolution": {
        "status": "NOTHING",
        "determined_at": "2024-01-15T10:30:00Z",
        "summary": "DOB mismatch - different person",
        "author": "DILIGENT",
        "action": "COMMENT_FALSE_POSITIVE",
        "determination": "FALSE_POSITIVE",
        "triggered_rule": {
          "name": "Date of Birth Mismatch"
        }
      }
    }
  ],
  "created_at": "2024-01-15T09:00:00Z",
  "updated_at": "2024-01-15T10:30:00Z",
  "alt_reference": "ABIGASQLIM3WR"
}

Behavior

  • Returns a fully enriched alert including all hits, evidences, and supporting facts
  • Each evidence contains supporting_facts — the specific triples that contributed to the resolution decision
  • UNREMEDIATED alerts return 404 to prevent exposure of unprocessed data
  • The alert must belong to the authenticated customer

Response Shape

Each hit contains evidences, which are categorized as primary_name, other_name, or other. Each evidence contains:
  • categories — the signal types (e.g. NAME_GIVEN_NAME_EXACT_MATCH, DOB_YEAR_MISMATCH)
  • supporting_facts — the triples that drove the evidence, each with:
    • subjectHIT or PROFILE
    • predicate — e.g. has_name, date_of_birth
    • value — the extracted value
    • citations — array with one citation indicating the data source (HIT, PROFILE, REGISTRY, WEB_SEARCH) and optionally a url

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Alert ID or reference

Example:

"714808a0-faf0-4e0f-a3a3-fbe490a10efd"

Response

Alert retrieved successfully

id
string<uuid>
required

Alert unique identifier

Example:

"714808a0-faf0-4e0f-a3a3-fbe490a10efd"

reference
string
required

Alert reference from the provider

Example:

"5jb7h9b1kiu51kbwyrjhog350"

provider
string
required

Screening provider name

Example:

"WORLD_CHECK"

status
string
required

Alert status

Example:

"COMPLETED"

remediation_status
enum<string>
required

Whether all hits have been resolved

Available options:
REMEDIATED,
UNREMEDIATED
Example:

"REMEDIATED"

hits
object[]
required

List of enriched hits

created_at
string<date-time>
required
Example:

"2024-01-15T09:00:00Z"

updated_at
string<date-time>
required
Example:

"2024-01-15T10:30:00Z"

alt_reference
string | null

Alternate reference identifier

Example:

"ABIGASQLIM3WR"