Skip to content

moonman369/Go-Email-Verifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a Go Based Email Verifier Tool

API Documentation

1. VERIFY DOMAIN

  • Base URL: https://go-email-verifier.cleverapps.io/
  • Endpoint: /verify
  • Method: POST
  • Example Request Body:
    {
      "path": "doma.in",
    }
    
  • Example Successful Response:
    200 OK
    {
      "domain": "doma.in",
      "hasMX": true,
      "hasSPF": true,
      "spfRecord": "spf_record",
      "hasDMARC": true,
      "dmarcRecord": "dmarc_record"
    }