Messenger error 613: Message tag abuse warning
Last verified against Meta for Developers - Messenger Platform error codes
Warning! You are engaging in behavior that may be considered bothersome or abusive by users. You must significantly decrease the rate at which you are sending messages using message tags to this person. Further misuse of API features may result in messaging restrictions being placed on your PageWhat error 613 means
Code 613 with subcode 2018338 wears a rate-limit code, but read the message: it is a policy warning, and an unusually explicit one. "You are engaging in behavior that may be considered bothersome or abusive by users. You must significantly decrease the rate at which you are sending messages using message tags to this person. Further misuse of API features may result in messaging restrictions being placed on your Page." Meta is telling you, per recipient, that your tagged-message volume toward that person has crossed the line, and naming the consequence if it continues.
Message tags exist to carry narrow, non-promotional exceptions across the 24-hour window, in 2026 that effectively means HUMAN_AGENT (and the customer-feedback template flow), since the update tags were retired in April. Tags are therefore the platform's most policed surface: each tagged send bypasses the user-consent structure of the window, so frequency toward a single person is treated as a proxy for abuse. Unlike the volume throttles (2534040, 4), waiting does not reset the concern; the pattern itself must change.
Take the escalation path seriously: this warning is a documented precursor to Page-level messaging restrictions, the territory of 368. The correct response is not to spread sends across the day but to ask why one person is receiving many tagged messages at all, almost always a bug (a loop re-sending a notification) or a flow misdesign (status updates that should be batched or opt-in).
What it looks like
{
"error": {
"message": "(#613) Warning! You are engaging in behavior that may be considered bothersome or abusive by users.",
"type": "OAuthException",
"code": 613,
"error_subcode": 2018338,
"fbtrace_id": "BLBz/WZt8dN"
}
}Why it happens
- Loops or retries re-sending tagged messages to the same person.
- Flows using HUMAN_AGENT as a general outside-window channel rather than for genuine human escalations.
- Chatty tagged sequences (many small updates) where one batched message belongs.
- Multiple systems independently tagging the same recipient.
- Legacy update-tag flows migrated onto the remaining tags without rethinking cadence.
How to fix Messenger error 613
- 1Stop tagged sends to the affected recipient immediately; deliver the content when the person next engages instead.
- 2Audit for duplicate-send bugs: idempotency keys on tagged messages, per-recipient tagged-send counters with hard caps.
- 3Batch: one consolidated tagged message where flows were sending several.
- 4Restrict tag usage in code to the documented use cases, human escalation within 7 days, and route everything else through opt-ins.
- 5Review overall tag volume; if this warning appears for many recipients, treat it as a Page-level fire drill before restrictions land.
How to stop it recurring
Enforce tag discipline structurally: a per-recipient budget on tagged sends, idempotency on every notification, and code review for any new use of MESSAGE_TAG. Tags are a compliance surface, not a delivery channel. The tag rules and their 2026 reductions are tabulated in the Messenger limits reference, and the enforcement ladder is described with error 368.
Official reference: Meta for Developers - Messenger Platform error codes. See all Messenger error codes or the Messenger limits and quotas.
Related codes
- 368: Temporarily blocked for policies violationsTemporarily blocked for policies violations
- 613: Calls to this API have exceeded the rate limitCalls to this API have exceeded the rate limit
- 10: Message sent outside of allowed windowThis message is sent outside of allowed window. Learn more about the new…
- 2022: Commerce messaging temporarily disabledThe ability to send commerce messages has been temporarily disabled. This is…
Error 613 - quick answers
What does Messenger error 613 mean?
Code 613 with subcode 2018338 wears a rate-limit code, but read the message: it is a policy warning, and an unusually explicit one. "You are engaging in behavior that may be considered bothersome or abusive by users. You must significantly decrease the rate at which you are sending messages using message tags to this person.
How do I fix Messenger error 613?
1. Stop tagged sends to the affected recipient immediately; deliver the content when the person next engages instead. 2. Audit for duplicate-send bugs: idempotency keys on tagged messages, per-recipient tagged-send counters with hard caps. 3. Batch: one consolidated tagged message where flows were sending several. 4. Restrict tag usage in code to the documented use cases, human escalation within 7 days, and route everything else through opt-ins. 5. Review overall tag…
Stop debugging Messenger by hand
Connect the channel through Conferbot: tokens, webhooks and retries are handled, failures show as readable status.