This is a Rest API to check host names if they are an email provider or not. API URL: https://apiemailprovider.yonetic.im
Visit API Settings page and create your API Password. If you already have one and don't remember it you may reset and get a new one.
With your API password you may access to login endpoint "{{Url}}/auth/Login" with your login credentials.
This endpoint returns the JWT token to use the API.
Sample Request:
{
"UserName": "{{your_user_name}}",
"Password": "{{your_api_password}}"
}
Use your API bearer token to query the host name with "{{Url}}/EmailProvider/CheckEmailProvider" method. Token must be added as an authorization header with bearer keyword prefix.
Sample Request:
{
"host": "somehost.com"
}