Name Validation
The Name Validation API leverages a trained AI model to perform deep, contextual validation that goes far beyond standard regex or pattern matching. It evaluates the legitimacy of a person's name in real time, effectively filtering out structural gibberish, profanity strings, and unsupported characters to ensure high-integrity data ingestion.
Instantly verify the legitimacy of a person's name to ensure clean data at the point of capture.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
namestringRequiredExample:
The full name or name string to validate.
exampletimeoutinteger · min: 1000 · max: 10000OptionalDefault:
Request timeout in milliseconds
8000Example: 5000Responses
200
Successfully validated name
application/json
statusstringOptionalExample:
Response Object status
success400
Bad Request
application/json
401
Unauthorized
application/json
429
Too Many Requests
application/json
503
Service Unavailable
524
A Timeout Occurred
application/json
post/name/validate
POST /v2/name/validate HTTP/1.1
Host: api.clearout.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 81
{
"name": "Annna Wattson",
"settings": {
"gibberish_threshold": "high"
},
"timeout": 6000
}{
"status": "success",
"data": {
"input_name": "Annna Wattson",
"status": "invalid",
"profanity": false,
"gibberish": false,
"time_taken": 48
}
}Last updated
Was this helpful?

