Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/moonman369/go-email-verifier

This is a Go Based Email Verifier Tool
https://github.com/moonman369/go-email-verifier

api-rest email-verification-api golang gorilla-mux utility

Last synced: about 5 hours ago
JSON representation

This is a Go Based Email Verifier Tool

Awesome Lists containing this project

README

        

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