Recognizing Self-Employed Income Statements (KND Form)
Recognizes self-employed income statements (KND form) using OCR. Extracts passport data, INN, monthly income, and total tax amount from an uploaded PDF file.
URL
Method: POST
- Production:
https://registry.wallet.kvell.group/reg2/client/document/recognition
Request parameters
| Name | Data type | Required | Description |
|---|---|---|---|
file |
binary | Yes | PDF file of the self-employed income statement (KND form) |
The request is sent as multipart/form-data with a file field.
Request headers
| Name | Data type | Required | Description |
|---|---|---|---|
X-Api-Key |
string | Yes | Unique identifier (UUID) |
Response
Response example
{
"passport": { "series": "1234", "number": "123456" },
"client": {
"lastName": "Иванов",
"firstName": "Иван",
"middleName": "Иванович",
"inn": "123456789012",
"fullName": "Иванов Иван Иванович"
},
"income": { "january": "50000", "february": "55000" },
"totalIncome": "12000.0",
"totalTax": "1000.0",
"number": "12345678"
}
Response parameters
| Name | Data type | Description |
|---|---|---|
passport |
object | Passport data (series, number) |
client |
object | Client information (full name, INN) |
income |
object | Income for the year |
totalIncome |
string | Total income amount |
totalTax |
string | Total tax amount |
number |
string | Statement number |