GET
/
tags
/
{name}
/
ips
curl --request GET \
  --url https://threat-intel-api.abusix.com/beta/tags/{name}/ips
{
  "status": "success",
  "statusCode": 200,
  "result": {
    "tag": "credentials:brute-force",
    "entries": [
      "1.1.1.1",
      "1.2.3.4"
    ],
    "lastUpdate": "<string>",
    "total": 123,
    "snapshot": "<string>"
  }
}

Path Parameters

name
string
required

Tag name to lookup

Example:

"credentials:brute-force"

Query Parameters

offset
integer | null
default:0
Required range: x >= 0
limit
integer
default:1000

Limit of how many entries should be returned at a maximum.

Required range: 1 <= x <= 10000
Example:

1000

snapshot
string

Snapshot variable from a previous request for the same tag. If you provide this variable, you will iterate over the same dataset as with your previous request(s). If not provided, the underlying data may change while iterating over it as indicated by the snapshot or lastUpdate variable.

Required string length: 24

Response

200
application/json
Get all information about one tag
status
enum<string>
required
Available options:
success
statusCode
number
required
Required range: x > 0
Example:

200

result
object
required