v1

latestOpenAPI 3.1.0UNLICENSED2026-07-2613101.1 MB
Onboarding

Retrieve verified KYC profile for an application

Returns verified KYC profile document data for an approved personal application.

get/applications/{applicationId}/kyc-profile

Path parameters

applicationIdstring uuid required

The ID of the application to work with.

Example:e9293471-5eb3-4dbc-916c-dbaf9e2deefd

Response

OK

applicationIdstring uuid required

The ID of the application to work with.

verifiedAtstring date-time nullable required

Timestamp at which the identity was verified (ISO 8601 datetime).

Example response

{
  "applicationId": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
  "kycProfile": [
    {
      "idType": "PASSPORT",
      "idNumber": "123456789",
      "expiryDate": "2030-06-15",
      "issueDate": "2020-06-15",
      "issuerCountry": "GB"
    }
  ],
  "verifiedAt": "2026-04-01T10:30:00.000Z"
}