Skip to content

Regulated County Checks

Regulated County Checks provide county-level or statewide criminal background check results for a specific jurisdiction. county_fips_code is required. Provide a 5-digit FIPS code for a county-level search, or the literal statewide for a state-level search. Results include checks at the record, case, and charge levels indicating compliance with applicable legal rules. A permissible purpose is required for FCRA compliance.

Create regulated county check

Request

Create a new regulated county criminal check for a specific jurisdiction.

This endpoint initiates a county-level or statewide criminal background check using either provided PII (personally identifiable information) or an existing profile. Results include legal annotation checks at the record, case, and charge levels indicating whether items should be included, investigated, or removed based on applicable regulations.

A permissible purpose must be provided to comply with FCRA requirements.

county_fips_code is required along with the state: provide a 5-digit FIPS code for a county-level check, or the literal statewide for a state-level check.

Profile vs inline PII: Submit either a profile_id or inline PII/address fields—not both. Combining profile_id with name fields, addresses, or other PII returns 400 Bad Request. reference_id may be sent alongside profile_id. Empty addresses: [] counts as a supplied address parameter and cannot be paired with profile_id.

Required fields when providing PII (without profile_id):

  • first_name
  • last_name
  • dob
  • state
  • county_fips_code
  • filter_context
  • permissible_purpose

When using a profile_id, state, county_fips_code, filter_context, and permissible_purpose are required.

Security
get-bearer-token-using-oauth2
Query
include[]Array of strings

Request optional response fields. Repeat the parameter for multiple values.

Items Enum ValueDescription
profile

Embeds the full profile object in place of profile_id.

review

Embeds the regulated check review object (accept/decline/dispute status).

Examples:
Single value
include[]=["profile"]
Multiple values
include[]=["profile","review"]
Bodyapplication/jsonrequired

The request body for creating a regulated county check

One of:

Request to create a regulated county check using personally identifiable information (PII). Set county_fips_code to the literal statewide to perform a state-level search instead of a county-level search. A permissible purpose must be provided to comply with FCRA requirements.

middle_namestring

Middle name(s)

Example:"Mary"
no_middle_nameboolean(no_middle_name)

Set to true to declare that the subject does not have a middle name.

Mutually exclusive with a non-empty middle_name: the API rejects requests that supply both a present middle_name and no_middle_name: true. An empty or null middle_name with no_middle_name: true is allowed. A non-empty middle_name may be supplied with no_middle_name: false.

Allowed with full_name: full_name and no_middle_name may be sent together. That is not the same as supplying middle_name — when the flag is true, parsing stores only a first name and surname, and any token the parser would have treated as a middle name is folded into the last name (for example full_name: "John Quincy Doe" becomes first name John and last name Quincy Doe, with middle_name empty).

Setting this to true clears a middle name already stored on a referenced profile. Supplying a non-empty middle_name without this field sets no_middle_name to false. When true, products that perform criminal-record identity matching exclude records with a middle name, narrowing matches to subjects with no middle name on record. When supplied with profile_id, the value is persisted to the referenced profile (same account-scoped profile the check is created against). Leave as false (or omit) if unsure.

Default:false
first_namestring

First name (given name). Do not include prefixes like "Ms." or "Dr."

Example:"Jane"
last_namestring

Last name (surname). Do not include suffixes like "Jr." or "2nd".

Example:"Smith"
full_namestring

Either send the full name, or first, middle (optional), and last names, but not both. If you send a full name, we will attempt to parse it into first name, middle name(s) and last name. With no_middle_name: true, any parsed middle token is folded into the last name instead of being stored as a middle name.

Example:"Jane Mary Smith"
dobstring, = 8 characters(date_string_complete)\d{8}required

Date of birth in the form YYYYMMDD. Must be a valid date and cannot be in the future. If invalid, the API returns a 400 with a validation_error pointing to /dob.

Example:"19950401"
statestring(state_code)^[A-Z]{2}$required

The two-letter US state code for the search jurisdiction.

Example:"CA"
county_fips_codestring(county_fips_code_or_statewide)required
Example:"06075"
One of:

Use a 5-digit county FIPS code for a county-level criminal search. Use the literal statewide for a state-level criminal search covering the jurisdiction identified by state (the API accepts statewide case-insensitively and normalizes it to lowercase in stored search criteria).

string
filter_contextobject(filter_context)required

Context information used to determine which legal rules apply when filtering check results. Jurisdictions help identify applicable state and local regulations that may affect which records can be reported.

Example:
{ "candidate_jurisdiction": { "state": "CA" }, "decider_jurisdiction": { "state": "NY" } }
permissible_purposestring(permissible_purpose)required

The permissible purpose for requesting this criminal record check, as required by the Fair Credit Reporting Act (FCRA). This must be provided for all regulated instant criminal checks to ensure compliance with federal regulations.

Enum:"Court Order""Consumer Instruction""Credit Transaction""Employment""Insurance Underwriting""Benefit Eligibility""Credit Risk""Consumer Initiated""Account Review""Govt Chargecard"
Example:"Employment"
reference_idstring(reference_id)^[a-zA-Z0-9_-]{1,64}$

A reference identifier for linking related records. Limited to 64 alphanumeric characters, underscores, and hyphens.

Example:"ref-123"
addressobject(address)

Primary address for the candidate. Used during result processing for identity matching and ROSIE scoring. Prefer addresses for new integrations; when both are provided, address is treated as the primary entry.

On inline create (without profile_id), optional address or addresses[] are saved to the new profile.

addressesArray of objects, [ 1 .. 30 ] items(addresses)

Optional addresses associated with the candidate. Used during result processing for identity matching and ROSIE scoring. Index 0 is the primary address.

On inline create, addresses are saved to the new profile.

ruleset_idsArray of strings

A list of ruleset identifiers to apply. Pass a single-element array if you only have one ruleset to apply. Note: county check rulesets do not support dob_matching_level, dob_types_requiring_address_match, or source_states.

curl -i -X POST \
  'https://api.checkrtrust.com/v1/regulated/county_checks?include%5B%5D=profile' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "first_name": "Jane",
    "middle_name": "Mary",
    "last_name": "Smith",
    "dob": "19900115",
    "state": "CA",
    "county_fips_code": "06075",
    "filter_context": {
      "candidate_jurisdiction": {
        "state": "CA"
      },
      "decider_jurisdiction": {
        "state": "NY"
      }
    },
    "permissible_purpose": "Employment"
  }'

Responses

Created

Bodyapplication/json
One of:

A regulated county criminal check response.

idstring, (uuid)(uuid)

A universally unique identifier (UUID) in standard format.

Example:"2b8313e8-4efd-45a1-b578-952b8313e890"
created_atstring, (date-time)(datetime)

An ISO 8601 formatted date-time string.

Example:"2020-01-01T00:00:00Z"
completed_atdatetime (string) or null
One of:

An ISO 8601 formatted date-time string.

string (date-time)(datetime)
check_typestring(regulated_county_check_type)

The type of regulated county check.

Default:"county_criminal_regulated"
Value:"county_criminal_regulated"
statusstring(regulated_county_check_status)

The current status of the regulated county check.

  • pending — the check has been submitted and is awaiting results.
  • complete — results are available.
  • cancelled — the search was cancelled, either at your request or because it could not be completed. When a search cannot be completed, a county_check.not_available webhook is delivered.
Enum:"pending""complete""cancelled"
Example:"pending"
error_reasonstring(check_error_reason)

A machine-readable reason for a check's error status. Only present when the check has errored.

  • provider_error — the third-party data provider returned an unrecoverable error.
  • timeout — the check did not complete within the allowed time window.
  • cancelled — the check was cancelled, either at your request or because it could not be completed.
  • need_more_info — additional identity information (e.g. email or SSN) is required to view results.
Enum:"provider_error""timeout""cancelled""need_more_info"
Example:"cancelled"
reference_idstring(reference_id)^[a-zA-Z0-9_-]{1,64}$

A reference identifier for linking related records. Limited to 64 alphanumeric characters, underscores, and hyphens.

Example:"ref-123"
search_criteriaobject(regulated_county_check_search_criteria)

The search criteria used for the regulated county check.

resultsArray of objects(regulated_record)

The fully-disclosed results of the regulated county check. Empty array if no records found or if the check is still pending. A record excluded by legal rules never appears here -- see excluded_records.

excluded_recordsArray of objects(regulated_record_stripped)

Records excluded by legal rules, reduced to an identifier, classification, jurisdiction, and per-charge offense classification. Present only when the account's excluded_record_disclosure setting is stripped; omitted (or empty) otherwise, and always separate from results.

run_notesArray of strings(run_notes)

An unstructured array of human-readable notes about this particular check. May contain notes about how input was parsed or other information about results. Not intended to be parsed by computer, as these notes are not guaranteed to be in any given format.

Example:
[ "used no ruleset" ]
reviewcheck_review (object) or null
One of:

Customer accept/decline/dispute state for a regulated check.

adverse_action_enabledboolean

Present only when include[]=review is requested; omitted otherwise. Indicates whether adverse-action workflow is enabled for this product.

profile_idstring, (uuid)(profile_id)

Identifier of an existing profile containing search criteria.

Example:"2b8313e8-4efd-45a1-b578-952b8313e890"
Response
{ "profile_id": "2b8313e8-4efd-45a1-b578-952b8313e890" }

Callbacks

Regulated County Check Completion Webhook
post