DEVELOPER DOCUMENTATION
REST API, Connector SDK, and integration guides for
the accounting platform built for DACH businesses.
PLATFORM
Full REST API with JWT authentication. Create invoices, manage customers, and automate your accounting workflow.
Build custom integrations. Connect payment providers, CRMs, and productivity tools to Monetro.
Real-time event notifications. Subscribe to invoice, payment, and customer lifecycle events.
Built for SaaS. Tenant isolation, role-based access, and API key authentication per organization.
QUICK START
# Authenticate
curl -X POST https://app.monetro.at/api/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]", "password": "***"}'
# List your customers
curl https://app.monetro.at/api/customers \
-H "Authorization: Bearer <token>"