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


---

# 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://axis-docs.fuspay.finance/verify-kyc-status.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.
