Sigrex API
Base URL
https://api.sigrex.io/api/v2
Getting Started
3
Signature generation examples
HMAC SHA256 (GET request)
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")
ML-DSA44 (GET request)
HMAC SHA256 (POST request)
ML-DSA44 (POST request)
Example request
Never expose your API secret in frontend code. Always generate signatures on your backend.
Last updated