/phishtank

PhishTank Client made with Go

Primary LanguageGoMIT LicenseMIT

phishtank

CircleCI codecov Go Report Card

package main

import (
	"fmt"

	"github.com/yagihash/phishtank"
)

func main() {
	c := phishtank.New("YOUR API KEY")
	body, _ := c.CheckURL("https://example.com")
	fmt.Printf("%v", body.Results.InDatabase)
}

Playground