Skip to main content
GET
Get closeout events

List Closeout Events

Not to be confused with Closeout endpoint configuration, which configures where closeout webhooks are sent — this endpoint lets you query/poll closeout event history after the fact. Returns verification results for searches that have reached COMPLETED status, with cursor-based pagination and optional filtering. Useful for polling or reconciling closeout activity instead of (or in addition to) relying on webhooks.
This route intentionally lives under the shorter /v1/ prefix rather than /background-check/v1/ — it is a general audit/polling API, not a background-check-specific route. See API versioning.

Request

searchId
string
Filter to closeout events for a specific search ID.
verificationId
string
Filter to a specific verification result ID.
since
string
ISO 8601 timestamp. Only returns events last updated on or after this time.
limit
number
Maximum number of events to return. Defaults to 50, capped at 200.
cursor
string
Opaque cursor for pagination — pass the last eventId from a previous page to fetch the next page.
Prefer either verificationId or cursor for a given request. When both are supplied, the server uses the cursor pagination filter and may not apply verificationId as a separate filter.

Response

success
boolean
Always true for a successful request.
data
array
Array of closeout events, ordered by updatedAt descending.
pagination
object

Example Request

Example Response

Error Responses

Use Cases

  • Polling/reconciliation: Periodically poll for newly completed closeouts using since or cursor as an alternative or backstop to webhooks.
  • Auditing: Retrieve the full closeout history for a specific searchId or verificationId.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

searchId
string

Filter by specific search ID

verificationId
string

Filter by specific verification ID

since
string

ISO timestamp to filter events since (ISO string)

limit
number

Maximum number of events to return (default 50, max 200)

cursor
string

Cursor for pagination

Response

200 - application/json

List of closeout events

The response is of type object.