Skip to main content

Plan comparison

MsgFlash focuses on deliverability, campaigns, and transactional notifications (webhooks, API). WhatsApp statuses are no longer part of the product offering.
FreeProMAX
Monthly price€0€19€39
Instances1520
Messages + statuses / month50050,000150,000
API requests / month500150,000500,000
API keys1510
Webhook endpoints31550
Contact groups1050Unlimited
Campaignsyesyesyes
Webhooksyesyesyes
Number lookupsyesyesyes
Voice notesyesyesyes
Teams (owner)2 teams, 4 seats each4 teams, 8 seats each
Prices are in EUR only. The Starter plan has been retired. New paid subscriptions are Pro or MAX only. Checkout via the dashboard accepts pro or max.

Quota rules

  • Messages and statuses share the same monthly outbound quota: effectiveOutboundUsage = messagesCount + statusesCount
  • The monthly API quota is separate from the real-time rate limit
  • Scheduled messages re-check quota at send time
  • features.statuses is false on all plans — POST /api/v1/statuses returns 403 STATUSES_NOT_AVAILABLE_ON_PLAN

Track your usage

curl https://srv.msgflash.com/api/v1/billing/usage \
  -H "x-api-key: msgf_live_your_api_key_here"
Example:
{
  "data": {
    "plan": { "code": "pro", "name": "Pro" },
    "limits": {
      "maxInstances": 5,
      "maxApiKeys": 5,
      "maxWebhookEndpoints": 15,
      "monthlyOutboundQuota": 50000,
      "monthlyApiRequestQuota": 150000
    },
    "features": {
      "campaigns": true,
      "statuses": false,
      "voiceNotes": true,
      "webhooks": true,
      "numberLookups": true
    },
    "usage": {
      "messagesCount": 1240,
      "statusesCount": 0,
      "effectiveOutboundUsage": 1240,
      "apiRequestsCount": 4500
    }
  }
}