# KYC Summary API

Description: The KYC Summary List API allows clients to retrieve a list of KYC summaries. This list provides an overview of the completed KYC process for each status, including the status of the total verification and any relevant details, such as invalid, declined, and accepted verifications.

### Base URL

```
sdk.faceki.com
```

### Summary KYC List End Point API

```
https://sdk.faceki.com/kycverify/api/kycverify/kyc-verify-summary
```

{% hint style="info" %}
Method: GET

Authorization: Bearer Token
{% endhint %}

<figure><img src="https://3621714085-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQdiwjdAaMBpDtolO59Ll%2Fuploads%2F7TqaUBVOAX1kDhmmMH5n%2FScreenshot%202023-04-27%20at%203.38.32%20PM.png?alt=media&#x26;token=1b95d3e6-02ec-4c21-a7a2-9f414b32bb3d" alt=""><figcaption></figcaption></figure>

<mark style="color:blue;">`GET`</mark> `https://sdk.faceki.com/kycverify/api/kycverify/kyc-verify-summary`

#### Headers

| Name                                             | Type   | Description      |
| ------------------------------------------------ | ------ | ---------------- |
| Content-Type:<mark style="color:red;">\*</mark>  | String | application/json |
| Authorization:<mark style="color:red;">\*</mark> | String | Bearer \[token]  |

{% tabs %}
{% tab title="200: OK " %}

```javascript
    "responseCode": 0,
    "data": [
        {
            "status": "ACCEPTED",
            "total": 20,
            "selfieLinks": [
                "imageLink"
            ]
        },
        {
            "status": "DECLINED",
            "total": 5,
            "selfieLinks": [
                "imageLink"
            ]
        },
        {
            "status": "TIMEOUT",
            "total": 0,
            "selfieLinks": []
        },
        {
            "status": "INVALID",
            "total": 0,
            "selfieLinks": []
        },
        {
            "status": "TOTAL",
            "total": 25,
            "selfieLinks": [
                "imageLink"
            ]
        }
    ]

```

{% endtab %}

{% tab title="400: Bad Request " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="401: Unauthorized " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="403: Forbidden " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="404: Not Found " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="500: Internal Server Error " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

<br>
