Official Go SDK for the Infinihash KYT API.
Status: Alpha — API is stable; SDK wrapper is actively being built. Full docs coming soon.
go get github.com/infinihash/kyt-gopackage main
import (
"fmt"
"github.com/infinihash/kyt-go/kyt"
)
func main() {
client := kyt.New("your-api-key")
result, err := client.Screen(kyt.ScreenRequest{
Type: "wallet",
Value: "0x722122dF12D4e14e13Ac3b6895a86e84145b6967",
Chain: "ethereum",
})
if err != nil {
panic(err)
}
fmt.Println(result.RiskLevel) // critical
fmt.Println(result.Action) // block
}- Wallet and transaction screening
- SAR narrative generation
- Case management
- Webhook subscription helpers
- Context-aware async calls
Full API reference at kyt.infinihash.com/docs.
Questions? support@infinihash.com
MIT © Infinihash LLC