# Headers and Body Request by KYC Validator

## Header

<table><thead><tr><th>Type</th><th width="374">Value</th></tr></thead><tbody><tr><td>Content-Type</td><td>application/json</td></tr></tbody></table>

## Body

Example Request:

*raw (application/json)*

{% tabs %}
{% tab title="Example Request:" %}

```
{
  "key": "<API_Key>",
  "value": "qwerty",
  "lookupType": "VAT_VALIDATE",
  "lookupId": <LOOKUPID_VALUE>
}
```

{% endtab %}

{% tab title="Response Body" %}
{

&#x20; "requestId": "6cdcdb3f-aa95-4982-b891-73e79b0790f3",

&#x20; "id": 1492, <--\<RESPONCE\_ID\_VALUE>

&#x20; "status": "progress",

&#x20; "message": "Results will be available soon, Use API to retrieve Data"

### }

{% endtab %}

{% tab title="CURL" %}

```
curl -X 'POST' \
  'https://irbis.espysys.com/api/developer/kyc' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "key": "<API_Key>",
  "value": "qwerty",
  "lookupType": "VAT_VALIDATE",
  "lookupId": <LOOKUPID_VALUE>
}'
```

{% endtab %}
{% endtabs %}
