POST
/
quick-check
curl --request POST \
  --url https://threat-intel-api.abusix.com/beta/quick-check \
  --header 'Content-Type: application/json' \
  --data '[
  "1.1.1.1",
  "example.com"
]'
{
  "status": "success",
  "statusCode": 200,
  "result": [
    {
      "item": "<string>",
      "abusixMailBlocklist": "ACTIVE",
      "type": "IP",
      "bogon": true,
      "intent": "malicious",
      "activity": true
    }
  ]
}

Body

application/json · string[]
Array of up to 1000 items to lookup

The body is of type string[].

Response

200
application/json
Query result
status
enum<string>
required
Available options:
success
statusCode
number
required
Required range: x > 0
Example:

200

result
object[]
required