Search⌘ K

Verify API

Explore how to implement user verification in your web application using Twilio's Verify API. Learn to create a verification service, send verification tokens via SMS, and validate user input to confirm identity securely and efficiently.

The Twilio’s Verify API makes it simple to add user verification to our web application. It supports codes sent via SMS, voice, and email.

This lesson will discuss the following three steps required to implement a basic verification:

  1. Create a verification service.
  2. Send a verification token.
  3. Check the verification token.

Create a verification service

A verification service is the set of common ...