A HUNGWARU SMART TECH COMPANY · HARARE, ZW
ZIMRA FDMS CERTIFIED · VAT COMPLIANT

FiskIT

VERSION2.4.1
PLATFORMWINDOWS 10/11
FDMS STATUSLIVE
LICENSEFREE FOR REGISTERED OPERATORS
verified
fiscal
build
Itemized Downloads

Take one home

Everything you need to fiscalize invoices from your own till.

1 × FiskIT Setup
The combined installer — sets up the Watcher, and the FiskIT API Server too if you're running your own branch server. Pick what you need at install time.
FREE
Download
TOTAL DUE $0.00

* No account needed to download. Installer is signed and virus-scanned. You'll need a FiskIT company API key (or start at /register-device/) before the Watcher can sign live receipts — keep this receipt for support requests.

X
✓ Signed & Fiscalized
Authorized signature — operator confirms terms above
What's In The Bag

Built for the till, not the boardroom

Auto-fiscalize

Every invoice, stamped

QR code and fiscal metadata applied automatically the moment a document hits the queue.

Dedup by hash

No duplicate submissions

SHA-256 fingerprinting means a re-printed invoice never gets fiscalized twice.

Offline-safe

A ledger that doesn't forget

Every transaction is journaled locally first, so a dropped connection never means a lost record.

OCR fallback

Reads even the messy ones

Regex extraction first, Tesseract OCR when a document won't cooperate.

Keep This Receipt

API Reference

Base URL: api.fiskit.co.zw — all requests over HTTPS, authenticated with an X-API-Key header (your Company's key — no Bearer tokens).

POST /api/receipts/sign/

Interprets a raw receipt payload, signs it, submits it to ZIMRA's FDMS, and returns the QR verification URL. Idempotent on invoice_no — signing the same invoice twice returns the original result instead of a duplicate.

# request curl -X POST https://api.fiskit.co.zw/api/receipts/sign/ \ -H "X-API-Key: <company api key>" \ -H "Content-Type: application/json" \ -d '{ "invoice_no": "INV-2026-0417", "branch_id": 12, "customer": {"company_name": "Acme", "email": "acme@example.com"}, "total": "115.00", "total_vat": "15.00", "products": [{"description": "Widget", "code": "12345678", "quantity": 1, "amount_incl": "115.00", "vat": "15.00"}], "receipt_type": "FISCAL TAX INVOICE", "currency": "USD" }'
GET /api/receipts/{id}/

Retrieves a signed fiscal receipt by ID, including its ZIMRA signature, receipt hash, and QR verification URL.

# request curl https://api.fiskit.co.zw/api/receipts/42/ \ -H "X-API-Key: <company api key>"
GET /api/phonebook/

Cross-company directory of every business that's ever had real ZIMRA config fetched through any FiskIT company — searchable by name, TIN, VAT or phone. Deliberately not scoped to your own company's data.

# request curl "https://api.fiskit.co.zw/api/phonebook/?search=acme" \ -H "X-API-Key: <company api key>"
GET /api/branches/{id}/license_status/

Checks whether a branch's fiscal license is valid. Not license-gated itself — it's the one place a blocked integration can see why.

# request curl https://api.fiskit.co.zw/api/branches/12/license_status/ \ -H "X-API-Key: <company api key>"