Nodaro Docs
DocumentationNode ReferenceModelsAI Agents (MCP)DevelopersSelf-hostingResearch
Automate

Remove Duplicates

Remove repeated items from a list and keep the first copy of each. Compare whole items or one field, such as id or url, in scraped or merged lists.

The Remove Duplicates node drops the repeated items of a list and keeps the first copy of each. It compares whole items by default, or one field inside each item, such as id or url, which suits scraped records. The remaining items keep their order. The node is free.

When to use it

  • A scrape returns the same post more than once. Drop the copies by their id or url.
  • You merged two lists that overlap and want each item once.
  • You want each prompt of a batch to run only once.

Quick start

Add the node

Press Tab on the canvas and choose Automate › Lists & Batching › Remove Duplicates.

Connect a list

Wire a list into the List input, for example from Web Scrape, Merge Lists, Filter List, List or Split Text.

Choose what to compare

Open the settings panel. Leave Deduplicate by field on (whole item) to compare full items, or choose the field that identifies an item.

Run it

The Unique output carries the list without repeats. After a run, the panel previews the unique items and shows how many there are.

listslistslistWeb ScrapeSearch 1Web ScrapeSearch 2Merge ListsConcatenateRemove DuplicatesBy url
Two searches are merged into one list, and Remove Duplicates keeps each result once by comparing its url.

Inputs and outputs

Input or outputAccepts or sendsWhat it does
ListA list of text or JSON itemsThe list to clean.
UniqueA listThe first copy of every item, in the original order.

Settings

SettingWhat it does
Deduplicate by fieldWhat makes two items the same. (whole item), the default, compares the full items as text. Choose a field detected from the upstream data, or Custom path… to type a dot path such as id or metadata.url. Each item is read as JSON when the path matches it.

Credits

Remove Duplicates is free.

Tips

  • Compare by an identifier. Two scrapes of the same post can differ in small details, such as a like count. Compare by id or url so that they still count as one post.
  • Merge and clean in one step. When you only need to merge lists and drop exact repeats, enable Remove duplicates after merge in Merge Lists.

Frequently asked questions

Last updated on

On this page