Learn how to authenticate with the VerifiLite API using access keys and secret keys for secure API access.
# Include API key in headers
curl -X POST 'https://api.verifilite.com/v1/verify' \
  -H "accesskey: your-access-key" \
  -H "secretkey: your-secret-key" \
  -H 'Content-Type: application/json' \
  -d '{"userId": "user-123"}'