Lurio reports
"meta": {
"total": 122170,
"per_page": 100,
"current_page": 1,
"last_page": 1222,
"first_page": 1
},
Fields with * are required.
Get reports
Get all reports of a lurio between two dates.
GET
https://api.control.serenicity.fr/api/v1/lurios/:lurio_id/reports
Return list of reports.
Path Parameters
Name
Type
Description
lurio_id*
Integer
Query Parameters
Name
Type
Description
from*
2024-01-01T00:00:00Z
Start date in ISO format
to*
2024-02-01T00:00:00Z
End date in ISO format
page
1
By default 1. The page has to be between last_page
and first_page
.
per_page
100
Number of flux per page. 100 by default.
{
"meta": {
"total": 70244,
"per_page": 2,
"current_page": 1,
"last_page": 7025,
"first_page": 1
},
"data": [
{
"ip": "123.123.123.123",
"created_at": "2023-11-23T23:11:19.763Z",
"threat": {
"name": "bruteforce",
"type": "rdp"
}
},
{
"ip": "11.22.33.44",
"created_at": "2023-11-23T23:13:40.763Z",
"threat": {
"name": "bruteforce",
"type": "ftp"
}
}
]
}
Last updated