Hi @devil-port
You can get the status of whether the user is a paid user using the following function. Accordingly if False, you limit the amount of results for it
async def get_user_status():
client = Actor.apify_client.user()
user_data = await client.get()
return user_data.get('isPaying')