# Hugging Face Most Downloaded Models Scraper

**Use case:** 

Scrape the most downloaded Hugging Face models with name, author, downloads, likes, tags, and URL. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 25,
  "query": "bert",
  "task": "text-classification",
  "library": "transformers",
  "license": "apache-2.0",
  "language": "en",
  "sort": "downloads",
  "direction": "desc"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image URL",
    "format": "image"
  },
  "id": {
    "label": "Model ID",
    "format": "text"
  },
  "name": {
    "label": "Model Name",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "downloads": {
    "label": "Downloads",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "task": {
    "label": "Task",
    "format": "text"
  },
  "library": {
    "label": "Library",
    "format": "text"
  },
  "license": {
    "label": "License",
    "format": "text"
  },
  "lastModified": {
    "label": "Last Modified",
    "format": "date"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "description": {
    "label": "Description"
  },
  "private": {
    "label": "Private"
  },
  "gated": {
    "label": "Gated"
  },
  "disabled": {
    "label": "Disabled"
  },
  "sha": {
    "label": "Sha"
  },
  "language": {
    "label": "Language"
  },
  "datasets": {
    "label": "Datasets"
  },
  "metrics": {
    "label": "Metrics"
  },
  "tags": {
    "label": "Tags"
  },
  "files": {
    "label": "Files"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Hugging Face Model Scraper](https://apify.com/parseforge/hugging-face-model-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/hugging-face-model-scraper) to learn more, explore other use cases, and run it yourself.