From raw bytes to structured JSON in a single function call. Three steps, zero config.
$1/month + $0.05/MB processed · First 100 MB included · See pricing →
// 12.7μs — that's it. let result = gateway .parse("modbus-rtu-sunspec", &raw_bytes) .await?; // Structured JSON, type-safe, zero-copy assert_eq!(result["protocol"], "modbus_rtu"); assert_eq!(result["registers"][0]["value"], 4215); assert_eq!(result["status"], "ok"); // Arrow IPC for analytics pipelines let arrow = gateway .parse_arrow("modbus-rtu-sunspec", &raw_bytes) .await?;
Parse any protocol over HTTP — no SDK required.
# Deploy a driver curl -X POST \ -H "Content-Type: application/wasm" \ --data-binary @modbus_rtu.wasm \ http://localhost:3000/v1/drivers/deploy # Parse a binary payload curl -X POST \ --data-binary @payload.bin \ http://localhost:3000/v1/parse/modbus-rtu-sunspec # Response: structured JSON { "protocol": "modbus_rtu", "registers": [{ "address": 40001, "value": 4215 }], "status": "ok" }