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.
Endpoints
Base URL
https://api.lognexis.online/v1POST
/auth/loginAuthentication
Exchange your user credentials for a secure JWT token. You will need this token to access any of the Dashboard API endpoints.
Body Parameters
emailstringRequiredYour registered email address
passwordstringRequiredYour 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"
}
}