Go integration for ZeroBounce service.
go get github.com/riquellopes/zerobounce-go-api
First you will need an api token. Can you create an account at here and get your token.
package main
import (
"fmt"
"os"
. "github.com/riquellopes/zerobounce-go-api/zerobounce"
)
func main() {
zero := ZeroBounce{Apikey: os.Getenv("API_KEY_ZERO")}
fmt.Println(zero.Validate("contato@henriquelopes.com.br"))
fmt.Println(zero.ValidateWithip("contato@henriquelopes.com.br"))
fmt.Println(zero.GetCredits())
}