## Problem The Under the Hood monthly JSON only reports aggregate counts for visibility labels. It does not include the post IDs or URLs that received those labels. Example from a July 2026 report: - postCount: 982 - NSFW_HIGH_RECALL: 16 posts (1.62%) - account label NsfwHighRecall: 16 / 31 days There is no list of which 16 posts were labeled, so the account owner cannot review or appeal the specific posts. ## Why this matters The tool is meant to show which labels affect visibility. Counts alone are not enough to: - inspect the flagged media - appeal a wrong NSFW_HIGH_RECALL label - change future content to avoid the account-level NsfwHighRecall tag ## Request Please add labeled post identifiers to the JSON, for example: "postLabels": [ { "label": "NSFW_HIGH_RECALL", "posts": "16", "postIds": ["123...", "456..."] } ] Even tweet IDs without extra metadata would make the report usable. Code area: under-the-hood/ Tool: https://x.com/i/under_the_hood