Skip to main content

What does this node do?

Creates a URL input field that users provide when running the workflow. Supports single or multiple URLs for web scraping, API calls, content analysis, and more.

Configuration

label
string
required
Display label for the URL input field.
placeholder
string
Placeholder text shown in empty field (e.g., “https://example.com”).
default_value
string
Pre-filled default URL value.
multiple
boolean
default:"false"
Allow multiple URL inputs.
required
boolean
default:"true"
Whether the field must be filled.

Output

{
  "value": "https://example.com/page"
}
For multiple URLs:
{
  "value": [
    "https://example.com/page1",
    "https://example.com/page2"
  ]
}

Access the value

Use {{Url_0.value}} in other nodes to access the URL input. For multiple URLs, iterate over the array.

Examples

Web scraping workflow

Scrape content from provided URLs:

SEO analysis

Analyze multiple URLs for SEO:

Content monitoring

Monitor and track changes on URLs:

Batch URL processing

Process multiple URLs in parallel: