Skip to content

Web Node Catalog

Generated category

Web Node Catalog

Generated from 91 catalog nodes in Web.

Web/APIWeb/API/RequestWeb/API/ResponseWeb/AuthWeb/CameraWeb/Geo/H3Web/Geo/MapWeb/Geo/RoutingWeb/Geo/SearchWeb/MCPWeb/MQTTWeb/RESTWeb/ScrapingWeb/TCPWeb/TLSWeb/UDPWeb/WebSocket

Nodes in this category

Showing 91 of 91 generated node docs.

HTTP Download

Web

Downloads a file from a url

API Call

Web/API

Performs an HTTP request

Streaming API Call

Web/API

Performs an HTTP request

Get Header

Web/API/Request

Gets a header from a http request

Get Headers

Web/API/Request

Gets all headers from a http request

Get Method

Web/API/Request

Gets the method from a http request

Get Url

Web/API/Request

Gets the url from a http request

Make Request

Web/API/Request

Creates a http request

Set Accept

Web/API/Request

Sets the Accept header of a http request

Set Bearer Auth

Web/API/Request

Sets the Authorization header using a Bearer token

Set Bytes Body

Web/API/Request

Sets the body of a http request

Set Content-Type

Web/API/Request

Sets the Content-Type header of a http request

Set Form Body

Web/API/Request

Sets the body of a http request to form-encoded data

Set Header

Web/API/Request

Sets a header of a http request

Set Headers

Web/API/Request

Sets the headers of a http request

Set Method

Web/API/Request

Sets the method of a http request

Set String Body

Web/API/Request

Sets the body of a http request

Set Struct Body

Web/API/Request

Sets the body of a http request

Set Url

Web/API/Request

Sets the url of a http request

Get Header

Web/API/Response

Gets a header from a http request

Get Headers

Web/API/Response

Gets all headers from a http request

Get Status Code

Web/API/Response

Gets the status code from a http response

Is Success

Web/API/Response

Checks if the status code of a http response is a success

To Bytes

Web/API/Response

Gets the body of a http response as bytes

To Struct

Web/API/Response

Gets the body of a http response as json

To Text

Web/API/Response

Gets the body of a http response as text

API Key Auth

Web/Auth

Creates REST auth that requires a configured API key header.

Basic Auth

Web/Auth

Creates REST auth that requires HTTP Basic credentials.

Bearer Token Auth

Web/Auth

Creates REST auth that requires a static Authorization bearer token.

HMAC SHA-256 Auth

Web/Auth

Creates REST auth that verifies an HMAC-SHA256 request signature.

OAuth JWKS File Auth

Web/Auth

Creates OAuth bearer auth from a JWKS JSON FlowPath loaded when the server starts.

OAuth JWKS URL Auth

Web/Auth

Creates OAuth bearer auth that fetches a JWKS endpoint once when the server starts.

OIDC Discovery Auth

Web/Auth

Creates OAuth bearer auth by discovering the JWKS URI from an OpenID Connect issuer.

Grab IP-Camera Frame

Web/Camera

Captures a frame from an IP camera

Write Image to Data URL

Web/Camera

Writes an image to a data URL

H3 Cell Area

Web/Geo/H3

Calculates the area of an H3 cell in the specified unit.

H3 Cell Boundary

Web/Geo/H3

Returns the polygon boundary (vertices) of an H3 cell. Useful for visualization and geospatial operations.

H3 Cell Children

Web/Geo/H3

Returns all child cells at a finer resolution that fit within the given cell.

H3 Cell Parent

Web/Geo/H3

Returns the parent cell at a coarser resolution. The parent contains the given cell.

H3 Cell to Lat/Lng

Web/Geo/H3

Converts an H3 cell index to the geographic coordinate of its center point.

H3 Cells to Polygon

Web/Geo/H3

Converts a set of H3 cells to polygon boundaries. Returns the outline(s) of the cell set, merging adjacent cells.

H3 Compact Cells

Web/Geo/H3

Compacts 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/H3

Returns the average edge length of H3 cells at a given resolution.

H3 Grid Disk

Web/Geo/H3

Returns 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/H3

Calculates the grid distance (number of steps) between two H3 cells. Both cells must be at the same resolution.

H3 Grid Path

Web/Geo/H3

Finds 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/H3

Converts a geographic coordinate to an H3 cell index at the specified resolution. H3 is a hierarchical hexagonal grid system.

Get Map Image

Web/Geo/Map

Fetches 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/Routing

Snaps noisy GPS traces to the road network using OSRM map matching.

OSRM Nearest

Web/Geo/Routing

Finds the nearest routable point(s) to a coordinate using OSRM.

OSRM Table

Web/Geo/Routing

Computes travel time and distance matrices between coordinates using OSRM.

OSRM Tile

Web/Geo/Routing

Fetches vector map tiles (MVT) from an OSRM server.

OSRM Trip

Web/Geo/Routing

Plans the shortest round trip through multiple coordinates using OSRM.

Plan Route

Web/Geo/Routing

Plans a route between two points using the OSRM routing service. Returns turn-by-turn directions, distance, and duration.

Reverse Geocode

Web/Geo/Search

Converts geographic coordinates to a human-readable address using the Nominatim service (OpenStreetMap).

Search Location

Web/Geo/Search

Searches for a location by name or address using the Nominatim geocoding service (OpenStreetMap). Returns matching locations with coordinates.

MCP Server

Web/MCP

Starts an MCP server from a composed config.

MCP Server Config

Web/MCP

Creates an MCP server config that function, resource, prompt, auth, and server nodes can compose.

Register MCP Auth

Web/MCP

Registers MCP server authentication settings.

Register MCP Functions

Web/MCP

Registers referenced Flow functions as MCP tools.

Register MCP Prompt

Web/MCP

Registers a static MCP prompt template.

Register MCP Resource

Web/MCP

Registers a FlowPath as an MCP resource.

MQTT Broker

Web/MQTT

Binds 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/MQTT

Connects to an MQTT broker and returns a session reference for use with Publish, Subscribe, and Disconnect nodes.

MQTT Disconnect

Web/MQTT

Disconnects from an MQTT broker and cleans up the session

MQTT Publish

Web/MQTT

Publishes a message to an MQTT topic

MQTT Subscribe

Web/MQTT

Subscribes 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/REST

Starts a REST server from a composed config. Function routes and files are registered on the config before this node runs.

REST Server Config

Web/REST

Creates a REST server config that route, file, auth, and server nodes can compose.

Register REST Auth

Web/REST

Registers REST server authentication settings.

Register REST Files

Web/REST

Registers a FlowPath file or directory as static REST responses.

Register REST Function

Web/REST

Registers referenced Flow functions as handlers for a REST path.

Register REST OpenAPI

Web/REST

Registers OpenAPI JSON and browser UI endpoints generated from the REST server config.

Extract Links

Web/Scraping

Extracts links from the input text

TCP Close

Web/TCP

Closes an open TCP connection gracefully

TCP Connect

Web/TCP

Opens 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/TCP

Binds 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/TCP

Sends data through an open TCP connection

TCP Server

Web/TCP

Binds 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/TLS

Creates a local certificate authority certificate and private key.

Create CA-Signed Certificate

Web/TLS

Creates a server or client certificate signed by a local certificate authority.

Create Self-Signed Certificate

Web/TLS

Creates a self-signed certificate and private key.

UDP Bind

Web/UDP

Binds a UDP socket to a local address and port

UDP Close

Web/UDP

Closes a bound UDP socket and releases resources

UDP Receive

Web/UDP

Listens 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/UDP

Sends a datagram to a target address through a bound UDP socket

UDP Server

Web/UDP

Binds a UDP socket. Typed lifecycle pins describe the socket; incoming datagrams are delivered to the referenced on-message handler.

WebSocket Close

Web/WebSocket

Closes an open WebSocket connection gracefully

WebSocket Connect

Web/WebSocket

Opens 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/WebSocket

Sends a message through an open WebSocket connection

WebSocket Server

Web/WebSocket

Binds a WebSocket server. Typed lifecycle events are exposed as pins; incoming messages are delivered to the referenced on-message handler.