Lookup
Get query
GET
/
query
/
{item}
curl --request GET \
--url https://threat-intel-api.abusix.com/beta/query/{item}
{
"status": "success",
"statusCode": 200,
"result": {
"item": "<string>",
"abusixMailBlocklist": "ACTIVE",
"type": "IP",
"bogon": true,
"tags": [
"<string>"
],
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"intent": "malicious",
"reverseDns": {
"current": [
{
"entry": "<string>"
}
]
},
"abuseContact": {
"email": "[email protected]",
"status": "UNKNOWN",
"lastVerification": "2023-11-07T05:31:56Z"
},
"asn": {
"countryCode": "US",
"asn": "AS1234",
"name": "ACME Corporation"
},
"observedActivity": {
"honeypotInteractions": {
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"observations": [
{
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"service": "ssh",
"type": "login-attack"
}
]
},
"spamtrapInteractions": {
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"observations": [
{
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"type": "pristine-spamtrap"
}
]
}
}
}
}
Path Parameters
IP to look up
Example:
"1.1.1.1"
Response
200
application/json
Query result
The response is of type object
.
curl --request GET \
--url https://threat-intel-api.abusix.com/beta/query/{item}
{
"status": "success",
"statusCode": 200,
"result": {
"item": "<string>",
"abusixMailBlocklist": "ACTIVE",
"type": "IP",
"bogon": true,
"tags": [
"<string>"
],
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"intent": "malicious",
"reverseDns": {
"current": [
{
"entry": "<string>"
}
]
},
"abuseContact": {
"email": "[email protected]",
"status": "UNKNOWN",
"lastVerification": "2023-11-07T05:31:56Z"
},
"asn": {
"countryCode": "US",
"asn": "AS1234",
"name": "ACME Corporation"
},
"observedActivity": {
"honeypotInteractions": {
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"observations": [
{
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"service": "ssh",
"type": "login-attack"
}
]
},
"spamtrapInteractions": {
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"observations": [
{
"firstSeen": "2023-11-07T05:31:56Z",
"lastSeen": "2023-11-07T05:31:56Z",
"type": "pristine-spamtrap"
}
]
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.