EMail Provider API

This is a Rest API to check host names if they are an email provider or not. API URL: https://apiemailprovider.yonetic.im

Create Your API Password

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.

Create JWT Access Token

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}}"
}

Check A Hostname

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"
}