Skip to content
Docs

Getting started

The XelonNet backend exposes a small, stable HTTP surface. Point the frontend at your instance by setting NEXT_PUBLIC_API_URL.

GET/

Health check. Returns the service status.

{
  "status": "running",
  "service": "xelonnet backend"
}
POST/chat

Send a message and receive a completion.

Request

{
  "message": "Hello"
}

Response

{
  "answer": "..."
}

Looking for the full endpoint reference? See the API reference.