Verification Status

Retrieve the processing status and results of a submitted KYC verification.

Endpoint

GET
/v1/identity/kyc/status/:id

Status Meanings

PENDING

The request is currently queued or connecting to the government registry database.

APPROVED

All verification criteria met, facial matching (if provided) passed, and registry code confirmed.

REJECTED

The details do not match registry records, or biometric face validation failed confidence thresholds.

Example Request & Response

cURL Request

Bash
curl -X GET "https://api.sendexa.co/v1/identity/kyc/status/KYC-b4f285a0-90ba-4871-8b17-d17be652671b" \
-H "Authorization: Basic YOUR_DASHBOARD_TOKEN"

Response Payload

JSON
{
"success": true,
"requestId": "REQ-17812981",
"data": {
"verificationId": "KYC-b4f285a0-90ba-4871-8b17-d17be652671b",
"status": "APPROVED",
"checkedAt": "2026-06-30T10:20:00Z"
}
}