Skip to main content

🎉 Raging Echoes League

If you're looking to use our League API instead, you need to modify the code examples to the League API URLs.

Example (cURL):

curl -X GET https://api.wiseoldman.net/league/players/zezima \
-H "Content-Type: application/json"

Example (JavaScript/TypeScript):

const { WOMClient } = require('@wise-old-man/utils');

const client = new WOMClient({
baseAPIUrl: 'https://api.wiseoldman.net/league'
});

const playerDetails = await client.players.getPlayerDetails('zezima');