Web
Web integration · 3 node(s).
00Overview
Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.
01Connecting Web
Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:
${secrets.your_secret}.02Fetch
Web Fetch
web/fetch · Action
Fetch a URL and extract the text content
| Field | Type | Details | |
|---|---|---|---|
| URL | string | Required | https://example.com |
| Max Content Length | integer | 10000 |
Returns: tool_result, content, title, status_code, success, error
03Request
HTTP Request
web/request · Action
Send an HTTP request and capture the response
| Field | Type | Details | |
|---|---|---|---|
| HTTP Method | string | Required | GET — choices: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS |
| URL | string | Required | https://example.com/api/v1/resource |
| Headers | text | Content-Type: application/json Authorization: Bearer ... | |
| Request Body | text | ||
| Timeout (seconds) | integer | 30 |
Returns: tool_result, status_code, response_body, response_headers, success
04Search
Web Search
web/search · Action
Search the web using the Brave Search API
| Field | Type | Details | |
|---|---|---|---|
| Search Query | string | Required | What to search for |
| Brave API Key | secret | Required | BSA... |
| Number of Results | integer | 5 |
Returns: tool_result, results, success, error
05Notes & Limitations
Behaviours and constraints worth knowing before you build with these nodes.
- Web Fetch returns plain text only, stripping out all HTML markup, scripts and styling, and cannot read content that a page loads via JavaScript after opening.
- Web Fetch keeps only the first 10,000 characters of a page by default and appends a truncation marker, so raise Max Content Length when working with long pages.
- Web Fetch treats any non-200 response, including "page not found" errors, as a failure and returns empty content with Success set to false.
- HTTP Request captures at most 1 MB of the response body and silently discards anything beyond that.
- HTTP Request reports Success as true only for 2xx status codes, so a redirect or error response still returns its status and body but is flagged as unsuccessful — check the HTTP Status rather than assuming the call worked.
- Web Search returns at most 20 results per call regardless of the number requested, and requires your own Brave Search API key, which is billed against that key's own plan and rate limits.