Files
itd-sdk/itd/etc.py
2026-01-29 22:17:28 +03:00

10 lines
307 B
Python

from itd.request import fetch
def get_top_clans(token: str):
return fetch(token, 'get', 'users/stats/top-clans')
def get_who_to_follow(token: str):
return fetch(token, 'get', 'users/suggestions/who-to-follow')
def get_platform_status(token: str):
return fetch(token, 'get', 'platform/status')