Skip to main content

What it checks

countGraphemes(text) <= 2200.

Why 2200

Meta’s Instagram Graph API documents a 2200-character cap on the caption field of a media container. The cap is in user-perceived characters; we count graphemes to match. Empty captions are allowed — see instagram.media.required, which is the constraint that does apply when there’s no media.

Failure response

Remediation

Trim the caption. Use grapheme-aware splitting — see bluesky.text.max_graphemes for an example.