Documentation Index
Fetch the complete documentation index at: https://docs.letmepost.dev/llms.txt
Use this file to discover all available pages before exploring further.
What it checks
images.length <= 4videos.length <= 1
Why
X’s/2/tweets endpoint accepts at most 4 image media ids on a single tweet, and at most 1 video. Going over the cap surfaces upstream as a media validation error with no clean way to map back to which item was the offender — preflight catches it locally with the count surfaced in the message.
Failure response
Remediation
- Trim the array to 4 images (or 1 video, or 1 GIF).
- Multi-tweet threads carry separate media — split the post into a reply chain via
twitter.replyToTweetIdif you need more than 4 attachments overall.
Related
twitter.media.image_video_exclusive— can’t mix images with a video on one tweet