If you are on the "Beta" branch, try switching to "Stable," or vice-versa, to rule out a client-specific bug.

Your login session has expired on the server side, but the client interface still looks active. When you try to pull user stats, the server rejects the request.

If tokens expire during long-running jobs:

# Example Python client with fallback try: response = capi.get_userstats(job_id, quality='extra2') except ServerResponseFailed as e: if '2 extra quality' in str(e): # Fallback to normal quality response = capi.get_userstats(job_id, quality='normal') logger.warning("Extra quality stats unavailable, using normal.")