TurboWarp Integration Guide
This Dual-Layer API allows TurboWarp to natively read and store persistent data (SSD + Memory). All data interactions happen via the HTTP Extension natively without any JSON parsing required. All responses return Raw Text.
Fetch the entire contents of a variable.
Fetch only specific characters by defining a 0-indexed range. Awesome for decoding chunked data!
Hello World: range=0-4 returns Hello range=6-10 returns World
Replaces everything in the variable. If the variable doesn't exist, it creates it.
Stuffs data onto the end of an existing variable. Extremely fast for logs!
Replaces characters exclusively in the targeted index range without downloading the whole string.
If my_var was Hello World, it becomes Howdy World.