Remove the Grok Watermark From AI Images & Video
xAI's Grok Imagine generates images and short videos inside X, and whether your export carries a watermark now depends on what you pay: since the free tier was retired in March 2026, lower subscription tiers still stamp the Grok mark on exports while the top tier can render clean. If you're on a tier that stamps it — or you generated a batch before upgrading — WatermarkRemoverAI inpaints the mark out of each frame rather than cropping it off, keeping the full composition.
Watermark status — updated August 11, 2026
Grok Imagine's free tier ended in March 2026 — generation now requires X Premium, Premium+ or SuperGrok. Whether an export carries the visible Grok mark depends on the tier: lower tiers still stamp it, while top-tier subscribers report clean output. Updated as xAI's tiers change.
How to remove the Grok watermark
Upload the Grok export
Add the image or video generated in Grok Imagine and note where the mark sits — it generally holds one position through a clip.
Brush the mark
Paint a snug mask over the Grok mark. For video the same region is cleaned across every frame; for an image it's a single pass.
Download clean
Export at the original resolution and frame rate with the marked region reconstructed.
Good to know
Whether Grok stamps your export depends on your subscription tier, and xAI adjusts tiers often — check the status box above for the current state.
Frequently Asked Questions
Why does my Grok Imagine export have a watermark?
Since free generation ended in March 2026, the mark is tier-dependent: lower X Premium tiers still stamp exports while the top tier renders clean. This tool cleans exports that already carry the mark — including ones you generated before an upgrade.
Does the Grok watermark move around like Sora's?
No — it generally holds a fixed position rather than drifting, so a snug mask on that one region is enough. Fixed-position marks give the AI stable surroundings to rebuild from, which is the easier case.
Does it work on both Grok images and videos?
Yes. A still is cleaned in a single pass; a video has the masked region reconstructed across every frame, with audio, resolution and frame rate preserved.
Will this remove invisible provenance signals?
No. This tool edits visible pixels only — any invisible watermarking or provenance metadata a generator attaches is a separate layer it does not target.
Is it okay to remove the Grok mark?
Use it on content you generated yourself. Platforms may still expect AI-generated media to be disclosed; removing a visible logo doesn't change the content's AI origin.
Related Guides
Automate it with the API
Send a file, get a job id back, poll for the clean result. Same AI engine as the web tool, in two requests.
curl -X POST https://api.watermarkremoverai.com/v1/watermark/remove-video/ \
-H "Authorization: YOUR_API_TOKEN" \
-F "files=@video.mp4" \
-F "auto_detect=true"
# => {"uuid": "..."}
# Poll for the result
curl -X POST https://api.watermarkremoverai.com/v1/watermark/results/ \
-d "uuid=..."
import requests
API = "https://api.watermarkremoverai.com/v1/watermark"
headers = {"Authorization": "YOUR_API_TOKEN"}
with open("video.mp4", "rb") as f:
job = requests.post(API + "/remove-video/",
headers=headers,
files={"files": f},
data={"auto_detect": "true"}).json()
result = requests.post(API + "/results/",
data={"uuid": job["uuid"]}).json()
print(result)
Prefer a manual mask? Send mask=@mask.png instead of auto_detect, or pass mask_x / mask_y / mask_width / mask_height (add mask_is_percentage=true for percentages). Optional dilation=5 grows the masked area.
Ready to clean it up?
Upload, mark the area, and download the clean result. No account needed to try it free.
Open the Tool