API Reference
Comprehensive documentation for our REST API endpoints
RESTful API
Modern REST API with JSON responses
Real-time Updates
WebSocket support for live data
Secure by Default
JWT authentication & HTTPS
Scalable
Built for high performance
Authentication
POST
/api/auth/loginAuthenticate user and retrieve JWT token
{
"body": {
"email": "string",
"password": "string"
}
}POST
/api/auth/registerRegister a new user account
{
"body": {
"email": "string",
"password": "string",
"name": "string"
}
}Users
GET
/api/usersRetrieve a list of users
{
"query": {
"page": "number",
"limit": "number"
}
}GET
/api/users/:idGet user details by ID
{
"params": {
"id": "string"
}
}Data
POST
/api/data/syncSynchronize data with external sources
{
"body": {
"source": "string",
"options": "object"
}
}