# Audit Verifications

Verify includes an API that can integrate with your application to audit verifications. We provide an API where you can check and verify that the session has been indeed verified on RealEyes.

# API Endpoints

The API endpoints are segmented by region as follows:

# Request

The request method is POST /api/v1/redirect/validate-signature

An API reference for this functionality is also available via the API Reference page.

# Authorization Header

  • X-Api-Key: Account API-Key

The API Key is available in the Developers Portal.

# Request Body

Full query string with all the parameters:

{
  "queryString": "?FULLQUERYSTRING"
}

# Response

The possible response values are Valid and Invalid.

This API response signifies the validity of the re-signature, indicating that the corresponding verificationStatus (or any other QueryString parameters) was not manipulated by the user.


# Regional Service Warning


# Example


# Use Cases

# Prevent Fraud

Validate signatures on your server to ensure users haven't manipulated the verification results.

# Compliance

Maintain an audit trail of all verifications for compliance purposes.

# Quality Assurance

Verify that all incoming verification results are legitimate and haven't been tampered with.


# Next Steps