WhatsApp OTP API Empower your applications with seamless user verification using VerifyWay's WhatsApp OTP API, ensuring a reliable and convenient authentication process.
Follow these steps to get started with VerifyWay API:
- Register: Register here
- Top-up: Top-up your account
- Get API Key: Retrieve your API Key
- Done!
Use the following cURL command to send a request to the VerifyWay API:
curl -X POST https://api.verifyway.com/api/v1/ \
-H 'Authorization: Bearer API_KEY' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"recipient":"31612345678",
"type":"otp",
"code":"123456"
}'
When making requests to the VerifyWay API, the responses are formatted as follows:
{
"status": "success",
"message_id": "RANDOM_ID",
"recipient": "+31612345678",
"code": "123456"
}
{
"error": "detail of the error"
}