Overview
Tool nodes handle the essential operations in your workflows — making API calls, transforming data, and combining information.Available tools
Data extraction
Data transformation
HTML Cleaner
Clean and sanitize HTML
HTML to Markdown
Convert HTML to Markdown
Find and Replace
Search and replace text
Tag Extractor
Extract HTML tags
Word Counter
Count words and characters
Data combination
Data transformation
HTML Cleaner
Remove unwanted HTML elements:- Scripts and styles
- Comments
- Empty tags
- Specific selectors
HTML to Markdown
Convert web content for use with AI:Find and Replace
Transform text with patterns:| Mode | Example |
|---|---|
| Simple | Replace “foo” with “bar” |
| Regex | Replace \d{4} with [YEAR] |
| Multiple | Chain multiple replacements |
JSON Path Extractor
Navigate complex JSON:Common patterns
API data pipeline
Best practices
Web scraping
- Respect robots.txt and rate limits
- Add delays between requests (2-3 seconds)
- Handle errors gracefully (404, timeout)
- Cache results when possible
API calls
- Use authentication properly
- Handle rate limits with retries
- Validate responses before processing
- Log failures for debugging

