Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CheckAPI Go SDK

License: MIT

Official Go SDK for CheckAPI — Ukrainian bank receipt verification API.

Send a photo of a bank receipt, get Verified: true/false in ~1 second. Supports PrivatBank, monobank, OTP Bank, A-Bank, Raiffeisen and more.

Install

go get github.com/sarmkadan/go-checkapi

Quick start

package main

import (
    "fmt"
    "log"

    checkapi "github.com/sarmkadan/go-checkapi"
)

func main() {
    client := checkapi.NewClient("YOUR_API_KEY")

    result, err := client.Verify("receipt.jpg", 2450.00, "7731")
    if err != nil {
        log.Fatal(err)
    }

    fmt.Println(result.Verified)       // true
    fmt.Println(result.DetectedAmount) // 2450
    fmt.Println(result.Reason)         // "confirmed"
}

Pricing

Plan Price Checks Per check
Start $30 1,000 $0.03
Business $200 10,000 $0.02
Custom from $500 negotiable individual

No subscription. Pay with USDT or bank transfer.

Links

License

MIT — see LICENSE.

About

Official Go SDK for CheckAPI — Ukrainian bank receipt verification API

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages