Integration · Available
Any POS or ERP, via REST.
If it can make an HTTPS request, it can fiscalize. Post a normalized invoice, get back a request id, then poll or receive a signed webhook with the fiscal result.
Fiscalize in one request
Authenticate with an API key, post the canonical invoice, and you immediately get a pending request id plus an interim non-fiscal slip.
POST /v1/fiscalize
curl -X POST https://api.tax-bridge.cloud/v1/fiscalize \ -H "Authorization: Bearer tbk_live_…" \ -H "Content-Type: application/json" \ -d '{ "shop_id": "shp_123", "external_ref": "SO-1042", "invoice_type": "NORMAL", "transaction_type": "SALE", "items": [{ "name": "Kava 500g", "quantity": 1, "unit_price_incl": 1725.00, "total_incl": 1725.00, "tax_labels": ["D"] }], "payments": [{ "type": "CASH", "amount": 1725.00 }] }'