# Credit Check

**Canadian Credit Report**

This Equifax Credit Report includes information on an individual's credit activity and current credit situation. Reports may include tradelines, bankruptcies, public records, collection information, and a credit score. A credit report request for employment or tenancy purposes will appear as an inquiry on the individual’s credit file. Note that this type of inquiry will not impact the individual’s credit score.

**US Equifax Report**

A USA Credit Report includes information on an individual's credit activity and overall financial health. Reports may include tradelines, bankruptcies, public record and collection information, and a \*credit score. A credit report request will appear as an inquiry on the individual’s credit file but will not impact the individual's credit score.

*\*Note: Credit scores do not appear on reports related to employment.*

### Availability

This check is available in **Canada** :flag\_ca: and the **US** :flag\_us:

This check is available for a [**quickscreen**](https://docs.certn.co/api/faq#what-is-a-quickscreen-and-how-do-i-use-it) :white\_check\_mark:

{% tabs %}
{% tab title="Canada" %}

| Industry            | Availability        | Endpoints                                                                                                                                                                                                                                                                                                                       |
| ------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Human Resources     | Available on demand | <ul><li><a href="../../../api-reference/hr#screen-an-applicant-instantly">Quickscreen</a> <span data-gb-custom-inline data-tag="emoji" data-code="2705">✅</span></li><li><a href="../../../api-reference/hr#invite-an-applicant">Invite</a> <span data-gb-custom-inline data-tag="emoji" data-code="1f4e9">📩</span></li></ul>  |
| Property Management | Available on demand | <ul><li><a href="../../../api-reference/pm#screen-an-applicant-instantly">Quickscreen</a> <span data-gb-custom-inline data-tag="emoji" data-code="2705">✅</span> </li><li><a href="../../../api-reference/pm#invite-an-applicant">Invite</a> <span data-gb-custom-inline data-tag="emoji" data-code="1f4e9">📩</span></li></ul> |
| {% endtab %}        |                     |                                                                                                                                                                                                                                                                                                                                 |

{% tab title="US" %}

| Industry            | Availability        | Endpoints                                                                                                                                                                                                                                                                                                                      |
| ------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Human Resources     | Available on demand | <ul><li><a href="../../../api-reference/hr#screen-an-applicant-instantly">Quickscreen</a> <span data-gb-custom-inline data-tag="emoji" data-code="2705">✅</span></li><li><a href="../../../api-reference/hr#invite-an-applicant">Invite</a> <span data-gb-custom-inline data-tag="emoji" data-code="1f4e9">📩</span></li></ul> |
| Property Management | Available on demand | <ul><li><a href="../../../api-reference/pm#screen-an-applicant-instantly">Quickscreen</a> <span data-gb-custom-inline data-tag="emoji" data-code="2705">✅</span></li><li><a href="../../../api-reference/pm#invite-an-applicant">Invite</a> <span data-gb-custom-inline data-tag="emoji" data-code="1f4e9">📩</span></li></ul> |
| {% endtab %}        |                     |                                                                                                                                                                                                                                                                                                                                |
| {% endtabs %}       |                     |                                                                                                                                                                                                                                                                                                                                |

{% hint style="info" %}
This check isn't available by default. Contact our [support team](https://docs.certn.co/api/contact) to enable it on your account.
{% endhint %}

### Parameters

#### Request flag

Include this flag in the body of your request:

[`request_equifax`](https://docs.certn.co/api/api-reference/resources/application-parameters/request-flags)&#x20;

#### Invite parameters

To invite an applicant to complete a screen, include this parameter in the body of your request:

* `email`

See all available [application-parameters](https://docs.certn.co/api/api-reference/resources/application-parameters "mention")

#### Quickscreen parameters

To complete a quickscreen, include these parameters in the body of your request:

* [`information`](https://docs.certn.co/api/api-reference/resources/application-parameters#information)&#x20;
  * `first_name`&#x20;
  * `last_name`
  * `date_of_birth`
  * [`addresses`](https://docs.certn.co/api/api-reference/resources/application-parameters#address)  (min 1 - **Canada** or **US**)
  * `sin_ssn` (see note)
* [`position_or_property_location`](https://docs.certn.co/api/api-reference/resources/application-parameters#specialization)&#x20;

{% hint style="warning" %}
Make sure to obtain the [proof of consent](https://docs.certn.co/api/guides/use-the-api/consent) from your applicant **before** running the quickscreen.
{% endhint %}

{% hint style="info" %}
When running a quickscreen, we strongly recommend you include your applicant's Social Insurance Number or Social Security Number (`sin_ssn`). This will help ensure that your request is completed without delays.&#x20;
{% endhint %}

#### Example request <a href="#example" id="example"></a>

{% tabs %}
{% tab title="Canada" %}

```json
{
    "request_equifax": true,
    "information": {
        "first_name": "Andrew",
        "last_name": "McLeod",
        "date_of_birth": "1970-06-28",
        "addresses": [{
                "address": "1006 Fort Street",
                "city": "Victoria",
                "province_state": "BC",
                "country": "CA",
                "postal_code": "V8V4F4",
                "current": true
            }
        ],
        "sin_ssn": "1234567890"
    },
    "position_or_property_location": {
        "address": "2680 Blanshard St Unit 3",
        "city": "Victoria",
        "province_state": "BC",
        "country": "CA",
        "postal_code": "V8T5E1",
        "location_type": "Position Location"
    }
}
```

{% endtab %}

{% tab title="US" %}

```json
{
    "request_equifax": true,
    "information": {
        "first_name": "Patricia",
        "last_name": "Eerat",
        "date_of_birth": "1970-06-28",
        "addresses": [{
                "address": "3601 West Belleview Avenue",
                "city": "Littleton",
                "county": "Arapahoe",
                "province_state": "CO",
                "country": "US",
                "postal_code": "80123",
                "current": true
            }
        ],
        "sin_ssn": "1234567890"
    },
    "position_or_property_location": {
        "address": "71 Post",
        "city": "Irvine",
        "county": "Orange",
        "province_state": "CA",
        "country": "US",
        "postal_code": "92618",
        "location_type": "Position Location"
    }
}
```

{% endtab %}
{% endtabs %}

### Report

Report field: [`equifax_result`](https://docs.certn.co/api/api-reference/resources/report-field-mappings#credit-check)&#x20;

Find errors in `credit_file_metadatas`, under `equifax_result`.

### Test data <a href="#static-sandbox-server-responses" id="static-sandbox-server-responses"></a>

{% hint style="info" %}
Before running your first check, contact our [support team](https://docs.certn.co/api/contact) to have them set up your demo account.
{% endhint %}

Send Credit Check requests with the following sets of data on our [demo environment](https://docs.certn.co/api/start/demo-account) to retrieve our pre-filled reports. You can add a placeholder SIN/SSN and DOB.

**Clear**

<table><thead><tr><th>First name</th><th>Last name</th><th>Personal information</th><th width="200">Address</th><th>Country</th></tr></thead><tbody><tr><td>Andrew</td><td>McLeod</td><td>DOB: 1984-03-04<br>SIN: 321321321</td><td>1006 Fort Street Victoria BC CA V8V4F4</td><td>Canada</td></tr><tr><td>Patricia</td><td>Eerat</td><td>DOB: 1984-03-04<br>SIN: 321321321</td><td><p>3601 West Belleview Avenue </p><p>Littleton </p><p>Arapahoe CO US 80123</p></td><td>US</td></tr></tbody></table>

**Review**

| First name | Last name | Personal information                     | Address                                                                        | Country |
| ---------- | --------- | ---------------------------------------- | ------------------------------------------------------------------------------ | ------- |
| Will       | Nettke    | <p>DOB: 2000-01-01<br>SIN: 123123123</p> | 1006 Fort Street Victoria BC CA V8V4F4                                         | Canada  |
| Will       | Nettke    | <p>DOB: 2000-01-01<br>SIN: 123123123</p> | <p>3601 West Belleview Avenue </p><p>Littleton </p><p>Arapahoe CO US 80123</p> | US      |
