import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
waap_time_series_attacks = client.waap.ip_info.get_attack_time_series(
ip="192.168.1.1",
)
print(waap_time_series_attacks)
Retrieve a time-series of attacks from a specified IP
Retrieve a time-series of attacks originating from a specified IP address.
GET
/
waap
/
v1
/
ip-info
/
attack-time-series
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
waap_time_series_attacks = client.waap.ip_info.get_attack_time_series(
ip="192.168.1.1",
)
print(waap_time_series_attacks)