lilyweight
  • API Documentation
Powered by GitBook
On this page

Was this helpful?

API Documentation

Last updated 3 years ago

Was this helpful?

If you are using JavaScript I recommend using the instead of the API. You can take a look at the Cloudflare Worker source and the npm package source .

Get Weight

GET https://lily.antonio32a.com/:player

Get player's lily weight.

Path Parameters

Name
Type
Description

id

string

Either player's Minecraft username or UUID.

Query Parameters

Name
Type
Description

key

string

Your Hypixel API key.

returnUsername

boolean

Whether it should return the player's username. This usually requires an extra GET request to Mojang's API so it will be slower. Defaults to false.

{
    "success": true,
    "data": {
        "username": "SirDesco",
        "uuid": "e710ff36fe334c0e8401bda9d24fa121",
        "total": 14447.57066158911,
        "skill": {
            "base": 10346.795817290036,
            "overflow": 173.65681281116142
        },
        "catacombs": {
            "completion": {
                "base": 1232.676833730818,
                "master": 532.7492424907152
            },
            "experience": 1058.0313866996628
        },
        "slayer": 1103.6605685667157
    }
}
{
    "success": false,
    "error": "Invalid API key or player provided."
}

npm package
here
here