Here is a list of our API endpoints designed for developers. These endpoints are essential for integrating our services into your applications.
Authentication
Data Retrieval
Data Modification
Login
To authenticate users, use the following endpoint:
POST /api/login
You need to send a JSON payload with the username and password.
{
"username": "user123",
"password": "securepassword"
}
Login Process
Register
New users can register using this endpoint:
POST /api/register
The payload should include the user's details:
{
"username": "newuser",
"email": "newuser@example.com",
"password": "newpassword"
}
User Registration
User Information
Retrieve user information using:
GET /api/user/{userId}
Replace {userId}
with the actual user ID.
User Details
For more information and additional endpoints, visit our Developer Documentation.