Cuenta logs
GET https://alertadecaida.com/api/logs/
curl --request GET \
--url 'https://alertadecaida.com/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://alertadecaida.com/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
Parameters | Detalles | Descripción |
---|---|---|
page | Opcional Integer | El página number ese vos want results de. Defaults a < código > 1 < / código >. |
results_per_page | Opcional Integer | How many results vos want per página. Allowed values son: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Defaults a < código > 25 < / código >. |
{
"data": [
{
"type": "login.success",
"ip": "127.0.0.1",
"device_type": "mobile",
"continent_code": "EU",
"country_code": "IT",
"city_name": "Rome",
"datetime": "2025-09-20 18:47:01"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://alertadecaida.com/api/logs?&page=1",
"last": "https://alertadecaida.com/api/logs?&page=1",
"next": null,
"prev": null,
"self": "https://alertadecaida.com/api/logs?&page=1"
}
}