API Reference | LogNexis Developer Documentation

API Reference

Integrate directly with LogNexis via our REST API. You can ingest logs, query your analytics, and extract machine-learning insights directly into your internal tooling.

Base URL

https://api.lognexis.online/v1
POST/auth/login

Authentication

Exchange your user credentials for a secure JWT token. You will need this token to access any of the Dashboard API endpoints.

Body Parameters

  • emailstringRequired

    Your registered email address

  • passwordstringRequired

    Your account password

Example Request

curl -X POST https://api.lognexis.online/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com",
    "password": "your-password"
  }'

Example Response

200 OK
{
  "token": "eyJhbGciOiJIUzI1NiIs...",
  "user": {
    "id": "user_123",
    "name": "John Doe",
    "email": "user@example.com",
    "plan": "free"
  }
}