Quick Check
Post quick check
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
The response is of type object
.
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
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.