not_found

HTTP 404

No error log found

Type URL

https://developer.hostup.se/errors/not_found

Possible detail messages

No PHP error log was found for ${domain} — the site has not logged any errors.
No WordPress installation was found for ${domain} — the site has no wp-content/plugins directory.
No WordPress plugin named

Example response

{
  "type": "https://developer.hostup.se/errors/not_found",
  "title": "No error log found",
  "status": 404,
  "detail": "No PHP error log was found for ${domain} — the site has not logged any errors.",
  "code": "not_found",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "not_found") {
    // Handle: No error log found
    console.error(problem.detail);
  }
}