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
}
]
}
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
}
]
}
Array of up to 1000 items to lookup
The body is of type string[]
.
Query result
The response is of type object
.