# 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="/files/fzGov9ATWcOEjFjkzyGB" 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>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kycdocv2.faceki.com/api-integration/verification-apis/kyc-summary-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
