API Documentation
Welcome to the API documentation for osu!somtum. Here, you'll find all the information you need to integrate our services into your applications.
Endpoints
GET /api/users
Retrieves a list of users.
// Example Response:
[
{ id: 1, username: "user1" },
{ id: 2, username: "user2" }
]
GET /api/users/{id}
Retrieves a specific user by ID.
// Example Response:
{ id: 1, username: "user1" }