Go to Studio

Url

A input to receive url(s) to launch the workflow

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:

graph LR
    A[Url: Target Website] --> B[Web Scraper]
    B --> C[Content Extractor]
    C --> D[Data Storage]

SEO analysis

Analyze multiple URLs for SEO:

graph LR
    A[Url: Website URLs] --> B[SEO Analyzer]
    B --> C[Meta Tag Extractor]
    C --> D[Report Generator]

Content monitoring

Monitor and track changes on URLs:

graph LR
    A[Url: Pages to Monitor] --> B[Content Fetcher]
    B --> C[Change Detector]
    C --> D[Alert System]

Batch URL processing

Process multiple URLs in parallel:

graph LR
    A[Url: URL List] --> B[URL Validator]
    B --> C[Parallel Scraper]
    C --> D[Data Aggregator]
    D --> E[Export Results]