Stuck at space problem Hugging Face Spaces users report that their spaces are being auto-paused after 15 minutes of activity, with no logs and no ability to restart, forcing deletion and recreation. One user's space has been paused for five days and shows an "abusive" error despite working for months, while similar spaces remain unaffected. The issue can be resolved via the Hugging Face API. Now, it’s worked, but online 15 mins, after build completed, space work in 15 mins then the space auto paused, no log, can’t restart only one action can do is delete the space and recreat. But it’s only work 15 mins. This is patmcgee’s space @ Space stuck on "Building" for 9+ hours, no logs visible after Factory Rebuild - 6 by John6666 https://discuss.huggingface.co/t/space-stuck-on-building-for-9-hours-no-logs-visible-after-factory-rebuild/174759/6 ←– he got that problem too Same for me it’s been 5 days since one of my space got Paused. And Restarting does not help error 503 . Using a little snippet from someone else i was able to see the error and basicly it’s marked as “abusive“. Tho it was working for more than 4 month and also i have others space with very similar code but different models, and thoses are not “Paused”. You can check the spaces at : https://huggingface.co/IbarakiDouji https://huggingface.co/IbarakiDouji Check snippet : python from huggingface hub import login; login from huggingface hub import HfApi api = HfApi spaces = list api.list spaces author=‘IbarakiDouji’ change with your name for s in spaces: try: rt = api.get space runtime s.id error = rt.raw.get ‘errorMessage’, ‘None’ print f’{s.id}: stage={rt.stage}, error={error}‘ except Exception as e: print f’{s.id}: Error getting runtime: {e}' This issue can be resolved by utilizing the HuggingFace API