Location checks

The location of a candidate can be crucial when determining an individual's identity, but also for various other purposes. Vouched identifies the user's location using three data points and allows you to compare them.

  • Full address extracted from the ID
  • IP Location
  • Geo-location

📣

Access

All three features are part of our Advance and Premier packages. For more information please contact [email protected]



Full address extracted from the ID

The feature extracts the full address from any ID card or driver's license and checks it against address services to verify authenticity.

Enable the feature by adding enablePhysicalAddress:true to your JS plugin verification object.

*For any other integration methods please contact our support team

Results can be found under:

"result": {
  "idAddress": {
                      "streetNumber": "253",
                      "street": "Clinton",
                      "city": "Teaneck",
                      "state": "NY",
                      "country": "US",
                      "postalCode": "34232",
                      "postalCodeSuffix": "3463"
                  }
              }



IP Location

Extract users' IP address mapped to a real-world geographic location of an Internet-connected computing or a mobile device. If VPN is being used we point it out in the response.

Enable the feature by adding enableIPAddress:true to your JS plugin verification object.

*For any other integration methods please contact our support team

Results can be found under:

"result": {
  "ipAddress": {
                      "city": "New York",
                      "country": "US",
                      "state": "NY",
                      "postalCode": "10010",
                      "location": {
                          "latitude": 30.6279,
                          "longitude": -43.8866
                      }
              }



Geo-location

Extract candidates' location and accuracy radius based on information about cell towers and WiFi nodes that the mobile client can detect. The feature requires users' to allow permissions via the browser, If they accept, the browser will use the best available functionality on the device to access this location data.

Enable the feature by adding enableIPAddress:true to your JS plugin verification object.

*For any other integration methods please contact our support team

Results can be found under:

"result": {
  "geoLocation: {
                      longtitude: 38.8951,
                      latitude: -77.0364,
                      error: null
                  }
            }