계정 로그

GET https://urlaz.net/api/logs/
curl --request GET \
--url 'https://urlaz.net/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
매개변수 세부정보 설명
page Optional 정수 결과를 원하는 페이지 번호는 .입니다. 기본값은 1.
results_per_page Optional 정수 페이지당 원하는 결과 수. 허용되는 값은 다음과 같습니다. 10 , 25 , 50 , 100 , 250 , 500 , 1000. 기본값은 25.
{ "data": [ { "type": "login.success", "ip": "127.0.0.1", "device_type": "mobile", "continent_code": "EU", "country_code": "IT", "city_name": "Rome", "datetime": "2025-03-13 00:33:16" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://urlaz.net/api/logs?&page=1", "last": "https://urlaz.net/api/logs?&page=1", "next": null, "prev": null, "self": "https://urlaz.net/api/logs?&page=1" } }