# HuggingFace Models Scraper (`resounding_diplomacy/huggingface-models-scraper`) Actor

Scrapes HuggingFace Hub for AI/ML models — trending, most downloaded, by task type, by author. Extracts model name, author, downloads, likes, task category, tags, pipeline tag, last modified, model card URL. Uses the HuggingFace JSON API for reliable structured data extraction.

- **URL**: https://apify.com/resounding\_diplomacy/huggingface-models-scraper.md
- **Developed by:** [alars num](https://apify.com/resounding_diplomacy) (community)
- **Categories:** AI, Developer tools, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## HuggingFace Models Scraper

Scrape the **HuggingFace Hub** for AI/ML models and get structured data about trending, most downloaded, and most liked models. Filter by task type (text-generation, image-classification, etc.) or by specific authors/organizations.

### Why this Actor?

- **Reliable data** — Uses the [HuggingFace JSON API](https://huggingface.co/docs/api-inference/index) (`/api/models`) instead of HTML scraping, so it won't break when the website UI changes
- **Rich metadata** — Extracts downloads, likes, pipeline tags, languages, licenses, library info, model card availability, and more
- **Flexible filtering** — Filter by sorting mode, task type, and author in a single run
- **Optional model cards** — Fetch full README/model card text for each model when you need descriptions

### Use Cases

- 📊 **Market research** — Track trending models and their download counts
- 🏢 **Competitive analysis** — Monitor models from specific organizations (OpenAI, Meta, Mistral, etc.)
- 🔍 **Model discovery** — Find models for specific tasks (text-generation, image-classification, etc.)
- 📈 **Trend tracking** — Schedule regular runs to track model popularity over time

### Input

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| **mode** | string | `trending` | Sort mode: `trending`, `downloads`, or `likes` |
| **task** | string | *(all)* | Filter by pipeline/task type (e.g. `text-generation`, `image-classification`) |
| **author** | string | *(all)* | Filter by author/org (e.g. `meta-llama`, `openai`, `mistralai`) |
| **maxItems** | integer | `100` | Max models to scrape (1–1000) |
| **includeModelCard** | boolean | `false` | Fetch full model card README text for each model |

### Output

Each dataset item contains:

| Field | Type | Description |
|-------|------|-------------|
| `modelId` | string | Full model identifier (e.g. `meta-llama/Llama-3.1-8B`) |
| `modelName` | string | Model name (last part of ID) |
| `author` | string | Author/organization |
| `url` | string | Link to model page on HuggingFace |
| `downloads` | integer | Total downloads |
| `likes` | integer | Number of likes |
| `pipelineTag` | string | Pipeline/task type |
| `tags` | array | All HuggingFace tags |
| `datasetTags` | array | Associated datasets |
| `languageTags` | array | Supported languages |
| `license` | string | License identifier |
| `libraryName` | string | ML library (transformers, diffusers, etc.) |
| `lastModified` | string | Last modification date |
| `createdAt` | string | Creation date |
| `hasModelCard` | boolean | Whether a README/model card exists |
| `private` | boolean | Whether the model is private |
| `gated` | boolean | Whether access requires approval |
| `modelCard` | string | *(optional)* Full README text |

### Example Output

```json
{
  "modelId": "meta-llama/Meta-Llama-3.1-8B",
  "modelName": "Meta-Llama-3.1-8B",
  "author": "meta-llama",
  "url": "https://huggingface.co/meta-llama/Meta-Llama-3.1-8B",
  "downloads": 8234567,
  "likes": 4521,
  "pipelineTag": "text-generation",
  "tags": ["safetensors", "llama3", "text-generation", "en"],
  "languageTags": ["en"],
  "license": "llama3.1",
  "libraryName": "transformers",
  "lastModified": "2024-07-15T10:30:00.000Z",
  "createdAt": "2024-07-04T00:00:00.000Z",
  "hasModelCard": true,
  "private": false,
  "gated": true
}
````

### Tips

- Combine **mode + task** to find trending models in a specific category
- Use **author** to scrape all models from a specific organization
- Set **includeModelCard** to `true` when you need model descriptions, but expect slower runs
- Use Apify Scheduler for regular tracking runs to build time-series data

### Cost

- **~1 API call** per run (no pagination needed for up to 1000 models)
- Minimal compute — just HTTP + JSON parsing
- Optional model card fetches add 1 request per model when enabled

# Actor input Schema

## `mode` (type: `string`):

How to sort/filter models

## `task` (type: `string`):

Filter models by pipeline/task type. Leave empty to get all tasks.

## `author` (type: `string`):

Filter models by a specific author or organization (e.g. 'openai', 'meta-llama', 'mistralai'). Leave empty for all authors.

## `maxItems` (type: `integer`):

Maximum number of models to scrape (1–1000)

## `includeModelCard` (type: `boolean`):

Fetch and include the full model card README text for each model. Slower but provides detailed descriptions.

## Actor input object example

```json
{
  "mode": "trending",
  "task": "",
  "author": "",
  "maxItems": 100,
  "includeModelCard": false
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("resounding_diplomacy/huggingface-models-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("resounding_diplomacy/huggingface-models-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call resounding_diplomacy/huggingface-models-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=resounding_diplomacy/huggingface-models-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "HuggingFace Models Scraper",
        "description": "Scrapes HuggingFace Hub for AI/ML models — trending, most downloaded, by task type, by author. Extracts model name, author, downloads, likes, task category, tags, pipeline tag, last modified, model card URL. Uses the HuggingFace JSON API for reliable structured data extraction.",
        "version": "1.0",
        "x-build-id": "C89Cc9e9gilTf1L36"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/resounding_diplomacy~huggingface-models-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-resounding_diplomacy-huggingface-models-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/resounding_diplomacy~huggingface-models-scraper/runs": {
            "post": {
                "operationId": "runs-sync-resounding_diplomacy-huggingface-models-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/resounding_diplomacy~huggingface-models-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-resounding_diplomacy-huggingface-models-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "trending",
                            "downloads",
                            "likes"
                        ],
                        "type": "string",
                        "description": "How to sort/filter models",
                        "default": "trending"
                    },
                    "task": {
                        "title": "Task Filter",
                        "enum": [
                            "",
                            "text-generation",
                            "text-classification",
                            "token-classification",
                            "question-answering",
                            "summarization",
                            "translation",
                            "text2text-generation",
                            "fill-mask",
                            "feature-extraction",
                            "image-classification",
                            "object-detection",
                            "image-segmentation",
                            "automatic-speech-recognition",
                            "text-to-speech",
                            "audio-classification",
                            "image-generation",
                            "text-to-image",
                            "image-to-text",
                            "visual-question-answering",
                            "document-question-answering",
                            "image-to-image",
                            "mask-generation",
                            "zero-shot-image-classification",
                            "zero-shot-object-detection",
                            "reinforcement-learning",
                            "robotics",
                            "tabular-classification",
                            "tabular-regression",
                            "image-to-video",
                            "text-to-video",
                            "video-classification",
                            "voice-activity-detection"
                        ],
                        "type": "string",
                        "description": "Filter models by pipeline/task type. Leave empty to get all tasks.",
                        "default": ""
                    },
                    "author": {
                        "title": "Author Filter",
                        "type": "string",
                        "description": "Filter models by a specific author or organization (e.g. 'openai', 'meta-llama', 'mistralai'). Leave empty for all authors.",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "type": "integer",
                        "description": "Maximum number of models to scrape (1–1000)",
                        "default": 100
                    },
                    "includeModelCard": {
                        "title": "Include Model Card Text",
                        "type": "boolean",
                        "description": "Fetch and include the full model card README text for each model. Slower but provides detailed descriptions.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
