Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ApexX Cloud API Reference
X-Access-Key
X-Signature
X-Timestamp
{HTTP_METHOD}\n{PATH}\n{TIMESTAMP}
const generateSignature = ( method, path, timestamp = new Date().toISOString() ) => { const stringToSign = `${method}\n${path}\n${timestamp}`; const signature = crypto .createHmac("sha256", secretKey) .update(stringToSign) .digest("hex"); return { signature, timestamp }; };