Towerflow API
Getting Started
Signature generation examples
import crypto from "crypto"
const API_KEY = "your_public_api_key"
const API_SECRET = "your_private_api_secret"
const method = "GET"
const path = "/api/v2/strategy/llm-session"
const timestamp = Math.floor(Date.now() / 1000).toString()
const message = method + path + timestamp
const signature = crypto
.createHmac("sha256", API_SECRET)
.update(message)
.digest("hex")
Example request
Last updated