curl --request POST \
--url https://app.spotzee.com/api/ext/generic/email/malicious-url-lookup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'url=<string>'{
"status": "success",
"data": {
"result": "Operation completed successfully"
}
}Check if URL is flagged as malicious or suspicious
curl --request POST \
--url https://app.spotzee.com/api/ext/generic/email/malicious-url-lookup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'url=<string>'{
"status": "success",
"data": {
"result": "Operation completed successfully"
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
1Was this page helpful?