Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.19 KB

README.md

File metadata and controls

35 lines (27 loc) · 1.19 KB

Build Status Coverage Status Go Report Card

Zerobounce Go Api

Go integration for ZeroBounce service.

Installation

go get github.com/riquellopes/zerobounce-go-api

Usage

First you will need an api token. Can you create an account at here and get your token.

Quick start

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())
}