Skip to content
English

Check format of input

GET
/chkFormat
curl --request GET \
--url https://example.com/api/v1/chkFormat
domain
string

Check format of domain name

email
string

Check format of e-mail address

Validaty information returned

Media typeapplication/json
object
domain

Error message or null if valid

string
nullable
email

Error message or null if valid

string
nullable
Examplegenerated
{
"domain": "example",
"email": "example"
}

Validation of input parameters failed

Media typeapplication/json
object
message
string
errors

List of errors encountered during validation

Array<string>
Examplegenerated
{
"message": "example",
"errors": [
"example"
]
}

An error occurred while processing the request

Media typeapplication/json
object
message

String representation of the exception

string
Examplegenerated
{
"message": "example"
}