Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/moonman369/go-email-verifier
- Owner: moonman369
- Created: 2023-07-18T18:31:07.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-07-21T17:40:26.000Z (over 1 year ago)
- Last Synced: 2023-07-21T23:05:29.248Z (over 1 year ago)
- Topics: api-rest, email-verification-api, golang, gorilla-mux, utility
- Language: Go
- Homepage: https://go-email-verifier.cleverapps.io/
- Size: 6.63 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
```