# 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** 🇨🇦 and the **US** 🇺🇸

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

| Industry             | Availability        | Endpoints                                                   |
|---------------------|--------------------|------------------------------------------------------------|
| Human Resources      | Available on demand | - [Quickscreen](https://docs.certn.co/api/api-reference/hr#screen-an-applicant-instantly)✅  
|                     |                    | - [Invite](https://docs.certn.co/api/api-reference/hr#invite-an-applicant)📩  
| Property Management   | Available on demand | - [Quickscreen](https://docs.certn.co/api/api-reference/pm#screen-an-applicant-instantly)✅  
|                     |                    | - [Invite](https://docs.certn.co/api/api-reference/pm#invite-an-applicant)📩

This check isn't available by default. Contact our [support team](https://docs.certn.co/api/contact) to enable it on your account.

### 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)

#### 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)

#### 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)
  - `first_name`
  - `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)

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.

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.

#### Example request

```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"
    }
}
```

```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"
    }
}
```

### Report

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

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

### Test data

Before running your first check, contact our [support team](https://docs.certn.co/api/contact) to have them set up your demo account.

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.

| First Name | Last Name | DOB        | SIN         | Address                      | Country |
|------------|-----------|------------|-------------|------------------------------|---------|
| Andrew     | McLeod    | 1984-03-04 | 321321321   | 1006 Fort Street, Victoria   | Canada  |
| Patricia   | Eerat     | 1984-03-04 | 321321321   | 3601 West Belleview Avenue    | US      |

| First Name | Last Name | DOB        | SIN         | Address                      | Country |
|------------|-----------|------------|-------------|------------------------------|---------|
| Will       | Nettke    | 2000-01-01 | 123123123   | 1006 Fort Street, Victoria   | Canada  |
| Will       | Nettke    | 2000-01-01 | 123123123   | 3601 West Belleview Avenue   | US      |

**Last updated 2 years ago**
