Skip to main content
GET
/
v0
/
kyc
/
details
Get Kyc Details
curl --request GET \
  --url https://api.example.com/v0/kyc/details
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-sumvin-token
string | null
x-juno-jwt
string | null

Query Parameters

refresh
boolean
default:false

Response

KYC details retrieved successfully

Detailed KYC verification information (GDPR-compliant).

HAL-style hypermedia links for navigation.

status
string
required

Current KYC status: pending, in_progress, retry, approved, or rejected.

verified_at
integer | null

Timestamp when KYC was approved (epoch milliseconds).

rejected_at
integer | null

Timestamp when KYC was rejected (epoch milliseconds).

started_at
integer | null

Timestamp when KYC verification was started (epoch milliseconds).

personal_info
KYCPersonalInfo · object

Personal information from KYC. Only name is stored locally.

documents
KYCDocumentInfo · object[]

List of submitted documents and their verification status.

verification_complete
boolean
default:false

True if all required documents have been submitted.

verification_passed
boolean
default:false

True if verification passed all checks.

rejection
KYCRejectionInfo · object

Rejection details if KYC was rejected or needs retry.