cURL
curl --request POST \ --url https://api.vishodi.com/api/v1 \ --header 'Content-Type: application/json' \ --header 'X-API-Token: <api-key>' \ --data ' { "model": "user_verification", "email": "<string>", "firstname": "<string>", "lastname": "<string>" } '
{ "status": "<string>", "received_data": { "model": "user_verification", "email": "<string>", "firstname": "<string>", "lastname": "<string>" }, "request_count": 123, "email_verification": { "emailAddress": "<string>", "disposable": true, "username": "<string>", "domain": "<string>", "dnsCheck": "<string>", "syntexCheck": "<string>" }, "name_verification": { "firstname": { "value": "<string>", "prediction": "<string>", "confidence": 123 }, "lastname": { "value": "<string>", "prediction": "<string>", "confidence": 123 } } }
Verify user information including email and name
User information to verify
Model name to use for verification
"user_verification"
Email address to verify
First name to verify
Last name to verify
Successful verification
Show child attributes