Skip to main content

DEVELOPER DOCUMENTATION

Build with Monetro

REST API, Connector SDK, and integration guides for
the accounting platform built for DACH businesses.

Get StartedAPI Reference

PLATFORM

Everything you need to integrate

REST API

Full REST API with JWT authentication. Create invoices, manage customers, and automate your accounting workflow.

Connector SDK

Build custom integrations. Connect payment providers, CRMs, and productivity tools to Monetro.

Webhooks

Real-time event notifications. Subscribe to invoice, payment, and customer lifecycle events.

Multi-Tenant

Built for SaaS. Tenant isolation, role-based access, and API key authentication per organization.

QUICK START

Start in 30 seconds

# 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>"