# Verify KYC Status

<mark style="color:green;">`GET`</mark> `https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/VerifyUserKyc`

#### Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | "Bearer ${partner\_secret\_key}" |
| x-partner-id<mark style="color:red;">\*</mark>  | String | "pxxxxxx"                        |

#### Query Params

| Name      | Type   | Description                                       |
| --------- | ------ | ------------------------------------------------- |
| reference | string | This is an identifier for your user from your end |

{% hint style="success" %}
Initiated Data is what was received via API Call while Verified Data is what the user eventually submitted.
{% endhint %}

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

<pre class="language-json"><code class="lang-json"><strong>//(when the user has not completed KYC)
</strong><strong>{
</strong>"status": "started", //"pending", "complete"
"meta data": { }
} 

OR

//(when the user has completed KYC)
{
    "success": true,
    "message": "VerifyUserKyc",
    "data": {
        "status": "completed",
        "meta_data": {
            "initiated_name": "",
            "initiated_email": "",
            "initiated_phone": "",
            "verified_name": "",
            "verified_email": "",
            "verified_phone": ""
        }
    }
}
</code></pre>

{% endtab %}

{% tab title="Second Tab" %}

{% endtab %}
{% endtabs %}

<table><thead><tr><th width="133">Key</th><th>Type</th><th>Description</th><th>Value</th></tr></thead><tbody><tr><td>status</td><td>String</td><td>This is the current state of a customer's identity verification process</td><td>"started", "pending", "complete"</td></tr><tr><td>meta_data</td><td>Object</td><td>This contains information about the KYC user. (Their initiated information and eventually verified data)</td><td>empty or "Initiated-name":"", "Initiated email":"", "Initiated phone":"", "Verified name":"", "Verified email":"", "Verified phone":""</td></tr></tbody></table>
