Try it

Try it without signing up

Send a test code to see the WhatsApp delivery flow end to end. This is a simulation — nothing is sent to your phone.

+20
Requested
Delivered
Verified

No credit card required.

Authevo
Business account
Integration

Drop it into any stack

Two endpoints, raw HTTP, no SDK to install. Send a code over WhatsApp, verify what your user typed, and you're done — in whatever language your backend already speaks.

Read the docs
# 1. Send a one-time code over WhatsApp
curl -X POST https://api.authevo.dev/v1/otp/send \
  -H "Authorization: Bearer sk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "phone": "+201234567890" }'

# 2. Verify the code your user entered
curl -X POST https://api.authevo.dev/v1/otp/verify \
  -H "Authorization: Bearer sk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "phone": "+201234567890", "code": "123456" }'