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");

API URL

Production (live): https://api.cashbulls.org

Sandbox (testing): https://sandbox.cashbulls.org

Last updated