Documentation
Verify
OTP verification over SMS, email, and WhatsApp.
Create a verification request, deliver the OTP on the chosen channel, then confirm with the check endpoint.
POST /v1/verify/requestJSON
{
"channel": "sms",
"to": "+233241234567"
}POST /v1/verify/checkJSON
{
"requestId": "vrf_abc123",
"code": "482910"
}Use Idempotency-Key on POST /v1/verify/request for safe retries. Flow workflows can embed Verify steps directly.