# LVNG Documentation

Build intelligent applications with the LVNG platform. Deploy AI agents, orchestrate workflows, manage knowledge graphs, and enable real-time communication -- all through a unified API.

## Quick Start

Get up and running in minutes. Authenticate with your API key and make your first request.

```bash
curl -X POST https://api.lvng.ai/api/v2/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"message": "Hello, LVNG!", "platform": "api"}'
```

## Sections

- **Getting Started** -- Set up authentication, make your first API call, and understand rate limits.
- **API Reference** -- Complete reference for all REST API endpoints -- chat, messages, agents, workflows, and more.
- **Real-time Events** -- WebSocket events for live messaging, presence, typing indicators, and more.
- **Guides** -- Step-by-step tutorials for Discord bots, webhooks, and platform integrations.
- **Error Codes** -- HTTP status codes, error response format, and troubleshooting.
- **SDKs** -- Client libraries and SDK documentation for TypeScript, Python, and more.

## Base URL

All API requests are made to the following base URL:

```
https://api.lvng.ai/api
```

All endpoints require HTTPS. HTTP requests will be rejected.
