We have detected that your language is not Spanish. You may visit the English version here.

SMS VERIFY

VERIFY CLIENTS IN A QUICK AND EASY WAY

Protect your software form unauthorized access, avoid fraud and verify the identity of the user by sending them a code. One-Time PIN sent to their phone. Integrate our verification system in two steps. (2FA).

INTRODUCTION

IMPROVE SECURITY

False users and/or bots have become one of the most frustrating aspects for companies that develop apps, software, etc. Tracking down these false users and/or bots in time is complicated but necessary.

Our Verify system has been designed so that authenticity can be defined before accessing software or undertaking any steps.

HOW IT WORKS

CONNECT AND THAT’S IT!

Integrating the Verify service is very simple, even more so for the final user. Three easy steps: insert number, receive the code on your phone and verify it.

  1. 1

    Insert mobile number

    Your clients indicate their mobile number.

  2. 2

    Text Message

    A unique authentication code is created and an SMS is sent to the indicated number.

  3. 3

    Verification

    The user inserts the code and verifies it with their mobile.

FEATURES

A SECURE WAY

The following characteristics display how useful our Verify solution is in protecting users against abuse.

REST API: VERIFY

INTEGRATE OUR API WITH YOUR APP OR SOFTWARE.

Want to verify a user with your Web or Software? All you have to do is make a few calls to our HTTP API. One call to send an SMS and another to confirm the code. Take a look at our documentation for more information.

See Docs
require __DIR__  . '/../vendor/autoload.php';

$instasentClient = new Instasent\VerifyClient("my-token");
$response = $instasentClient->requestVerify("Test", "+34647000000", "Your code is %token%", 6, 300);

echo $response["response_code"];
echo $response["response_body"];

              
var instasent = require('instasent')('my-token');

instasent.request_verify.create('Test', '+34647000000', 'Your code is %token%', 6, 300, null, function (err, response) {
    if (err) {
        return console.log(err.errors);
    }
    console.log(response);
});

              
import com.instasent.InstasentClient;
import java.io.IOException;
import java.util.Map;

public class main {
    public static void main(String[] args) throws IOException {
        InstasentClient instasentClient = new InstasentClient("my-token", true);
        Map response = instasentClient.requestVerify( "Test", "+34647000000", "Your code is %token%", 6, 300);
        System.out.println(response);
    }
}

              
require 'instasent'

client = Instasent::Client.new('my-token')

response = client.request_verify('Test', '+34647000000', 'Your code is %token%', 6, 300)

puts response['response_code']
puts response['response_body']

              
import instasent

client = instasent.Client('my-token')
response = client.request_verify('Test', '+34647000000', 'Your code is %token%', 6, 300)

print response['response_code']
print response['response_body']

              
SMS VERIFY PRICING

ONLY PAY FOR WHAT YOU NEED