AI Security

Does Claude Watermark Its Text? AI Text Watermarking (Claude, ChatGPT & SynthID), Explained

Short answer: yes — as of August 2, 2026, Anthropic weaves an imperceptible watermark into text generated by newer Claude models, worldwide, to meet the EU AI Act's transparency code. Google's Gemini already does this with SynthID; OpenAI built a watermarker for ChatGPT but hasn't shipped it. Here's what a text watermark actually is, how it survives copy-paste but not paraphrasing, and why it is not the thing Turnitin uses to catch you.

Gurram Poorna Prudhvi

Lead AI Engineer

Intermediate
Aug 14, 2026
10 min read
HOW AI TEXT WATERMARKING WORKS1 · MODEL GENERATESat each token it picks from a distributionTheagentthenrunstoolsinasandboxwatermark softly favors a secret "green" subsetmeaning unchanged · reads normallyKirchenbauer green-list · SynthID tournament sampling2 · SIGNAL WOVEN INimperceptible · in the words themselvesstatistical fingerprintnot visible · not metadata you can striptravels with copy · pastefiles also get signed C2PA provenanceEU AI Act Art. 50(2) transparency3 · DETECTORcounts "green" tokens · runs a stat testlikely AIp < 0.01needs the matching key/detectorTurnitin / GPTZero do NOT read these marksFRAGILE:paraphrase · translate · heavy rewrite · mix into other textsignal fades → undetectablea watermark proves "this is AI" when present; absence never proves "this is human"WHO WATERMARKS TEXT TODAYGoogle · Gemini✓ SynthID liveopen-sourced · text+image+audio+videoAnthropic · Claude✓ live Aug 2026imperceptible text mark · C2PA filesOpenAI · ChatGPT~ built, unreleased~99.9% (WSJ) · DALL·E uses C2PAMeta · Llama✗ no text markAudioSeal ships for audio onlyaiengineerinsights.com

1. The Short Answer

On August 2, 2026 — the day the EU AI Act's transparency code took effect — Anthropic began embedding a machine-readable, imperceptible watermark into text generated by Claude models launched on or after that date, and committed to backfilling older models during a transition period. In Anthropic's own words, it "weaves an imperceptible watermark directly into the text itself. You won't see it, and it doesn't change the meaning." The marking applies across the Claude Platform (API), Claude, Claude Code, Claude Cowork, and Claude Tag — and, notably, worldwide, not just in the EU.

So Claude joins Google, whose Gemini has watermarked text with SynthID since 2024. OpenAI is the outlier: it built a text watermarker reported at ~99.9% accuracy but has kept it on the shelf. The rest of this piece is the engineer's version — what the mark is, how it works, and its hard limits. The single most important limit up front: a watermark can prove text is AI-generated when the signal is present, but its absence never proves text is human.

2. What "Text Watermarking" Actually Means

There are three different things people lump under "AI watermark," and they behave nothing alike:

  • A statistical text watermark — a hidden bias in which words the model chooses. It lives in the text itself, so it survives copy-paste and reformatting. This is what Claude and SynthID use.
  • A visible label — a "Generated by AI" disclosure or UI badge. Trivially removed; only as good as the honesty of whoever pastes the text.
  • File provenance metadata (C2PA) — a cryptographically signed manifest attached to a file (image, PDF). Robust and verifiable, but stripped the moment you copy the content out of the file. Claude attaches C2PA to supported files like .svg, .png, and .jpg.

The interesting one — and the source of all the confusion — is the statistical text watermark, because it's invisible, it's not metadata you can strip, and yet it's surprisingly easy to destroy by accident. To see why, you have to look at how a model actually emits a token.

3. How It Works Under the Hood

At every step, an LLM produces a probability distribution over its whole vocabulary and samples the next token from it. Usually many tokens are "good enough" — dozens of near-equivalent ways to continue a sentence. A watermark hides a signal in that freedom of choice.

The seminal method, Kirchenbauer et al.'s "A Watermark for Large Language Models" (2023), uses a secret key to split the vocabulary at each step into a pseudo-random "green list" and "red list," then softly boosts the green tokens' probabilities. Over a paragraph, watermarked text ends up with statistically too many green tokens to be chance. A detector that knows the key recounts them and runs a significance test — flagging AI generation with a p-value, no access to the model needed. Google DeepMind's SynthID-Text productionized a more refined version called tournament sampling, published in Nature in October 2024 and deployed across Gemini; the code is open-source.

The elegance is that reading stays normal — the text means the same thing and reads the same way — while the distribution of choices carries a fingerprint. The fragility is baked into the same fact: rewrite the choices, and you rewrite the fingerprint out of existence.

4. Who Watermarks Text — and Who Doesn't

The landscape as of August 2026. Text watermarking specifically — not image/audio, which several labs ship more widely:

Lab (model)Text watermarkDetails
Google (Gemini)✓ ShippedSynthID-Text is live in Gemini and open-sourced. Also covers images, audio, and video.
Anthropic (Claude)✓ Shipped (new)Imperceptible text watermark since Aug 2, 2026, across API, Claude, Claude Code, Cowork, Tag — worldwide. Files get C2PA metadata.
OpenAI (ChatGPT)~ Built, unreleasedA ~99.9%-accurate text watermarker exists internally but is withheld over bypass and fairness concerns. DALL·E images carry C2PA metadata.
Meta (Llama)✗ No text markShips AudioSeal for audio; text watermarking (TextSeal) is research, not wired into Llama outputs.

OpenAI's reasoning for holding back is worth knowing, because it's the whole policy debate in miniature: internal surveys reportedly found watermarking could stigmatize AI use for non-native English speakers, and that a large share of users would simply switch tools. Detection that's easy to evade but hard on honest users is a bad trade — which is exactly the tension the EU AI Act is now forcing labs to resolve in public.

5. What Claude's Watermark Does (and Doesn't) Cover

Two mechanisms, two jobs. For text, Claude embeds the imperceptible statistical watermark that travels with copy-paste. For files it generates (like .svg/.png/.jpg), it attaches signed C2PA provenance metadata — the same open standard OpenAI uses on DALL·E images. Coverage spans the API and every Claude surface, "wherever Claude is offered, worldwide," including when Claude runs via AWS, Google Cloud, or Microsoft Foundry.

For engineers, the practical read: output from Claude Code and the API is in scope. If you ship Claude-generated text or assets into a product, that content may now carry a detectable mark. Anthropic says the watermark "will travel with the text when it's copied and pasted elsewhere, and may persist through some editing," while conceding it can be lost if content is "heavily edited, paraphrased, translated, or mixed into other writing." A public detection tool isn't live yet — Anthropic says it "will share details on detection mechanisms in forthcoming technical documentation." This is the same execution-and-provenance surface we flagged when OpenAI's models escaped a sandbox and attacked Hugging Face: knowing exactly what your agent emits, and how it's tracked, is now part of the job.

6. Can You Detect or Remove It?

Detecting a watermark requires the matching detector and key from the lab that made it — you can't eyeball it, and a generic "AI detector" isn't reading it (more on that below). Removing it, on the other hand, is often accidental. Here's the honest robustness table:

What you do to the textEffect on the signalResult
Copy and paste as-isMark survives — it's in the word choices, not metadataStill detectable
Fix a few typos / light editsMark usually persistsLikely detectable
Paraphrase / reword heavilyStatistical signal degrades fastOften undetectable
Translate to another languageToken distribution is rewrittenUndetectable
Mix AI + human textSignal diluted below the test thresholdOften undetectable

This isn't a vendor weakness — it's a proven property of the method. Sadasivan et al. (2023), "Can AI-Generated Text Be Reliably Detected?", showed a recursive-paraphrase attack driving watermark detection from ~99.8% down to under 10% with minimal quality loss. That's why the framing matters: watermarks are good for provenance at scale (a platform checking its own output) and useless as an anti-cheating dragnet(anyone motivated can strip them).

7. The Turnitin Myth

The most common misconception: that Turnitin or GPTZero "read the AI watermark." They don't.Those tools do not have Anthropic's, Google's, or OpenAI's secret keys, so they can't check a SynthID or Claude watermark at all. Instead they run their own classifiers over surface statistics — perplexity, burstiness, phrasing patterns — and output a probability guess. That's a fundamentally different, and much noisier, signal: it produces false positives on human writing and is defeated by the same paraphrasing that defeats real watermarks.

So there are effectively two parallel worlds: lab watermarks (accurate but only checkable by the lab, and easy to strip) and third-party detectors (checkable by anyone but statistically unreliable). Neither is the confident "AI or not" oracle people imagine.

8. Why This Is Happening Now: The EU AI Act

Claude's watermark didn't appear because it suddenly became useful — it appeared because of Article 50(2) of the EU AI Act, whose transparency code took effect August 2, 2026. It requires providers of generative systems to mark AI-generated or edited content in a machine-readable way that other systems can identify. Anthropic chose to implement it globally rather than geofence the EU — simpler to build one pipeline than two, and it aligns with a broader industry move toward content provenance (C2PA / Content Credentials) that Adobe, Microsoft, Google, and OpenAI have all signed onto for media.

Expect the same from the other labs on the same clock. The regulation doesn't require the watermark to be unbreakable — only present and machine-readable — which tells you how policymakers are thinking about it: a provenance signal for the honest majority, not a forensic weapon against the determined few.

9. Frequently Asked Questions

Does Claude watermark its text?

Yes. Since August 2, 2026, newer Claude models embed an imperceptible statistical watermark in generated text, across the API and all Claude surfaces, worldwide, to meet the EU AI Act's transparency code. Files also receive signed C2PA provenance metadata.

Does ChatGPT watermark text?

Not as of this writing. OpenAI reportedly built a text watermarking tool around 99.9% accurate but has not released it, citing concerns about evasion and unfair impact on non-native English speakers. OpenAI does attach C2PA metadata to DALL·E images.

What is Google SynthID?

SynthID is Google DeepMind's watermarking system. Its text variant, SynthID-Text, embeds the statistical signal via "tournament sampling," is live in Gemini, and was open-sourced in 2024 (published in Nature). SynthID also watermarks Google's AI-generated images, audio, and video. Like all statistical text watermarks, it survives copy-paste but degrades under heavy paraphrasing.

How can I check if text has an AI watermark (a ChatGPT or Claude watermark detector)?

You generally can't on your own. Reading a statistical watermark requires the matching detector and secret key from the lab that produced it — Anthropic says its public detection tooling is "forthcoming," and Google's SynthID detector is limited-access. Third-party "AI detectors" like GPTZero and Turnitin do not read these watermarks; they run their own statistical classifiers, which are a separate and much less reliable signal.

How do you remove an AI text watermark (in Word, Google Docs, or anywhere)?

Heavy paraphrasing, translating to another language, or mixing the text substantially with your own writing all degrade the statistical signal below detectability; copy-paste and light edits do not, and the "in Word / Google Docs" framing makes no difference because the mark is in the word choices, not file formatting. Note that "removability" is precisely why watermarks can't be relied on as proof that content is human-written.

Do ChatGPT or Claude watermark removers actually work?

Mostly no. Most "watermark remover" tools and GitHub projects only strip file metadata and hidden characters — not the statistical text mark — and some paid "humanizers" are just paraphrasers. We reviewed and ranked these tools, and the AI detectors, in a separate deep dive on AI detectors vs. "humanizers". Also note: under the EU AI Act, marketing a tool to circumvent AI content marks is itself in scope for penalties.

Can Turnitin see Claude or SynthID watermarks?

No. Turnitin and GPTZero don't have the labs' detection keys; they use their own statistical classifiers, which are a separate and noisier signal — prone to false positives and beaten by paraphrasing.

Is Claude Code output watermarked?

Anthropic lists Claude Code among the covered surfaces. Text output is in scope for the watermark; where Claude generates supported file types, those carry C2PA metadata. Anthropic's technical documentation is the source of truth for exactly which outputs are marked as it rolls out.

10. Sources

Watermarking policies and rollouts are moving fast under the EU AI Act. Facts here were cross-checked across Anthropic's own documentation and multiple independent outlets, but check each lab's current technical docs before relying on specifics.

Found this useful? Share it.

Share:

Related Articles