Documentation
Getting started
Watchlist API aims to have one stop solution to gather all sources of publicly and privately available data. By providing a Know Your People (KYP) in your sytem, the goal is to minimize potential fraud, wasted time, increase productivity, and maximize the potential of revenue of your company.
V1
This endpoint check person from open source data with multiple data point
body
Header parameters
TokenstringRequired
Your API_TOKEN from Authentication section
Responses
200
A JSON object from multiple sources of detected information of your request
application/json
400
You have invalid request
application/json
500
Error from our server
application/json
post
/panthersconst raw = JSON.stringify({
"name": "REZANANTHA FADIL PIETRUSCHKA",
"nik": "3674050707930005",
"phone": "6281376228366",
"email": "[email protected]",
"dob": "1988-07-04"
});
const requestOptions = {
method: "POST",
headers: Header,
body: raw,
redirect: "follow"
};
fetch("https://api-stg.oppna.dev/v1/panthers", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
{
"data": {
"spammer": {
"instance": "person",
"status": "Found",
"created_time": "2023-12-01",
"match": "phone"
},
"political party member": {
"name": "REZANANTHA FADIL PIETRUSCHKA",
"instance": "person",
"status": "Found",
"created_time": "2023-12-01",
"additional_information": "Sekretaris partai GERAKAN INDONESIA RAYA",
"name_similarity": 0.89,
"match": "name,nik"
},
"state officials": {
"name": "REZANANTHA FADIL PIETRUSCHKA",
"instance": "person",
"status": "Found",
"created_time": "2023-12-01",
"additional_information": "Last report 2023-12-01 for CALON PRESIDEN REPUBLIK INDONESIA",
"name_similarity": 0.89,
"match": "name,nik"
},
"social media": [
{
"instance": "person",
"status": "Found",
"source": "Facebook",
"name_similarity": 0.72,
"match": "email"
},
{
"instance": "person",
"status": "Not Found",
"source": "Twitter",
"name_similarity": 0.72,
"match": "email"
}
]
},
"message": "SUCCESS",
"code": "01",
"processed_time": 1.2314
}Last updated
Was this helpful?