Go Quick Start
Use Nuget to install the Enzoic package in your project:
go get github.com/enzoic/enzoic-go-client
We’ve made calling the API dead simple. This sample code snippet shows you examples of calling the four primary APIs:
package main
import (
"fmt"
"github.com/enzoic/enzoic-go-client"
"os"
"strconv"
"time"
)
func main() {
enzoicClient, err := enzoic.NewClient(os.Getenv("PP_API_KEY"), os.Getenv("PP_API_SECRET"))
if err != nil {
panic(err)
}
/////////////////////// Passwords API Example ///////////////////////
// Check whether a password has been compromised
passwordCompromised, err := enzoicClient.CheckPassword("password-to-test")
if err != nil {
panic(err)
}
if passwordCompromised {
fmt.Println("Password is compromised")
} else {
fmt.Println("Password is not compromised")
}
////////////////////// Credentials API Example //////////////////////
// Check whether a specific set of credentials are compromised
credsCompromised, err := enzoicClient.CheckCredentials("[email protected]", "password-to-test")
if err != nil {
panic(err)
}
if credsCompromised {
fmt.Println("Credentials are compromised")
} else {
fmt.Println("Credentials are not compromised")
}
/////////////////////// Exposures API Example ///////////////////////
// Get all exposures for the given user
exposuresForUser, err := enzoicClient.GetExposuresForUser("[email protected]")
if err != nil {
panic(err)
}
fmt.Println(len(exposuresForUser), "exposures found for [email protected]")
// now get the full details for the first exposure returned in the list
exposureDetails, err := enzoicClient.GetExposureDetails(exposuresForUser[0])
if err != nil {
panic(err)
}
fmt.Println("First exposure for [email protected] was", exposureDetails.Title)
}
That should get you started. Check out the GitHub project page for more details. Make sure you also review the Using the Enzoic API page.
Last modified 2mo ago