Consult API Log
Follow the instructions below to consult the API log. The log can be accessed in two ways:
In the My Hosting.NL Dashboard
- Log in to My Hosting.NL ↗
- Click on your name in the upper right corner and then on Manage API
- Click on the View logs button
Via the Hosting.NL API
Make sure you have an API key available and then use the /logs endpoint to request the entire log:
GET logs/
Or if you want to request only a specific log entry:
GET logs/{id}
{
"success": true,
"data": [
{
"id": 82918,
"ip_address": "1.2.3.4",
"ip_address_fwd": "",
"status": "INFO",
"message": "Command Completed Successfully",
"request": "/logs?limit=100",
"date": "2026-03-03 14:06:23"
},
{
"id": 82917,
"ip_address": "1.2.3.4",
"ip_address_fwd": "",
"status": "INFO",
"message": "Command Completed Successfully",
"request": "/logs?limit=100",
"date": "2026-03-03 14:06:21"
},
{
"id": 82916,
"ip_address": "1.2.3.4",
"ip_address_fwd": "",
"status": "INFO",
"message": "Command Completed Successfully",
"request": "/logs?limit=100",
"date": "2026-03-03 14:06:18"
},
{
"id": 82915,
"ip_address": "1.2.3.4",
"ip_address_fwd": "",
"status": "ERROR",
"message": "No logs found",
"request": "---",
"date": "2026-03-03 14:06:14"
}
]
}