Web Request

Nodes in this category facilitate fetching and handling resources from HTTP endpoints and sending webhook requests to external services.

Nodes

NodeDetailsPossible Types
Decode Image

Converts raw binary data to a raster image.

Works with standard image format (PNG, JPEG, WebP, etc.). Automatically converts the color space to linear sRGB for accurate compositing.

Arc<[u8]> → Table<Raster>
Get Request

Sends an HTTP GET request to a specified URL and optionally waits for the response (unless discarded) which is output as a string.

→ string
Image to Bytes

Converts extracted raw RGBA pixel data from an input image. Each pixel becomes 4 sequential bytes. Useful for transmission over HTTP or writing to files.

Table<Raster> → Vec<u8>
Load Resource

Loads binary from URLs and local asset paths. Returns a transparent placeholder if the resource fails to load, allowing rendering to continue.

→ Arc<[u8]>
Post Request

Sends an HTTP POST request to a specified URL with the provided binary data and optionally waits for the response (unless discarded) which is output as a string.

→ string
String to Bytes

Converts a text string to raw binary data. Useful for transmission over HTTP or writing to files.

string → Vec<u8>