Authententication:

All requests to the Sigma API must include the following headers:
  • apiKey
  • apiSecret
Here is an example on how you can set the headers in your requests:
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));