Meister Bill API

The Meister Bill API allows you to integrate invoicing capabilities into your applications, build plugins, and automate workflows.

Base URL

https://api.meister-bill.com/v1

Content Type

All requests and responses use JSON:

Content-Type: application/json

Authentication

API requests require an API key passed in the Authorization header:

Authorization: Bearer {your_api_key}

See Authentication for details on obtaining and using API keys.

Rate Limits

Tier Requests/minute
Starter 60
Pro 300
Business 1000

Rate limit headers are included in all responses:

X-RateLimit-Limit: 300
X-RateLimit-Remaining: 299
X-RateLimit-Reset: 1640995200

SDKs

Official SDKs coming soon:

  • JavaScript/TypeScript
  • Python
  • PHP
  • Ruby

Quick Start

# List invoices
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.meister-bill.com/v1/invoices

# Create a customer
curl -X POST \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"Acme Corp","email":"billing@acme.com"}' \
  https://api.meister-bill.com/v1/customers

Resources

Resource Description
Invoices Create, send, and manage invoices
Customers Customer and contact management
Products Products and services catalog
Webhooks Real-time event notifications

Support

  • API Status: https://status.meister-bill.com
  • Developer Support: dev@meister-bill.com