ModelScope Models Scraper
parseforge/modelscope-models-scraper
AIDeveloper toolsOther
Scrapes ModelScope public model listings from a search query. Returns each model as a flat row with downloads, stars, task, and organization metadata.
- Total users
- 2
- Monthly active
- 1
- Total runs
- 49
- Bookmarked
- 0
- Rating
- Not rated yet
- Last modified
- 9 days ago
Overview
ModelScope Models Scraper
Scrape ModelScope model listings by search query, task, or organization, up to a million per run. Every model comes with its downloads, stars, last update time, and task tags. No API key required. Export to CSV, JSON, Excel, or XML.
ModelScope's web catalog holds thousands of public machine learning models, but browsing it manually is slow and you cannot export a structured list. This Actor reads the public search API directly, lets you filter by task or organization, and returns every matching model in one flat table.
| Who uses it | What they scrape ModelScope for |
|---|---|
| ML researchers | Survey which model architectures are trending for a given task. |
| Developer tool builders | Populate a model directory with up-to-date metadata from ModelScope. |
| Technical product managers | Track competitor model releases and their adoption metrics. |
What it does
This Actor collects ModelScope model listings from a free-text search query and returns each model as a flat row.
- ๐ Free-text search: supply any query and the Actor sends it straight to the ModelScope search API.
- ๐ท๏ธ Task filter: narrow results to a specific ML task like text-generation or image-classification.
- ๐ข Organization filter: limit the scrape to models published by one organization slug.
- ๐ Sort control: order results by downloads, stars, or recent updates before the limit is applied.
Results export to CSV, JSON, Excel, or XML, or straight from the API.
What you can do with ModelScope data
๐ Track model popularity.
A research lab scrapes text-to-image models sorted by downloads every week to spot rising architectures.
๐๏ธ Build a model catalog.
A startup scrapes all models for the text-generation task and loads them into their internal search tool.
๐ข Monitor an organization.
An investor scrapes one company's ModelScope page daily to see new model releases and their early star counts.
Why choose this scraper
| What you get | |
|---|---|
| No API key | Reads the same public endpoint the website uses, so you skip registration. |
| Flat output | Every model lands as one row with a fixed schema, ready for pandas or Excel. |
| Full scale | Paid users can pull up to 1,000,000 models in a single run. |
How it compares
No other Store actor targets ModelScope the same way, so the honest comparison is with the alternatives teams actually weigh.
| ModelScope Models Scraper | Build it in-house | By hand | |
|---|---|---|---|
| Setup | Run it now, zero config | Days of engineering | None, but hours per pull |
| When ModelScope changes | Maintained for you | You fix it | You re-learn the page |
| Proxies, retries, anti-bot | Built in | Your problem | Browser only |
| Output | Fixed JSON schema, CSV/Excel export | Whatever you build | Copy-paste |
| Cost | Pay per result | Engineering time | Analyst hours |
Configure the run
Drive the Actor from a search query, and optionally narrow results by task or organization. Filters are sent to the API so only matching models reach your dataset. The Input tab lists every parameter.
A first run with the defaults:
{
"maxItems": 10
}
A larger pull:
{
"maxItems": 200
}
Pricing
Pay-per-result: $0.005 per result collected. You pay only for the results written to your dataset.
| Results collected | Approximate cost |
|---|---|
| 100 results | $0.50 |
| 1,000 results | $5.00 |
| 10,000 results | $50.00 |
New Apify accounts start with $5 in free credit.
Free users
Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.
Run it
- Create a free Apify account with $5 in credit.
- Open the ModelScope Models Scraper.
- Set your inputs and any filters, then click Start.
- Export the results as CSV, Excel, JSON, or XML from the Dataset tab.
Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.
Use with AI agents (MCP)
Give an AI agent live access to ModelScope through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:
claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/modelscope-models-scraper"
Then prompt it in plain language to run the scraper and read back the results.
Troubleshooting
Why am I getting no results?
Check that your search query, task name, and organization slug are spelled exactly as they appear on ModelScope. A typo in any filter will return an empty list.
Why did the run stop at 10 models?
Free Apify accounts are limited to 10 items as a preview. Upgrade to a paid plan to raise the maxItems limit up to 1,000,000.
The sort order looks wrong.
The Actor sends your chosen sort to the API. If results seem off, try a different sort value or verify the API is respecting it by checking the raw response in the run log.
I got fewer models than my maxItems setting.
The API returned fewer results than you requested. This happens when the search query and filters match a small number of models. Try broadening your search.
FAQ
| Question | Answer |
|---|---|
| Do I need a ModelScope account or API key? | No. The Actor calls the same public search API that the ModelScope website uses, so no login or key is required. |
| How many models can I scrape? | Free Apify users are limited to 10 models as a preview. Paid users can set maxItems up to 1,000,000. |
| What does the sort option do? | It tells the ModelScope API to order results by downloads, stars, or last modified date before the Actor stops at your maxItems limit. |
| Can I filter by a specific ML task? | Yes. Use the Task input field with a ModelScope task name like text-generation, image-classification, or object-detection. |
| How do I find the correct organization slug? | Visit the organization's page on ModelScope. The slug is the last part of the URL, for example damo in modelscope.cn/organization/damo. |
| What output formats are supported? | You can export your dataset to CSV, JSON, Excel, or XML from the Apify platform. |
| Does the Actor follow pagination? | Yes. It keeps requesting pages from the API until it reaches your maxItems limit or the API runs out of results. |
| Can I scrape models without a search query? | A search query is the main driver. To browse broadly, try a single broad keyword or leave it empty if the API allows, then use the task or organization filters. |
| Is the data real-time? | The Actor reads the live ModelScope API on each run, so you get the current downloads, stars, and update timestamps. |
Related actors
Browse the full ParseForge collection for more scrapers.
๐ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.
โ ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by ModelScope. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.
Input
| Field | Type | What it does | Default |
|---|---|---|---|
| search | string | Free-text search query for ModelScope models. Trimmed before being sent to the API. | not set |
| maxItems | integer | Free users are limited to 10 models (preview). Paid users can collect up to 1,000,000 models. | 10 |
| sort | string (4 options) | Sort order for the API. | Default |
| task | string | Filter by ModelScope task name (e.g. text-generation, image-classification). | not set |
| organization | string | Filter by organization slug. | not set |
Pricing
from $4.52 per 1,000 results
| Charged for | What it is | Price each |
|---|---|---|
| result | Single result in the default dataset. | $0.00452 to $0.005 |
Tiered: the lower figure is the price on a higher Apify plan. Billing and the free credit live on Apify.
API
One POST returns the dataset directly. Same shape for every scraper in the library, so swapping the slug is the only change.
curl -X POST "https://api.apify.com/v2/acts/parseforge~modelscope-models-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"helloWorld": 123
}' Examples
Input that runs as-is.
{
"helloWorld": 123
} Reviews
No reviews yet. Be the first.
Issues
We build and maintain this scraper, so a problem with it comes to us. Report it on the Apify listing and the thread stays attached to the scraper where the next person can find it: open an issue.
Broken and urgent, or you would rather not post in public? Write to parseforge@protonmail.com and it reaches the people who wrote it.
