Get Verification Results

Retrieves the final outcome of a completed verification, indicating whether the contact details were successfully confirmed by the recipient.

🚧 Check status before retrieving results

Results are only available once the verification status has transitioned to a terminal state (Verified, NotVerified, or Expired). We recommend calling the Get Verification Status endpoint first and only calling this endpoint once the session has completed.


Response

FieldTypeDescription
verifyIdstringThe unique ID of the verification session.
statusstringThe final status. Possible values: Verified, NotVerified, Expired.
verifiedbooleantrue if the recipient successfully confirmed their contact details, otherwise false.
completedAtdatetimeThe UTC datetime at which the verification was completed.
expiresAtdatetimeThe UTC datetime at which the verification link expired or will expire.
phoneNumberstringThe phone number submitted for verification, as provided in the original request.
personNamestringThe recipient name as provided in the original request.
languagestringThe language used for the verification message.
callbackUrlstringThe callback URL provided in the original request. Returns null if not provided.
senderNamestringThe SMS sender name used for the verification message.
metadatastringThe metadata string provided in the original request. Returns null if not provided.
{
    "verifyId": "xLoat3F385vvFRbgI2usOeuXKXQoB8kv",
    "status": "Verified",
    "verified": true,
    "completedAt": "2026-03-15T18:47:10Z",
    "expiresAt": "2026-03-15T18:44:21Z",
    "phoneNumber": "972544735557",
    "personName": "John Doe",
    "language": "en",
    "callbackUrl": "https://yourplatform.com/verify-callback",
    "senderName": "SMS Sender",
    "metadata": "MY-REFERENCE_098"
}
Language
Response
Click Try It! to start a request and see the response here!