> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smartcomply.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CRC Credit Score

> Retrieve an individual's FICO credit score from the CRC bureau using their BVN.

The CRC Credit Score endpoint returns an individual's FICO credit score from the CRC bureau, along with a rating, contributing factors, and loan summary.

## Endpoint

```
POST /api/onboarding/individual/credit_scores_crc/
```

## Request

### Headers

| Header           | Value               | Required |
| ---------------- | ------------------- | -------- |
| `x-access-token` | Your API secret key | Yes      |
| `Content-Type`   | `application/json`  | Yes      |

### Body Parameters

| Parameter | Type   | Required | Description                                        |
| --------- | ------ | -------- | -------------------------------------------------- |
| `bvn`     | string | Yes      | The individual's 11-digit Bank Verification Number |

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://adhere-api.smartcomply.com/api/onboarding/individual/credit_scores_crc/" \
    -H "x-access-token: YOUR_SECRET_KEY" \
    -H "Content-Type: application/json" \
    -d '{"bvn": "22244545518"}'
  ```
</CodeGroup>

## Response

### 200 OK

| Field                                      | Type   | Description                                                 |
| ------------------------------------------ | ------ | ----------------------------------------------------------- |
| `data.name`                                | string | Full name                                                   |
| `data.score.totalNoOfDelinquentFacilities` | number | Number of delinquent facilities                             |
| `data.score.hasLoans`                      | string | Whether the individual has active loans (`"YES"` or `"NO"`) |
| `data.score.ficoScore.score`               | number | Numeric FICO credit score                                   |
| `data.score.ficoScore.rating`              | string | Credit rating (e.g. `"GOOD"`, `"FAIR"`, `"POOR"`)           |
| `data.score.ficoScore.reasons`             | string | Factors influencing the score                               |
| `data.score.lastReportedDate`              | string | Most recent bureau report date                              |
| `data.score.crcReportOrderNumber`          | string | CRC report order number                                     |

```json theme={null}
{
  "status": "success",
  "data": {
    "_id": "64f600608aaf9386c646de32",
    "bvn": "22244545518",
    "name": "ADELEKE EMMANUEL AYORINDE",
    "gender": "Male",
    "dateOfBirth": "29/12/1994",
    "score": {
      "totalNoOfDelinquentFacilities": 0,
      "hasLoans": "YES",
      "ficoScore": {
        "score": 717,
        "rating": "GOOD",
        "reasons": "Applicant is young relative to other applicants scored. The length of time accounts have been established is short."
      },
      "lastReportedDate": "30-SEP-2023",
      "crcReportOrderNumber": "W-0097887747/2023"
    },
    "searchedDate": "2023-11-23T14:25:54.210Z"
  },
  "message": "Credit Scores individual CRC report details retrieved successfully"
}
```

### 400 Bad Request

```json theme={null}
{
  "status": "failed",
  "data": [],
  "message": "Missing required fields"
}
```

### 401 Unauthorized

```json theme={null}
{
  "status": "failed",
  "message": "Authentication credentials were not provided."
}
```


## OpenAPI

````yaml POST /api/onboarding/individual/credit_scores_crc/
openapi: 3.0.3
info:
  title: Adhere API
  description: >-
    Identity verification, credit checks, transaction monitoring, and loan fraud
    detection across Africa.
  version: 3.0.0
servers:
  - url: https://adhere-api.smartcomply.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Nigeria KYC
  - name: Kenya KYC
  - name: Ghana KYC
  - name: Rwanda KYC
  - name: Uganda KYC
  - name: Biometrics
  - name: Individual Credit
  - name: Business Credit
  - name: Transaction Monitoring
  - name: Transaction Screening
  - name: Transaction KYC
  - name: Loan Fraud
  - name: User Journey
paths:
  /api/onboarding/individual/credit_scores_crc/:
    post:
      tags:
        - Individual Credit
      summary: CRC Credit Score
      operationId: creditScoresCRC
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - bvn
              properties:
                bvn:
                  type: string
                  example: '22244545518'
      responses:
        '200':
          description: CRC credit score retrieved
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              data:
                type: array
                items: {}
              message:
                type: string
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              message:
                type: string
                example: Authentication credentials were not provided.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-access-token
      description: Your Adhere API secret key

````