Skip to main content
The Background Check API screens a deal’s owners and business against public-records data and returns Heron’s structured work product: a per-subject breakdown of criminal records, bankruptcies, liens and judgments, lawsuits, UCC filings, sanctions / OFAC matches, corporate filings, and more, plus the outcome of each policy check you’ve configured. The flow is:
  1. Make sure the deal’s owner and business details have reached Heron - usually automatically from the ISO applications you already send us.
  2. Trigger the background check.
  3. Poll for completion and fetch the results.
The background check runs asynchronously. Triggering it returns immediately; you poll the results endpoint until the run completes.
This page is the narrative walkthrough. The full request and response schema for each endpoint is generated from our OpenAPI spec and lives in the API reference, so it always matches the live API:

Prerequisites

Before following this guide, you will need:
  • An API key (see Authentication). All requests send it in the x-api-key header.
  • The background check product enabled for your account. Speak to your Heron rep to switch it on - it is not enabled by default.
  • An end user representing the deal you want to screen. Most integrations already have these - an end user is created whenever you send Heron an ISO application, or you can create one directly (Create EndUser). The calls below address it by its heron_id (an eus_ string) or your own end_user_id.

Steps

1. Make sure the deal’s details have reached Heron

The background check searches on the owner and business identity Heron holds for the deal. There are two ways that data gets there.

From your ISO applications (most common)

If you already send Heron the deal’s ISO application - by API or email forwarding - Heron extracts the owner and business details from it automatically. There’s nothing extra to do here; skip to step 2.

Send the details over the API

If you don’t send ISO applications, supply the identity directly with PATCH /end_users/{id}/end_user_information (reference):
app.py
The Set application data reference lists every accepted field. The fields that drive the background check search are:
The more identity available, the more precise the match. A name is the minimum for an owner (first + last) and a legal name or DBA is the minimum for the business, but an owner’s SSN and date of birth is what reliably resolves them to the right person and avoids false matches. Up to two owners (owner_1, owner_2) are supported.

2. Trigger the background check

Start the check with the background_check enricher (reference). It returns 202 Accepted as soon as the run is dispatched:
app.py

3. Poll and fetch the results

Fetch the background check (reference) and read the top-level status until it is no longer processing:
app.py

Status lifecycle

Understanding the result

A succeeded response has three parts:
  • overall - the headline: a result (pass / review_required / failed / missing_data), a severity, and pass / review / fail counts.
  • subjects[] - one entry per owner_1, owner_2, and business, each with how it was matched (resolution), the search trail (searches), and the findings grouped by record type (sections).
  • policy - the outcome of your configured checks, each with its status and the evidence (subject, section, and records) behind it.
The full field-level schema - every section type, record shape, and enum - is on the Get background check results reference page, generated from the live API. An abridged example to show the shape:

Downloading a report as a PDF

Heron returns the background check as structured data (above), which is the source of truth and the most flexible format to integrate against - you can render it however suits your product. We can also generate a single combined PDF covering all owners and the business in one document, branded as Heron’s work product.
Heron provides its own background check work product. We can’t redistribute the raw third-party reports our data comes from. If a rendered PDF is something you need, talk to your Heron rep about format and branding.