Authentication
This header is not a static token it’s a Base64‑encoded string created from <API_KEY>:<API_SECRET>.
How to generate credentials
const apiKey = "<YOUR_API_KEY>";
const apiSecret = "<YOUR_API_SECRET>";
// Generate Base64 encoded credentials
const credentials = Buffer
.from(`${apiKey}:${apiSecret}`)
.toString("base64");Last updated