Authentication
API Authentication
Code Example
require("isomorphic-fetch");
const crypto = require("crypto");
async function sendRequest() {
const apiKey = "YOUR_API_KEY";
const apiSecret = "YOUR_API_SECRET";
const apiPath = "/users/v1/userbalance";
const nonce = Date.now().toString();
const httpMethod = "GET";
const signatureContent = JSON.stringify({
httpMethod,
path: apiPath,
nonce
});
const sig = crypto
.createHmac("sha384", apiSecret)
.update(signatureContent)
.digest("hex");
try {
const res = await fetch(`https://api.aquanow.io${apiPath}?`, {
method: httpMethod,
headers: {
"x-nonce": nonce,
"x-api-key": apiKey,
"x-signature": sig
}
});
if (res.status !== 200) {
throw new Error(`${(await res.json()).message} status ${res.status}`);
}
const result = await res.json();
console.log("Result: ", result);
} catch (error) {
console.log("error", error);
}
}
sendRequest();Common Authentication Errors
HTTP 401
HTTP 403
Last updated