curl --location --request GET 'https://dash.ryzehosting.com/api/v2//server/ddos/attack' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"uuid": "019b1fc5-83e5-81b1-9592-1537b03ad483",
"attack_id": 123
}'{
"response": "Attack details retrieved successfully",
"state": "success",
"code": 200,
"data": {
"uuid": "019b1fc5-83e5-81b1-9592-1537b03ad483",
"attack": {
"attack_id": 123,
"ip": "185.1.2.3",
"started_at": "2026-06-08T10:00:00+02:00",
"ended_at": null,
"maximum_peak": "1.2 Gbps",
"types": [
"UDP"
],
"ongoing": true
},
"ports": [
{
"port": 25565,
"protocol_name": "TCP",
"packets_peak": 50000
}
]
}
}