> For the complete documentation index, see [llms.txt](https://api-docs.espysys.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.espysys.com/kyc-validator.md).

# KYC Validator

**Endpoint:** <mark style="color:yellow;">POST</mark> <https://irbis.espysys.com/api/developer/kyc>

Below is a sample request to perform a lookup using the API:

```
{
  "key": "YOUR_API_KEY",
  "value": "SEARCH_VALUE",
  "lookupType": "LOOKUP_TYPE",
  "lookupId": "LOOKUPID_VALUE"
}
```

1. Replace YOUR\_API\_KEY in the "key" field with your actual API Key.
2. For the "value" field, insert with one of the aforementioned search values.
3. `LOOKUP_TYPE` can be one of the following values:
   1. VAT\_VALIDATE
   2. IBAN
   3. COMPANY\_ENRICH

values are of the following type for these searches:

VAT\_VALIDATE - value should be the VAT number of the company you're validating.

Example:&#x20;

```
SE556656688001
```

IBAN - value should be an iban number for validation.

Example:&#x20;

```
BE71096123456769
```

COMPANY\_ENRICH - value is the domain of the company you're investigating.

Example:&#x20;

```
airbnb.com
```

The "lookupId" must be set to what is shown in table API lookups types at Developer page or at API lookup types page


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://api-docs.espysys.com/kyc-validator.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.
