Skip to main content

Detect, Analyze and Humanize πŸ•΅οΈβ€β™‚οΈπŸ”Ž AI-generated text using Rephrasy

Workflow preview

Workflow preview
100%
Detect, Analyze and Humanize πŸ•΅οΈβ€β™‚οΈπŸ”Ž AI-generated text using Rephrasy preview
Open on n8n.io

1. Workflow Overview

This workflow is designed to analyze and humanize AI generated text automatically using Rephrasy AI. The workflow then sends this text to an AI detection service to evaluate how β€œAI like” it is. Th...

Best for

  • Content Creation automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.manualtrigger, n8n-nodes-base.stickynote, n8n-nodes-base.splitout, n8n-nodes-base.splitinbatches, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.if

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Davide Boizza.

Original n8n.io source

1.1 Workflow description

Title
Detect, Analyze and Humanize πŸ•΅οΈβ€β™‚οΈπŸ”Ž AI-generated text using Rephrasy
Workflow name
Detect, Analyze and Humanize πŸ•΅οΈβ€β™‚οΈπŸ”Ž AI-generated text using Rephrasy

This workflow is designed to analyze and humanize AI-generated text automatically using Rephrasy AI.

The workflow then sends this text to an AI detection service to evaluate how β€œAI-like” it is. The text is broken down into individual sentences, and each sentence is scored based on its likelihood of being AI-generated.

Using a conditional logic step, the workflow identifies sentences with a high AI probability (score > 50). Only those sentences are sent to a humanization API, which rewrites them in a more natural, human-like style. Meanwhile, sentences that are already considered human are left unchanged.

Finally, all processed sentences are recombined into a single output text.

πŸ‘‰ In short, the workflow:

  • Detects AI-generated content
  • Filters only the parts that need improvement
  • Rewrites them to sound more human
  • Reassembles the final optimized text

Key Benefits

1. βœ… Selective Humanization

Instead of rewriting the entire text, the workflow only modifies sentences that are likely AI-generated. This preserves natural content and reduces unnecessary changes.

2. βœ… Cost Optimization

By processing only flagged sentences through the humanizer API, it minimizes API usage and costs.

3. βœ… Improved Text Quality

The final output sounds more natural and less robotic, improving readability and engagement.

4. βœ… Sentence-Level Precision

The workflow analyzes text at a granular level, allowing highly targeted improvements rather than bulk rewriting.

5. βœ… Automation & Scalability

Once set up, the process is fully automated and can handle large volumes of text without manual intervention.

6. βœ… Multi-language Support

The workflow supports multiple languages (even though the humanization step is set to English), making it adaptable to different use cases.

7. βœ… Maintain Structure & Meaning

Since only specific sentences are modified, the original structure and intent of the text remain intact.


How it works

This workflow is designed to process a block of text, detect which sentences are likely AI-generated, and rewrite only those sentences to sound more human-like.

  1. Trigger and Input: The workflow starts manually. A "Set text" node allows the user to define the text to be processed (stored in the text field).
  2. AI Detection: The text is sent to the Rephrasy AI Detector API. The API returns an overall AI score and a breakdown (sentences) with individual scores for each sentence.
  3. Data Parsing: A "Code" node transforms the API's sentence data into a structured array, tagging each sentence as "ai" (if the score > 50) or "human".
  4. Splitting and Looping: The "Split Out" node separates the sentences into individual items. The "Loop Over Items" node then iterates over each sentence to decide if it needs processing.
  5. Conditional Humanization: For each sentence, the "> 50?" node (IF condition) checks the AI score. If the score is greater than 50 (indicating AI), the workflow routes the sentence to the AI Humanizer node to be rewritten. If the score is 50 or less (human), the sentence is passed through unchanged.
  6. Reassembly: Once the loop finishes, the "Aggregate Text" node collects all the sentences (both the rewritten AI sentences and the original human sentences) and reassembles them into a single, final text output.

Set up steps

To get this workflow running, you need to configure the connections to the Rephrasy API and define the input text.

  1. Configure Credentials:
  • The workflow uses two nodes: AI Detector and AI Humanizer.
  • Both require an HTTP Bearer Auth credential. You must create a credential in n8n named "Rephrasy" (or update the node settings to match your credential's name) and populate it with your valid Rephrasy API key.
  1. Set Input Text:
  • Locate the Set text node.
  • Modify the text assignment value. Currently, it contains a placeholder (XXX). Replace this with the text you wish to humanize, or configure it to reference data from a previous trigger (e.g., from a webhook or form).
  1. Review Language Settings:
  • In the AI Humanizer node, check the language parameter inside the JSON body. It is currently set to "English". Ensure this matches the language of the text you are processing.
  1. Activate Workflow:
  • Once the credentials are set and the input text is defined, toggle the workflow from Inactive to Active (or simply execute it manually using the "Execute Workflow" button if no trigger is needed).

πŸ‘‰ Subscribe to my new YouTube channel. Here I’ll share videos and Shorts with practical tutorials and FREE templates for n8n.


Need help customizing?

Contact me for consulting and support or add me on Linkedin.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - When clicking β€˜Execute workflow’

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 2 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Split Out

Type / Role
n8n-nodes-base.splitOut - splitOut
Config choices
Version 1

Block 4 - Loop Over Items

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 5 - Set text

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 6 - AI Detector

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.4

Block 7 - AI Humanizer

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.4

Block 8 - Get sentences

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - > 50?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 10 - Text

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 11 - Continue...

Type / Role
n8n-nodes-base.noOp - noOp
Config choices
Version 1

Block 12 - Text 2

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 13 - Aggregate Text

Type / Role
n8n-nodes-base.aggregate - aggregate
Config choices
Version 1

Block 14 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Detect, Analyze and Humanize πŸ•΅οΈβ€β™‚οΈπŸ”Ž AI-generated text using Rephrasy
Complexity advanced
Nodes 16
Categories Content Creation, AI Summarization
Author Davide Boizza
Published 01 Apr 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/14545/14545.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Detect, Analyze and Humanize πŸ•΅οΈβ€β™‚οΈπŸ”Ž AI-generated text using Rephrasy do?

This workflow is designed to analyze and humanize AI generated text automatically using Rephrasy AI. The workflow then sends this text to an AI detection service to evaluate how β€œAI like” it is. Th...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, AI Summarization use case.