Skip to main content

Result of checking an individual's profile

Check/{id} method

To find out the result of checking an individual's profile, use this method.

Add the ID received in response to the ID card details identification request to the request address. You will receive the verification status in the response.

Endpoint

  • For testing GET https://kyc-stage.bank131.ru/api/v2.0/check/{id}
  • For live testing GET https://kyc.bank131.ru/api/v2.0/check/{id}

Request

The request body is empty.

Request example
curl -X GET \
https://kyc.bank131.ru/api/v2.0/check/7 \
-H 'content-type: application/json' \
-H 'X-PARTNER-PROJECT: your_project_name' \

Response

Response parameters

NameMandatoryTypeDescription
status+stringIdentification status. Possible options: ok, pending, error
data-objectResponse details object
  id-numberCheck request ID
  description-stringRequest status description
error-objectError details object
  code+stringError code
  description+stringError description
Response examples
{
"status": "ok",
"data": {
"id": "7", // check request ID
"description": "valid"
}
}