For the complete documentation index, see llms.txt. This page is also available as Markdown.

Profiles

Get a user profile details

GET https://yourwebsite.com/api/users/?userID=<user_id>

GET https://yourwebsite.com/api/users/?username=<username>

{
    "id": "2",
    "username": "leaderos",
    "email": "test@gmail.com",
    "credit": "150.00",
    "isVerified": "1",
    "authStatus": "0",
    "creationIP": "1.1.1.1",
    "creationDate": "2022-09-15 10:41:44",
    "linkedAccounts": [
        "discord": "111111111111" // Linked Discord User ID
    ]
}
{
    "status": false,
    "error": "USER_NOT_FOUND",
    "message": "User not found!"
}

Last updated