API

How to user our API?

To use our API is quite simple! Just make a HTTP GET request to the address https://mailtest.app/api/[domain-to-verify] replacing [domain-to-verify] with the email or domain you want to check.

    
curl --request GET \
--url https://mailtest.app/domain/ridteam.com
    

The response will come in a JSON object as in the example below:

{
  "domain": "disposable.example.com",
  "free": 0,
  "disposable": 1,
  "blacklisted": 0,
  "last_seen": "2023-07-24 18:54:00",
  "provider_url": "https://example.com",
    "mx": [
    "mx1.example.com",
    "mx2.example.com"
  ]
}