Web Node Catalog
Generated category
Web Node Catalog
Generated from 91 catalog nodes in Web.
Nodes in this category
Showing 91 of 91 generated node docs.
HTTP Download
WebDownloads a file from a url
API Call
Web/APIPerforms an HTTP request
Streaming API Call
Web/APIPerforms an HTTP request
Get Header
Web/API/RequestGets a header from a http request
Get Headers
Web/API/RequestGets all headers from a http request
Get Method
Web/API/RequestGets the method from a http request
Get Url
Web/API/RequestGets the url from a http request
Make Request
Web/API/RequestCreates a http request
Set Accept
Web/API/RequestSets the Accept header of a http request
Set Bearer Auth
Web/API/RequestSets the Authorization header using a Bearer token
Set Bytes Body
Web/API/RequestSets the body of a http request
Set Content-Type
Web/API/RequestSets the Content-Type header of a http request
Set Form Body
Web/API/RequestSets the body of a http request to form-encoded data
Set Header
Web/API/RequestSets a header of a http request
Set Headers
Web/API/RequestSets the headers of a http request
Set Method
Web/API/RequestSets the method of a http request
Set String Body
Web/API/RequestSets the body of a http request
Set Struct Body
Web/API/RequestSets the body of a http request
Set Url
Web/API/RequestSets the url of a http request
Get Header
Web/API/ResponseGets a header from a http request
Get Headers
Web/API/ResponseGets all headers from a http request
Get Status Code
Web/API/ResponseGets the status code from a http response
Is Success
Web/API/ResponseChecks if the status code of a http response is a success
To Bytes
Web/API/ResponseGets the body of a http response as bytes
To Struct
Web/API/ResponseGets the body of a http response as json
To Text
Web/API/ResponseGets the body of a http response as text
API Key Auth
Web/AuthCreates REST auth that requires a configured API key header.
Basic Auth
Web/AuthCreates REST auth that requires HTTP Basic credentials.
Bearer Token Auth
Web/AuthCreates REST auth that requires a static Authorization bearer token.
HMAC SHA-256 Auth
Web/AuthCreates REST auth that verifies an HMAC-SHA256 request signature.
OAuth JWKS File Auth
Web/AuthCreates OAuth bearer auth from a JWKS JSON FlowPath loaded when the server starts.
OAuth JWKS URL Auth
Web/AuthCreates OAuth bearer auth that fetches a JWKS endpoint once when the server starts.
OIDC Discovery Auth
Web/AuthCreates OAuth bearer auth by discovering the JWKS URI from an OpenID Connect issuer.
Grab IP-Camera Frame
Web/CameraCaptures a frame from an IP camera
Write Image to Data URL
Web/CameraWrites an image to a data URL
H3 Cell Area
Web/Geo/H3Calculates the area of an H3 cell in the specified unit.
H3 Cell Boundary
Web/Geo/H3Returns the polygon boundary (vertices) of an H3 cell. Useful for visualization and geospatial operations.
H3 Cell Children
Web/Geo/H3Returns all child cells at a finer resolution that fit within the given cell.
H3 Cell Parent
Web/Geo/H3Returns the parent cell at a coarser resolution. The parent contains the given cell.
H3 Cell to Lat/Lng
Web/Geo/H3Converts an H3 cell index to the geographic coordinate of its center point.
H3 Cells to Polygon
Web/Geo/H3Converts a set of H3 cells to polygon boundaries. Returns the outline(s) of the cell set, merging adjacent cells.
H3 Compact Cells
Web/Geo/H3Compacts a set of H3 cells by replacing groups of cells with their parent when all children are present. Reduces the number of cells while covering the same area.
H3 Edge Length
Web/Geo/H3Returns the average edge length of H3 cells at a given resolution.
H3 Grid Disk
Web/Geo/H3Returns all H3 cells within k steps of the origin cell (a filled disk of hexagons). Useful for proximity searches and area coverage.
H3 Grid Distance
Web/Geo/H3Calculates the grid distance (number of steps) between two H3 cells. Both cells must be at the same resolution.
H3 Grid Path
Web/Geo/H3Finds a path of H3 cells between two cells. Returns all cells along the shortest path. Both cells must be at the same resolution.
Lat/Lng to H3 Cell
Web/Geo/H3Converts a geographic coordinate to an H3 cell index at the specified resolution. H3 is a hierarchical hexagonal grid system.
Get Map Image
Web/Geo/MapFetches a static map image for the given coordinates using OpenStreetMap tiles. Returns a satellite/standard map image centered on the location.
OSRM Match Trace
Web/Geo/RoutingSnaps noisy GPS traces to the road network using OSRM map matching.
OSRM Nearest
Web/Geo/RoutingFinds the nearest routable point(s) to a coordinate using OSRM.
OSRM Table
Web/Geo/RoutingComputes travel time and distance matrices between coordinates using OSRM.
OSRM Tile
Web/Geo/RoutingFetches vector map tiles (MVT) from an OSRM server.
OSRM Trip
Web/Geo/RoutingPlans the shortest round trip through multiple coordinates using OSRM.
Plan Route
Web/Geo/RoutingPlans a route between two points using the OSRM routing service. Returns turn-by-turn directions, distance, and duration.
Reverse Geocode
Web/Geo/SearchConverts geographic coordinates to a human-readable address using the Nominatim service (OpenStreetMap).
Search Location
Web/Geo/SearchSearches for a location by name or address using the Nominatim geocoding service (OpenStreetMap). Returns matching locations with coordinates.
MCP Server
Web/MCPStarts an MCP server from a composed config.
MCP Server Config
Web/MCPCreates an MCP server config that function, resource, prompt, auth, and server nodes can compose.
Register MCP Auth
Web/MCPRegisters MCP server authentication settings.
Register MCP Functions
Web/MCPRegisters referenced Flow functions as MCP tools.
Register MCP Prompt
Web/MCPRegisters a static MCP prompt template.
Register MCP Resource
Web/MCPRegisters a FlowPath as an MCP resource.
MQTT Broker
Web/MQTTBinds a lightweight MQTT broker for daemon workflows. Typed lifecycle events are exposed as pins; published messages are delivered to the referenced on-message handler.
MQTT Connect
Web/MQTTConnects to an MQTT broker and returns a session reference for use with Publish, Subscribe, and Disconnect nodes.
MQTT Disconnect
Web/MQTTDisconnects from an MQTT broker and cleans up the session
MQTT Publish
Web/MQTTPublishes a message to an MQTT topic
MQTT Subscribe
Web/MQTTSubscribes to an MQTT topic and invokes a handler for each incoming message. Holds execution until the connection closes or timeout, then triggers on_close.
REST Server
Web/RESTStarts a REST server from a composed config. Function routes and files are registered on the config before this node runs.
REST Server Config
Web/RESTCreates a REST server config that route, file, auth, and server nodes can compose.
Register REST Auth
Web/RESTRegisters REST server authentication settings.
Register REST Files
Web/RESTRegisters a FlowPath file or directory as static REST responses.
Register REST Function
Web/RESTRegisters referenced Flow functions as handlers for a REST path.
Register REST OpenAPI
Web/RESTRegisters OpenAPI JSON and browser UI endpoints generated from the REST server config.
Extract Links
Web/ScrapingExtracts links from the input text
TCP Close
Web/TCPCloses an open TCP connection gracefully
TCP Connect
Web/TCPOpens a TCP connection to a remote host. Triggers on_connect with the session, then invokes the on-message handler for each incoming data chunk. Holds execution until the connection closes, then triggers on_close.
TCP Listen
Web/TCPBinds a TCP listener on a port. Fires on_listening, then accepts incoming connections and invokes the handler for each. Holds execution until closed or timed out, then triggers on_close.
TCP Send
Web/TCPSends data through an open TCP connection
TCP Server
Web/TCPBinds a TCP server. Typed lifecycle events are exposed as pins; incoming data chunks are delivered to the referenced on-message handler.
Create CA Certificate
Web/TLSCreates a local certificate authority certificate and private key.
Create CA-Signed Certificate
Web/TLSCreates a server or client certificate signed by a local certificate authority.
Create Self-Signed Certificate
Web/TLSCreates a self-signed certificate and private key.
UDP Bind
Web/UDPBinds a UDP socket to a local address and port
UDP Close
Web/UDPCloses a bound UDP socket and releases resources
UDP Receive
Web/UDPListens for incoming datagrams on a bound UDP socket. Invokes the on-message handler for each received datagram. Holds execution until the socket is closed or the timeout expires, then fires on_close.
UDP Send To
Web/UDPSends a datagram to a target address through a bound UDP socket
UDP Server
Web/UDPBinds a UDP socket. Typed lifecycle pins describe the socket; incoming datagrams are delivered to the referenced on-message handler.
WebSocket Close
Web/WebSocketCloses an open WebSocket connection gracefully
WebSocket Connect
Web/WebSocketOpens a WebSocket connection. Immediately triggers on_connect with the session, then invokes on_message for each incoming message. Holds execution until the connection closes, then triggers on_close.
WebSocket Send
Web/WebSocketSends a message through an open WebSocket connection
WebSocket Server
Web/WebSocketBinds a WebSocket server. Typed lifecycle events are exposed as pins; incoming messages are delivered to the referenced on-message handler.