This is the API reference documentation for Sigma. It contains all the endpoints and their specifications.
apiKey
apiSecret
const headers = { apiKey: "your-api-key-here", apiSecret: "your-api-secret-here", }; fetch("https://api/v1/transaction-monitoring", { method: "GET", headers: headers, }) .then((response) => response.json()) .then((data) => console.log(data)) .catch((error) => console.error("Error:", error));