Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
malicious-url-lookup
Check URL for malicious content
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

application/x-www-form-urlencoded
url
string<uri>
required
Minimum string length: 1

Response

Successfully checked URL status

status
enum<string>
required
Available options:
success
data
any | null

Response data specific to the endpoint

Example:
{
  "result": "Operation completed successfully"
}