Main Endpoints

POST /api/chat

Send a message to the assistant and receive a response.

{
  "message": "Your message here",
  "session_id": "optional-session-id",
  "stream": false
}

GET /api/sessions

List the user's active sessions.

POST /api/skills/{skill}/execute

Execute a specific skill action.

Authentication

The API uses Bearer tokens for authentication. Include the header Authorization: Bearer YOUR_TOKEN in all requests.

View full documentation on GitHub