Skip to content

Infinihash/kyt-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

kyt-go

Official Go SDK for the Infinihash KYT API.

Status: Alpha — API is stable; SDK wrapper is actively being built. Full docs coming soon.

Installation

go get github.com/infinihash/kyt-go

Quick Start

package 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
}

Features

  • Wallet and transaction screening
  • SAR narrative generation
  • Case management
  • Webhook subscription helpers
  • Context-aware async calls

Documentation

Full API reference at kyt.infinihash.com/docs.

Support

Questions? support@infinihash.com

License

MIT © Infinihash LLC

About

Official Go SDK for the Infinihash KYT API — screen wallets, detect illicit flows, generate SAR reports

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors