</> Entwickler-API

Mehr erreichen mit der
Rephrasy API

Nutzen Sie unsere hochmoderne API zur Erkennung und Humanisierung von KI-Inhalten.

Ab $0,10 pro 1.000 Wörter.

const res = await fetch("https://v2-humanizer.rephrasy.ai/api/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <your-api-key>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    text: "AI-generated text here.",
    model: "v3",
    words: true
  })
});

const data = await res.json();
// => { output: "Humanized text...", costs: { total: 1.5 } }
200 OKREST API v1

KI-freundliche Integration

Füge den Rephrasy-API-Kontext in dein KI-Tool ein und lass es die Integration mit dir bauen.

/rephrasy.ai/llms.txt
POST /api/v2-humanizer.rephrasy.ai

Text Humanizer API

Erkenne und humanisiere KI-generierten Text im großen Stil — schreibe ihn so um, dass er natürlich klingt und AI-Detektoren besteht. Eine einfache, schnelle, zuverlässige JSON-API.

Ab $0,10 / 1.000 WörterPauschal oder wortbasiert

Authentication

Authorization: Bearer <your-api-key>

Alle Anfragen und Antworten sind JSON.

Credits

Zwei Abrechnungsmodi. Pauschal: 1 Credit pro Aufruf. Wortbasiert (words: true): 0,1 Credit flat + 0,1 Credit pro 100 Wörter. Mit costs: true siehst du die genauen Kosten in der Antwort.

const res = await fetch("https://v2-humanizer.rephrasy.ai/api/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    text: "AI-generated text here.",
    model: "v3",
    words: true
  })
});

const data = await res.json();
// => { output: "Humanized text...", new_flesch_score: 68.8 }
200 OKText API v1

Parameter

FeldTypErforderlichBeschreibung
textstringErforderlichDer zu humanisierende KI-Text (max. 12.000 Zeichen bei reinem Text).
modelstringErforderlichZu verwendendes Modell — v3, Undetectable Model v2, Undetectable Model oder SEO Model; oder eine Writing-Style-ID. Jedes Modell zielt auf andere Detektoren.
stylestringOptionalOptionaler Stil für v3 — creative, journalistic oder professional. Standard ist das normale Verhalten von v3.
wordsbooleanOptionalWortbasierte Preise aktivieren (Standard false).
costsbooleanOptionalKosteninformationen in der Antwort zurückgeben (Standard false).
languagestringOptionalAusgabesprache, z. B. English, German, French. Wird automatisch erkannt, wenn weggelassen.

Gibt output plus new_flesch_score zurück (Lesbarkeit 0–100 — höher ist leichter lesbar). 200 OK bei Erfolg; 401 ungültiger API-Key; 422 ungültige Eingabe.

NEWinput_format

Strukturierte Eingabe (HTML / Markdown)

Füge das optionale Feld input_format zu POST /api/ hinzu, um ein ganzes Dokument statt reinem Text zu senden — nur der sichtbare Text wird humanisiert, die Struktur wird drumherum wieder aufgebaut.

FeldTypStandardBeschreibung
input_formatstring"text""text", "html" oder "markdown". Bei html/markdown wird nur der sichtbare Text humanisiert und die Dokumentstruktur wird drumherum wieder aufgebaut.

So funktioniert's

  1. Analysiert das Dokument und extrahiert nur den menschenlesbaren Text.
  2. Humanisiert diesen Text mit dem gewählten Modell.
  3. Baut das Dokument wieder auf — Tags, Attribute, Code und Links kommen unverändert zurück.

Funktioniert mit jedem Modell, auch dem SEO-Modell.

Nie verändert

HTML-Tag-Struktur, script-, style-, code- und pre-Blöcke, Link-hrefs, Markdown-Code-Fences, Inline-Code und Link-URLs.

curl -X POST https://v2-humanizer.rephrasy.ai/api/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "ft_clean-v3",
    "input_format": "html",
    "words": true,
    "text": "<article><h1>The Future of Remote Work</h1><p>It is crucial to leverage modern tools.</p><pre><code>keep --this</code></pre></article>"
  }'

# => {
#   "output": "<article><h1>What lies ahead for remote work</h1><p>You really want to make the most of modern tools.</p><pre><code>keep --this</code></pre></article>",
#   "new_flesch_score": 71.2
# }
# The <h1> and <p> text is rewritten; the <code> block is preserved exactly.

Limits & Preise

  • HTML-/Markdown-Eingabe ist auf 200.000 Zeichen begrenzt (reiner Text bleibt bei 12.000).
  • Strukturierte Eingabe kostet das 2,5-Fache der normalen Gebühr — sowohl bei Pauschal- als auch bei wortbasierter Abrechnung.
  • Wortbasierte Abrechnung zählt nur die sichtbaren Wörter, die wir umschreiben — nie das umgebende Markup. Eine 50-KB-HTML-Seite mit 200 Wörtern wird auf diese 200 Wörter (× 2,5) abgerechnet, nicht auf das Markup.

Nutzen Sie auch unsere
Detektor API

POST /detect_apidetector.rephrasy.ai

AI Detector API

Bewerte jeden Text auf KI-Inhalte — ein Gesamt-Score 0–100 (0 = Mensch, 100 = KI) oder Satz-Scores im Depth-Modus.

1 Credit / Call$0,10 pro Prüfung · pauschal

Authentication

Authorization: Bearer <your-api-key>

Alle Anfragen und Antworten sind JSON.

Credits

Pauschal: 1 Credit pro Aufruf, unabhängig von der Textlänge. Wird bei erfolgreicher 200-Antwort berechnet.

const res = await fetch("https://detector.rephrasy.ai/detect_api", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    text: "Rephrasy rephrases AI generated text.",
    mode: ""            // "" = overall score, "depth" = per-sentence
  })
});

const data = await res.json();
// => { scores: { overall: 1.4 }, sentences: { ... } }
200 OKDetector API v1

Parameter

FeldTypErforderlichBeschreibung
textstringErforderlichDer auf KI-Inhalte zu prüfende Text.
modestringOptionalDetailgrad — leer für einen Gesamt-Score, oder depth für Satz-Scores.

Gibt scores.overall zurück (0–100; 0 = Mensch, 100 = KI). Im Depth-Modus ordnet sentences jedem Satz seinen Score zu. 200 OK bei Erfolg; 401 ungültiger API-Key; 422 ungültige Eingabe.

What You Can Build

Developers and agencies use the Rephrasy API to power their own products and workflows.

Bulk Content Pipelines

Process hundreds of articles or documents in parallel. Integrate into your existing content workflow via a single POST request.

SaaS Products

Build your own AI humanizer tool on top of Rephrasy. White-label the API or offer it as a feature inside your product.

Browser Extensions

Call the API from a Chrome extension to humanize text inline — directly on Google Docs, WordPress, or any web editor.

Agency Automation

Connect Rephrasy to Zapier, Make, or n8n to automatically humanize AI drafts before they hit your CMS or client delivery.

NEWsynthid-humanizer.rephrasy.ai

Image Humanizer API

Remove invisible AI watermarks (SynthID, StableSignature), detect AI provenance, and humanize images programmatically. Supports single images and batches up to 100.

10 credits / imageSame credit balance as text API

Authentication

Authorization: Bearer <your-api-key>

Website key = high-priority queue · User API key = normal queue

Credits

Credits are deducted at batch submission. Insufficient balance → 402 error, no images processed. Batches auto-delete after 24 hours.

Also available

GET/batches/{id}
GET/batches/{id}/download
POST/remove/visible
POST /batches
# 1 — Submit batch
curl -X POST https://synthid-humanizer.rephrasy.ai/batches \
  -H "Authorization: Bearer <your-api-key>" \
  -F "files=@photo1.png" \
  -F "files=@photo2.jpg"

# => { "batch_id": "a3f9c2b1", "job_count": 2, "status": "queued" }

# 2 — Poll until done (every 5–10 s)
curl https://synthid-humanizer.rephrasy.ai/batches/a3f9c2b1 \
  -H "Authorization: Bearer <your-api-key>"

# => { "status": "done", "done": 2, "total": 2, "download_ready": true }

# 3 — Download ZIP (batch deleted after this)
curl -O https://synthid-humanizer.rephrasy.ai/batches/a3f9c2b1/download \
  -H "Authorization: Bearer <your-api-key>"
200 OKImage API v1

Batch status values

queuedWaiting in queue — queue_position shows place
processingGPU is working on this batch
doneAll images finished, ready to download
failedProcessing failed — check per-job error field

Error codes

400No files / more than 100 files
401Missing or invalid API key
402Insufficient credits
404Batch not found or already downloaded
425Batch not done yet (too early to download)
NEWv1-humanizer.rephrasy.ai

Custom Writing Styles API

Trainiere einen wiederverwendbaren Schreibstil aus deinen eigenen Vorher/Nachher-Beispielen und humanisiere dann jeden Text in diesem Stil. Perfekt, um jedem Endnutzer seine eigene Stimme zu geben.

20 Credits / Training1 Credit / Humanize-Aufruf

Authentifizierung

Authorization: Bearer <your-api-key>

Alle Anfragen und Antworten sind JSON.

Credits

Ein Stil zu trainieren kostet 20 Credits, erst nach Erfolg berechnet. Jeder Humanize-Aufruf kostet 1 Credit. Keine Obergrenze bei der Anzahl der Stile — abgerechnet wird über Credits.

POST /api/styles
curl -X POST https://v1-humanizer.rephrasy.ai/api/styles \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Client 42 voice",
    "external_ref": "client-42",
    "sentences": [
      {"original": "The product offers many benefits to users.",
       "rewritten": "Honestly? This thing just makes life easier. Here is why."},
      {"original": "It is important to consider several factors.",
       "rewritten": "A few things matter here — let us walk through them."}
    ]
  }'

# => {
#   "style_id": "aB3xY7...",
#   "name": "Client 42 voice",
#   "external_ref": "client-42",
#   "status": "completed"
# }
200 OKWriting Styles API v1

Fehlercodes

400API-Key erforderlich — fehlender Authorization-Header
400Ungültiger API-Key — Key nicht erkannt
400Nicht genügend Credits für die Aktion
403Schreibstil gehört nicht zu diesem Nutzer
404Schreibstil nicht gefunden
500Analyse des Schreibstils fehlgeschlagen — Training gescheitert, keine Credits berechnet, erneut versuchen

Hinweis: Stile können nicht über die API gelöscht werden. Es werden nur mit deinem API-Key erstellte Stile zurückgegeben.

Bulk Credits — Unbeatable API Pricing

No per-seat fees, no rate limits. Buy credits once, use them any time. The more you buy, the cheaper each request gets.

5,000

credits

$275

$0.0550 / credit

100k words for $11.00
Most Popular

10,000

credits

$500

$0.0500 / credit

100k words for $10.00

20,000

credits

$950

$0.0475 / credit

100k words for $9.50

50,000

credits

$2,250

$0.0450 / credit

100k words for $9.00

* Based on 100 × 1,000-word requests with word-based pricing enabled (2 credits each = 200 credits total)

Real cost — humanizing 100,000 words

100 requests of 1,000 words each, word-based pricing enabled (words: true):

Rephrasy API (10K bulk)

$10.00

$0.10 per 1K words — no subscription, no monthly cap

WriteHuman Premium

$17.25

$69/mo plan pro-rated for 100K of 400K words

Undetectable AI Premium

$47.25

$15.75/mo × 3 months needed for 100K words

* Competitor prices based on publicly listed plans. WriteHuman: $69/mo Premium. Undetectable AI: $15.75/mo Premium (35K words/mo).

Ready to integrate?

Sign up, subscribe to any plan, and find your API key in your account dashboard. Start making requests in minutes.

AI Humanizer API für Entwickler konzipiert

Unsere AI Humanizer API ist für Entwickler konzipiert, die KI-generierte Inhalte in großen Mengen humanisieren möchten. Die API ist einfach, schnell und zuverlässig. Für API-Pläne kontaktieren Sie uns bitte direkt!

  • Schließen Sie eines unserer Abonnements ab

    Humanisieren Sie Inhalte mit unserer leistungsstarken API.

  • Nutzen Sie auch die AI Detektor API

    Erkennen Sie KI-Inhalte mit unserem leistungsstarken AI Detektor im großen Maßstab.

  • Kombinieren Sie AI Detektor und Humanizer für die besten Ergebnisse

    Für die besten Ergebnisse nutzen Sie Rephrasys AI Detektor und Humanizer zusammen.