Skip to content

Checks for the existence of court cases.

The request is asynchronous and is performed in two steps.

Submitting a court case search task

URL

Method: POST

  • Production: https://registry.wallet.kvell.group/reg2/pledge/sudrf

Request parameters

Name Data type Required Description
fio string Yes Full name (last, first, patronymic)
address string Yes Registration address
type string Yes Type of court case. Possible values: ADMIN - administrative; CRIMINAL - criminal; CIVIL - civil.

Request examples

{
    "fio": "Низовских Андрей Витальевич",
    "address": "658130, Алтайский край, г. Алейск, ул. Советская, д. 98",
    "type": "CRIMINAL"
}
{
    "fio": "Шеметова Лариса Анатольевна",
    "address": "658130, Алтайский край, г. Алейск, ул. Советская, д. 98",
    "type": "CIVIL"
}
{
    "fio": "Чугулов Петр Петрович",
    "address": "658130, Алтайский край, г. Алейск, ул. Советская, д. 98",
    "type": "ADMIN"
}

Request headers

Name Data type Required Description
X-Api-Key string Yes Unique identifier (UUID)

Response

Response example

{
    "id": "62ea4805-9a12-4428-9303-cb7a042319f9"
}

Response parameters

Name Data type Description
id string Request identifier for subsequently retrieving the information.

Retrieving court case information

URL

Method: GET

  • Production: https://registry.wallet.kvell.group/reg2/pledge/sudrf/{id}

Query string parameters

Name Data type Required Description
id string Yes Request identifier used to retrieve the information.

Request headers

Name Data type Required Description
X-Api-Key string Yes Unique identifier (UUID)

Response

Response example

{
    "result": {
        "logs": {
            "cases_found": "True",
            "driver_error": "False",
            "pagination_error": []
        },
        "cases": [
        {
            "metadata": {
                "judge": "Щербановская Ирина Петровна",
                "uid_2": "22RS0001-01-2025-001759-86",
                "accused": [
                    {
                        "name": "Низовских Андрей Витальевич",
                        "article": [
                            "ст.111 ч.2 п.з"
                        ]
                    }
                ],
                "id_text": "ДЕЛО № 1-7/2026 (1-167/2025;)",
                "adm_date": "28.11.2025",
                "decision_result": "Вынесен ПРИГОВОР"
            },
            "case_text": "Судебный акт #1 ..",
            "case_found": "True",
            "case_id_uid": "case_id=66629300&case_uid=d73777c0-9a72-4232-9d15-0fe29b8080dd"
        },
        {
            "metadata": {
                "judge": "Галкина Оксана Владимировна",
                "uid_2": "22RS0001-01-2016-001844-75",
                "accused": [
                    {
                        "name": "Низовских Андрей Витальевич",
                        "article": [
                            "ст.158 ч.2 п.б"
                        ]
                    }
                ],
                "id_text": "ДЕЛО № 1-124/2016",
                "adm_date": "31.05.2016",
                "decision_result": "Вынесен ПРИГОВОР"
            },
            "case_text": "",
            "case_found": "True",
            "case_id_uid": "case_id=66599877&case_uid=3a2ade17-c67d-4e82-9d78-ff21033ab1cc"
        },
        {
            "metadata": {
                "judge": "Осипенко Надежда Михайловна",
                "uid_2": "22RS0001-01-2012-001652-05",
                "accused": [
                    {
                        "name": "Низовских Андрей Витальевич",
                        "article": [
                            "ст.158 ч.2 п.б"
                        ]
                    }
                ],
                "id_text": "ДЕЛО № 1-189/2012",
                "adm_date": "27.09.2012",
                "decision_result": "Вынесен ПРИГОВОР"
            },
            "case_text": "",
            "case_found": "True",
            "case_id_uid": "case_id=66581750&case_uid=e214cee6-bb27-4490-a7ef-ce7b45edf735"
        }
        ],
        "num_cases": 3,
        "source_file": "22_https:aleysky--alt_1_1992.json"
    },
    "type": "criminal",
    "region": "22",
    "status": "done",
    "taskId": "9b52215b-a7bc-4648-b3c8-426f1ba9921e",
    "courtId": "22RS0001",
    "personName": "Низовских Андрей Витальевич"
}

Response parameters

Name Data type Description
result object The result of the request, with court case data
type string Type of court case
region string Region number
status string Task processing status
taskId string Task identifier
courtId string Court request identifier
personName string Full name (last, first, patronymic)