LogInformant documentation

Practical integration guides for Serilog, Winston, Python logging, Monolog, Logback, raw HTTP ingest, and AI log analysis.

New here? Start with Getting Started to create an application, copy the right API key, and verify your first events in the dashboard.

Choose the integration path that matches your stack

API basics

Every integration ultimately sends events to the same ingest endpoint:

POST https://app.loginformant.com/api/ingest/batch
X-API-Key: YOUR-API-KEY

{
  "logs": [
    {
      "timestamp": "2026-04-08T18:30:00Z",
      "level": "Error",
      "message": "Something went wrong",
      "source": "MyApp.OrderService",
      "exception": "System.NullReferenceException: ...",
      "properties": {
        "userId": 42
      }
    }
  ]
}

Supported levels: Debug, Information, Warning, Error, and Fatal.