Stuck at space problem
Hugging Face Forums [Unofficial]
April 1, 2026
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
Check snippet :
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}')
Discussion in the ATmosphere