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.

One of:

Provide first_name and last_name (without full_name).

object(name-parts)
POST
/regulated/county_checks
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 results of the regulated county check. Empty array if no records found or if the check is still pending.

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