Web
Web integration · 4 node(s) including 1 trigger.
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:
| Field | Type | Details | |
|---|---|---|---|
| Brave API Key | secret | Required | BSA... |
${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 |
| Number of Results | integer | 5 |
Returns: tool_result, results, success, error
05Triggers
Web Trigger
trigger/web · Trigger
Triggers a flow from an HTTP request of any verb; pair with a Web Response action to return a body/status
| Field | Type | Details | |
|---|---|---|---|
| Accepted Methods | multi_select | choices: GET, POST, PUT, PATCH, DELETE | |
| Authentication | string | Publishable Key — choices: Publishable Key, Open | |
| Request Fields | field_source_map | {"id":"path","limit":"query","name":"body"} — choices: Path, Query, Header, Body | |
| Keep Conversation History | boolean | ||
| Message Field | string | message |
Returns: method, history, raw_body
06Notes & Limitations
Behaviours and constraints worth knowing before you build with these nodes.
- Web Search requires you to supply your own Brave Search API key (it starts with
BSA); the node includes no built-in search allowance, so create a key in a Brave Search account before using it. - Web Fetch returns only the page's readable text, with HTML markup, scripts and images stripped out, so use HTTP Request instead whenever you need the raw, unaltered response.
- Web Fetch truncates long pages to the Max Content Length you set, so raise that value when you need the full body rather than just the opening portion.
- Web Fetch reads only the HTML the server initially sends, so pages that build their content in the browser using JavaScript may come back with little or no text.
- HTTP Request captures the response as text, so downloading binary content such as images, PDFs or archives is not reliably supported.