Skip to main content

fakturownia-client

PyPI CI Python License: MIT

Unofficial Python client for the Fakturownia (InvoiceOcean) REST API. Covers invoices (list/search, create/update, status changes, PDF download), clients (CRUD) and products.

This is a community-maintained project. It is not affiliated with, endorsed by, or sponsored by Fakturownia sp. z o.o. or InvoiceOcean. "Fakturownia" and "InvoiceOcean" are trademarks of their respective owner, used here only to indicate compatibility.

Security note: token in header, never in URL

The official Fakturownia docs mostly show ?api_token=... in URLs, which leaks tokens into server and proxy logs. This client sends the token only in the Authorization: Bearer header. Header auth was verified against the live API for every endpoint used here (see scripts/verify_auth.py — a no-side-effects check you can run against your own account).

Install

uv add fakturownia-client   # or: pip install fakturownia-client

Usage

from fakturownia_client import FakturowniaClient, InvoiceCreate, InvoicePositionCreate

with FakturowniaClient("mycompany", api_token="...") as fk:
    # list & search
    invoices = fk.list_invoices(period="this_month", include_positions=True)
    for inv in fk.iter_invoices(period="this_year"):  # auto-pagination
        print(inv.number, inv.price_gross)

    # create
    created = fk.create_invoice(
        InvoiceCreate(
            buyer_name="ACME Sp. z o.o.",
            buyer_tax_no="1234567890",
            positions=[InvoicePositionCreate(name="Usługa", total_price_gross=123.00, tax=23)],
        )
    )

    # status & PDF
    fk.change_invoice_status(created.id, "paid")
    pdf = fk.download_invoice_pdf(created.id)

    # e-mail the invoice to the buyer (or explicit recipients, max 5)
    fk.send_invoice_by_email(created.id, email_to="client@acme.pl", email_pdf=True)

    # payments (banking): record money against invoices
    fk.create_payment({"name": "Transfer 001", "price": 123.00, "invoice_id": created.id})
    payments = fk.list_payments(include_invoices=True)

    # clients / products
    clients = fk.list_clients(tax_no="1234567890")
    products = fk.list_products()

Async

AsyncFakturowniaClient mirrors the sync API 1:1 on httpx.AsyncClient:

from fakturownia_client import AsyncFakturowniaClient

async with AsyncFakturowniaClient("mycompany", api_token="...") as fk:
    invoices = await fk.list_invoices(period="this_month")
    async for inv in fk.iter_invoices(period="this_year"):
        print(inv.number)

domain accepts "mycompany", "mycompany.fakturownia.pl" or a full URL.

Compatible platforms (InvoiceOcean, VosFactures, BitFactura)

Fakturownia runs the same API under several regional brands — this client works with all of them; pass your full account domain:

Platform Region Example domain
fakturownia.pl Poland mycompany or mycompany.fakturownia.pl
invoiceocean.com Global / USA mycompany.invoiceocean.com
invoiceocean.de Germany mycompany.invoiceocean.de
vosfactures.fr France mycompany.vosfactures.fr
bitfactura.es Spain mycompany.bitfactura.es

This repository also publishes a companion alias package, invoiceocean-client, which re-exports this API as InvoiceOceanClient / AsyncInvoiceOceanClient (equally unofficial). Errors raise typed exceptions: AuthenticationError, NotFoundError, ValidationError, RateLimitError, ServerError (all subclass FakturowniaError).

Caveat: delete_product() calls an endpoint absent from the official API docs — it may not work on all accounts.

Development

uv sync --extra dev
uv run ruff check . && uv run mypy && uv run pytest -m "not live"

# optional read-only smoke test against the real API:
FAKTUROWNIA_DOMAIN=mycompany FAKTUROWNIA_API_TOKEN=... uv run pytest -m live

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fakturownia_client-0.2.1.tar.gz (22.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fakturownia_client-0.2.1-py3-none-any.whl (19.1 kB view details)

Uploaded Python 3

File details

Details for the file fakturownia_client-0.2.1.tar.gz.

File metadata

  • Download URL: fakturownia_client-0.2.1.tar.gz
  • Upload date:
  • Size: 22.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fakturownia_client-0.2.1.tar.gz
Algorithm Hash digest
SHA256 da7b7a66e51903bfc2ad3e5857f631899922f9c7380bdb42daa8d7f69d72fd67
MD5 5c5dd6e3d46d91adf81f016749cc20a2
BLAKE2b-256 904e9682b015bb475a70fc707ba9cc0888c8177a42ae0c62946562cc54cb52e5

See more details on using hashes here.

File details

Details for the file fakturownia_client-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fakturownia_client-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a017f5aa09ab523d9e8b78efd7210f0d62c76261615cf12fe3b82406c78fe59f
MD5 84a117d1fbd5c64de9a96b1200180e69
BLAKE2b-256 50b24ab58ccd523e8241703638606560cb4423e77f20f4d0b534d6723d7652a5

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.1 This release

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page