Endpoints

Endpoints

1) Generate a token

GET /generate?key=<api-key>[&info=true] Parameters in brackets are optional.

Returns a fresh alt token you can use to log in. Works only for plans with API access.

Sample request

https://api.thealtening.com/v2/generate?key=<api-key>

With extra info

https://api.thealtening.com/v2/generate?key=<api-key>&info=true

Response

{
  "token": "[email protected]",         // Alt token
  "password": "anything",             // Any password works; provided for convenience
  "username": "Examp**",              // Last two characters hidden
  "limit": false,                     // True if daily limit reached (100+ alts/24h, see plan)
  "skin": "555...",                   // Use with CDN to fetch skin images
  "info": {                           // Included only if info=true (object may be empty)
    "hypixel.lvl": "10",
    "hypixel.rank": "MVP",
    "mineplex.lvl": "10",
    "mineplex.rank": "LEGEND",
    "labymod.cape": "true",
    "5zig.cape": "true"
  }
}

Skin CDN helper


2) Check license

GET /license?key=<api-key>

Use this to validate an API key and read its plan and expiry.

Sample request

Response


3) Inspect a token

GET /info?key=<api-key>&token=<alt-token>

Check if a specific alt token is valid and when it expires.

Sample request

Response


4) Favorite a token (Premium only)

GET /favorite?key=<api-key>&token=<alt-token>

Marks the provided token as a favorite. The token must belong to your account and must not be expired. Requires a Premium license. Non-eligible requests return 403 Forbidden. Send the request again as a toggle to undo it.

Response


5) List favorites (Premium only)

GET /favorites?key=<api-key>

Returns an array of your favorited tokens. Each item follows the same shape as Generate responses.

Response


6) Private a token (Premium only)

GET /private?key=<api-key>&token=<alt-token>

Marks the provided token as private. The token must belong to your account and must not be expired. Requires a Premium license. Send the request again as a toggle to undo it.

Response


7) List privates (Premium only)

GET /privates?key=<api-key>

Returns an array of your private tokens. Each item follows the same shape as Generate responses.

Response

Last updated