Springverify

PayCaptain

Make background verification a part of your large volume hiring by integrating SpringVerify with PayCaptain. Fast and fair hiring, and onboarding at any scale.

Brands you trust, trust us

Make the most of SpringVerify X

PayCaptain

Already a customer?

Interested?

Easy to use SpringVerify portal 

Initiate verification, get quick updates, detailed candidate reports, and manage payments, all on the same portal.

Smart HR to automate redundant tasks

PayCaptain

helps you create a great experience, build more diverse teams, save time and resources and use data to improve your hiring process.

Automated Sync

No more hopping around multiple dashboards to update employee information. Just update it on

PayCaptain

and the data will automatically sync with SpringVerify.

Make the most of SpringVerify X

PayCaptain

Already a customer?

Interested?

<script>curl --location --request POST 
'https://api.us.springverify.com/employee/invite' 
--header 'Content-Type: application/json' 
--header 'Authorization: Bearer JWT_TOKEN' --data-raw '{
    "email_list": [
        "venunath2@gmail.com"
    ],
    "employee_details": [
        {
            "email": "venunath2@gmail.com",
            "first_name": "abcd",
            "last_name": "xyc",
            "middle_name": "zxcz",
            "phone": "21321313",
            "birthdate": "12-12-2012"
        }
    ],
    "package": "bronze",
    "addOns": {
        "employment": 0,
        "education": 0,
        "license": 0,
        "driving_license": 0,
        "civil_court": 0,
        "all_county_criminal_search": false,
        "county_criminal_search": 0,
        "MVR": false
    }
}'
</script>
<script>// FETCH

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Bearer JWT_TOKEN");

var raw = JSON.stringify({"email_list":["venunath2@gmail.com"],"employee_details":[{"email":"venunath2@gmail.com",
"first_name":"abcd","last_name":"xyc","middle_name":"zxcz","phone":"21321313","birthdate":"12-12-2012"}],"package":"bronze",
"addOns":{"employment":0,"education":0,"license":0,"driving_license":0,"civil_court":0,"all_county_criminal_search":false,
"county_criminal_search":0,"MVR":false}});

var requestOptions = {
  method: 'POST',
  headers: myHeaders,
  body: raw,
  redirect: 'follow'
};

fetch("https://api.us.springverify.com/employee/invite", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));

// REQUEST

var request = require('request');
var options = {
  'method': 'POST',
  'url': 'https://api.us.springverify.com/employee/invite',
  'headers': {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer JWT_TOKEN' 
  },
  body: JSON.stringify({"email_list":["venunath2@gmail.com"],"employee_details":[{"email":"venunath2@gmail.com","first_name":"abcd",
  "last_name":"xyc","middle_name":"zxcz","phone":"21321313","birthdate":"12-12-2012"}],"package":"bronze","addOns":{"employment":0,
  "education":0,"license":0,"driving_license":0,"civil_court":0,"all_county_criminal_search":false,"county_criminal_search":0,"MVR":false}})
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});
</script>
<script><?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.us.springverify.com/employee/invite');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig(array(
  'follow_redirects' => TRUE
));
$request->setHeader(array(
  'Content-Type' => 'application/json',
  'Authorization' => 'Bearer JWT_TOKEN'
));
$request->setBody('{
    "email_list": [
        "venunath2@gmail.com"
    ],
    
"employee_details": [
        {
            "email": "venunath2@gmail.com",
            
"first_name": "abcd",
            "last_name": "xyc",
            "middle_name": "zxcz",
            
"phone": "21321313",
            "birthdate": "12-12-2012"
        }
    ],
    "package": "bronze",
    
"addOns": {
        "employment": 0,
        "education": 0,
        "license": 0,
        
"driving_license": 0,
        "civil_court": 0,
        "all_county_criminal_search": false,
        
"county_criminal_search": 0,
        "MVR": false
    }
}');
try {
  $response = $request->send();
  if ($response->getStatus() == 200) {
    echo $response->getBody();
  }
  else {
    echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
    $response->getReasonPhrase();
  }
}
catch(HTTP_Request2_Exception $e) {
  echo 'Error: ' . $e->getMessage();
}
</script>
<script>import requests

url = "https://api.us.springverify.com/employee/invite"

payload="{
    "email_list": [
        "venunath2@gmail.com"
    ],
    
"employee_details": [
        {
            "email": "venunath2@gmail.com",
            
"first_name": "abcd",
            "last_name": "xyc",
            "middle_name": "zxcz",
            
"phone": "21321313",
            "birthdate": "12-12-2012"
        }
    ],
    
"package": "bronze",
    "addOns": {
        "employment": 0,
        "education": 0,
        
"license": 0,
        "driving_license": 0,
        "civil_court": 0,
        
"all_county_criminal_search": false,
        "county_criminal_search": 0,
        "MVR": false
    }
}"
headers = {
  'Content-Type': 'application/json',
  'Authorization': 'Bearer JWT_TOKEN'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
</script>
<script>require "uri"
require "net/http"

url = URI("https://api.us.springverify.com/employee/invite")

https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["Authorization"] = "Bearer JWT_TOKEN"
request.body = "{
    "email_list": [
        
  "venunath2@gmail.com"
    ],
    
  "employee_details": [
        {
            "email": "venunath2@gmail.com",
            
  "first_name": "abcd",
            "last_name": "xyc",
            
  "middle_name": "zxcz",
            "phone": "21321313",
           
  "birthdate": "12-12-2012"
        }
    ],
    "package": "bronze",
    
  "addOns": {
        "employment": 0,
        "education": 0,
        
  "license": 0,
        "driving_license": 0,
        "civil_court": 0,
        
  "all_county_criminal_search": false,
        "county_criminal_search": 0,
        
  "MVR": false
    }
}"

response = https.request(request)
puts response.read_body
</script>
API Documentation

Powerful and flexible API

Our powerful API gives you an unmatched verification experience. Meaning, you can start building on your existing HRIS and ATS platforms effortlessly. Plus, Blockchain and Machine Learning make your background checks faster, easier, and more accurate.

Designed with custom-built solutions to ensure safe and secure hiring

Create a meaningful experience for everyone

It’s important for candidates to have a fair, informative and positive experience. But it’s also important for recruiters to be empowered with the right information and for hiring managers to be engaged in the process. With

PayCaptain

you can create a great hiring experience for everyone involved.

Fully Automate Background Verification

From collecting candidate details/documents, following up in case of delays, verifying the background and sharing the final report, SpringVerify takes care of all your candidate verification needs end-to-end with little/no intervention from your end.

Designed with custom-built solutions to ensure safe and secure hiring
Designed with custom-built solutions to ensure safe and secure hiring

Keep all your employee data in one place

Sync SpringVerify and

PayCaptain

once and never worry about updating employee data. Get the latest information about your employees synced in real-time.

Help your teams to adapt, evolve, and scale by working more effectively

Connect all your people together in one place and gain powerful insights. Automate and pay employees on time and stay compliant. Continue to hire and onboard great talent seamlessly. Create a culture of high-performance teams and see your business scale.

Designed with custom-built solutions to ensure safe and secure hiring

Make the most of SpringVerify X

PayCaptain

Already a customer?

Interested?

Everything you need to build your
preferred verification funnel

Make timely and informed decisions while hiring with SpringVerify's suite of services

Better productivity with workflow automation

Save time, automate repetitive tasks and eliminate manual errors. Manage high-volume verifications, track progress, and hire with confidence using SpringVerify.

Integrates with your existing HR systems

SpringVerify plugs with your existing ATS and HRIS tools easily. You can rest assured that you don’t have to dedicate time and effort to get started.

World’s first instant KYC on Whatsapp

Make instant verifications a reality with SpringVerify on Whatsapp. Save time, solidify trust and hire on the go.

Plus, your security is our priority

We secure all your data with end-to-end encryptions using advanced security controls and complete information governance. Rightly so, we are certified by PCI and ISO ISO27001:2013.

Compliance Ready & Best in the Industry

We take security seriously at SpringVerify. SpringVerify is SOC 2 Type II, ISO 27701 and ISO 27001 certified.

Don't take our word.
See why customers love us.

quotes

SpringVerify is our go-to app for all our background checks. I'm in love with its flexibility, time-bound closures, and a support team that is always ready to answer our queries 24x7.

company logo

Rupasi M

Datarynx Pvt. Ltd.
arrow
arrows

Make the most of SpringVerify X

PayCaptain

Already a customer?

Interested?

Made in Webflow