How can i know the total any of any model?

How can i know the total downloads of any model?

models = hf_api.list_models()

for model in models:
downloads = model.downloads if hasattr(model, ‘downloads’) else 0

is the download count returned by list_models APIs are total download of last month download count ?