cURL
curl --request POST \
--url https://sigmaaml.sabipay.com/api/v1/adverse-media \
--header 'Content-Type: application/json' \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>' \
--data '
{
"q": "Kwame Asare Mensah fraud investigation",
"limit": 10
}
'import requests
url = "https://sigmaaml.sabipay.com/api/v1/adverse-media"
payload = {
"q": "Kwame Asare Mensah fraud investigation",
"limit": 10
}
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
apiKey: '<api-key>',
apiSecret: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({q: 'Kwame Asare Mensah fraud investigation', limit: 10})
};
fetch('https://sigmaaml.sabipay.com/api/v1/adverse-media', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sigmaaml.sabipay.com/api/v1/adverse-media",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'q' => 'Kwame Asare Mensah fraud investigation',
'limit' => 10
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apiKey: <api-key>",
"apiSecret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sigmaaml.sabipay.com/api/v1/adverse-media"
payload := strings.NewReader("{\n \"q\": \"Kwame Asare Mensah fraud investigation\",\n \"limit\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sigmaaml.sabipay.com/api/v1/adverse-media")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"q\": \"Kwame Asare Mensah fraud investigation\",\n \"limit\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmaaml.sabipay.com/api/v1/adverse-media")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"q\": \"Kwame Asare Mensah fraud investigation\",\n \"limit\": 10\n}"
response = http.request(request)
puts response.read_body{
"message": "Request created successfully. Result will be sent to your webhook",
"data": {
"id": "67f95ea7c2a7d1f2b6ea10b4",
"query": "Kwame Asare Mensah",
"businessProfile": "67f4f9b5c2a7d1f2b6e99122",
"status": "pending",
"createdAt": "2026-04-03T09:20:00.000Z",
"updatedAt": "2026-04-03T09:20:00.000Z"
}
}{
"error": 400,
"message": "Invalid request payload: name is required"
}Anti Monitoring Laundering
Check Adverse Media (Webhook)
POST api/v1/adverse-media
cURL
curl --request POST \
--url https://sigmaaml.sabipay.com/api/v1/adverse-media \
--header 'Content-Type: application/json' \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>' \
--data '
{
"q": "Kwame Asare Mensah fraud investigation",
"limit": 10
}
'import requests
url = "https://sigmaaml.sabipay.com/api/v1/adverse-media"
payload = {
"q": "Kwame Asare Mensah fraud investigation",
"limit": 10
}
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
apiKey: '<api-key>',
apiSecret: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({q: 'Kwame Asare Mensah fraud investigation', limit: 10})
};
fetch('https://sigmaaml.sabipay.com/api/v1/adverse-media', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sigmaaml.sabipay.com/api/v1/adverse-media",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'q' => 'Kwame Asare Mensah fraud investigation',
'limit' => 10
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apiKey: <api-key>",
"apiSecret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sigmaaml.sabipay.com/api/v1/adverse-media"
payload := strings.NewReader("{\n \"q\": \"Kwame Asare Mensah fraud investigation\",\n \"limit\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sigmaaml.sabipay.com/api/v1/adverse-media")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"q\": \"Kwame Asare Mensah fraud investigation\",\n \"limit\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmaaml.sabipay.com/api/v1/adverse-media")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"q\": \"Kwame Asare Mensah fraud investigation\",\n \"limit\": 10\n}"
response = http.request(request)
puts response.read_body{
"message": "Request created successfully. Result will be sent to your webhook",
"data": {
"id": "67f95ea7c2a7d1f2b6ea10b4",
"query": "Kwame Asare Mensah",
"businessProfile": "67f4f9b5c2a7d1f2b6e99122",
"status": "pending",
"createdAt": "2026-04-03T09:20:00.000Z",
"updatedAt": "2026-04-03T09:20:00.000Z"
}
}{
"error": 400,
"message": "Invalid request payload: name is required"
}This is an example result that will be sent to your webhook upon completion
{
"info": {
"id": "66a3827cd75ed56a181d53a2",
"query": "Hushpuppi",
"count": 12,
"limit": 20
},
"result": [
{
"title": "Central District of California | Nigerian Man Sentenced to Over 11 ...",
"link": "https://www.justice.gov/usao-cdca/pr/nigerian-man-sentenced-over-11-years-federal-prison-conspiring-launder-tens-millions",
"keyword": { "confidenceScore": 1 },
"adverseInformation": [
{ "keyword": "fraud", "score": 1 },
{ "keyword": "money laundering", "score": 1 },
{ "keyword": "cybercrime", "score": 1 },
{ "keyword": "corruption", "score": 0.9 }
]
},
{
"title": "BEC Scammers: Hushpuppi & MrWoodbery - laundering millions",
"link": "https://www.linkedin.com/pulse/bec-scammers-hushpuppi-mrwoodbery-laundering-millions-gary-warner",
"keyword": { "confidenceScore": 1 },
"adverseInformation": [
{ "keyword": "fraud", "score": 0.9 },
{ "keyword": "money laundering", "score": 1 },
{ "keyword": "cybercrime", "score": 1 }
]
},
],
"type": "adverse media"
}
Body
application/json
Adverse media request payload
⌘I