Welcome
You can use our api reference to integrate the api’s directly in your own applications.If you want sdk support for languages that is not supported yet, please
contact us so we can add it.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ApexX Cloud API Reference
| Header | Description |
|---|---|
X-Access-Key | Your API Access Key |
X-Signature | HMAC SHA-256 signature of the request |
X-Timestamp | ISO 8601 timestamp of the request |
{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 };
};