Skip to content

QIWI Wallet API makes it easy to automate getting info on your account’s state in QIWI Wallet service and making financial operatio

Notifications You must be signed in to change notification settings

neqin/qiwi-personal-api

Repository files navigation

QIWI personal API

QIWI Wallet API makes it easy to automate getting info on your account’s state in QIWI Wallet service and making financial operations.

Installation

go get github.com/neqin/qiwi-personal-api

Examples

Init and get identification info

package main

import (
	"log"
	qiwi "github.com/neqin/qiwi-personal-api"
)

func main() {
    q := qiwi.NewQiwiPersonalApi("5fa740ea1daf00665aa312...")
    res, err := q.GetIdentification("79264810000")
    if err != nil {
	    log.Println(err)
    }
    log.Println(res)
}

list API method

  • Person’s Profile [GetPersonProfile]
  • Payments History [GetPaymentsHistory] (simple)
  • Statistics on payments [GetPaymentsStats]
  • Checkout
  • QIWI Wallet Balances [GetWalletBalance]
  • Commission rates [GetCommissions]
  • Peer-to-Peer QIWI Wallet Transfer [TransferP2P]
  • Wireless operator check
  • Card transfer
  • Card system check
  • Wire transfer

About

QIWI Wallet API makes it easy to automate getting info on your account’s state in QIWI Wallet service and making financial operatio

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages