Scrape Apify Store — All Actors with Stats & Pricing avatar

Scrape Apify Store — All Actors with Stats & Pricing

Pricing

from $0.005 / actor start

Go to Apify Store
Scrape Apify Store — All Actors with Stats & Pricing

Scrape Apify Store — All Actors with Stats & Pricing

Extract all 21,000+ actors from Apify Store: titles, descriptions, pricing, stats (total/monthly users, success rate), ratings, categories. MCP/API-ready.

Pricing

from $0.005 / actor start

Rating

0.0

(0)

Developer

Khadin Akbar

Khadin Akbar

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

2 days ago

Last modified

Share

Apify Store Scraper

Extract complete data on all 21,000+ actors from the Apify Store — including titles, descriptions, pricing, stats, ratings, and developer information. Built for market research, competitor analysis, and building comprehensive Apify ecosystem datasets.

No coding required. Just set your filters and run.

Compatible with: Apify Console, REST API, Apify MCP Server (Claude, ChatGPT), Make.com, Zapier, n8n, and direct API access.


What does Apify Store Scraper do?

Apify Store Scraper calls the official Apify Store API with automatic pagination to extract the complete catalog of published actors. Unlike scraping HTML pages, it uses the same JSON API that powers the Apify Console — meaning data is structured, fast, and 100% accurate.

Key features:

  • Extracts all 21,000+ actors in a single run (typically 2–4 minutes)
  • Filter by category, pricing model, or developer
  • Full pricing details including per-event costs and tiered pricing
  • Real-time stats: total users, monthly users, success rate, bookmarks
  • Clean, structured JSON output ready for analysis or import

What data can you extract?

FieldTypeExample
actor_idstring"h5vZMp0iNGoVB58jy"
titlestring"Google Maps Scraper"
full_namestring"compass/crawler-google-places"
urlstring"https://apify.com/compass/crawler-google-places"
descriptionstring"Extract data from thousands of Google Maps..."
developer_usernamestring"compass"
is_official_apifybooleanfalse
categoriesarray["Lead Generation", "Travel"]
pricing_modelstring"PAY_PER_EVENT"
is_freebooleanfalse
entry_price_usdnumber0.004
total_usersnumber329581
monthly_usersnumber20178
success_ratenumber95.1
bookmarksnumber3631
rating_averagenumber4.76
rating_countnumber1063
is_deprecatedbooleanfalse
scraped_atdatetime"2026-03-28T12:00:00Z"

How to use Apify Store Scraper

Quick start (Apify Console)

  1. Click "Try for free" to open the actor in Apify Console
  2. Set your filters (or leave defaults to get ALL actors)
  3. Click "Start" — a full run takes 2–4 minutes
  4. Download results as JSON or CSV

Input options

FieldDefaultDescription
Category NamesAllFilter to specific categories (e.g., "AI", "Lead Generation")
Sort ByPopularOrder results: popular, newest, lastUpdate, title, runs
Pricing ModelsAllFilter: All, FREE, or PAID actors only
Maintained ByAll DevelopersFilter: all developers, or official Apify actors only
Max Items0 (all)Cap results — set to 0 for the complete catalog

Using with AI agents (Claude, ChatGPT)

Connect via the Apify MCP Server and ask naturally:

"Get me all free AI actors from the Apify Store sorted by popularity"

"How many actors are in the Lead Generation category?"

"Find all actors by the Apify team"

The AI will automatically select and run this actor, returning structured results.


How to scrape all 21,000+ Apify Store actors

This is the primary use case. Simply run with default settings:

{
"maxItems": 0,
"sortBy": "popular",
"pricingModels": "All",
"maintainedBy": "All Developers"
}

The actor will paginate through the entire Apify Store API and extract every listing.

Estimated run time: 2–4 minutes for the full catalog.


Use cases

Market Research: Analyze the competitive landscape of Apify actors by category, pricing, and popularity. Identify gaps in the store where no good actor exists yet.

Competitor Analysis: Track how many users and what ratings competing actors have. Monitor new actors entering your niche.

Pricing Benchmarking: See what other developers charge per result across different categories. Use this data to price your own actors competitively.

AI Pipeline Data: Feed the structured actor catalog into Claude, ChatGPT, or a RAG system to answer questions like "what's the best actor for scraping LinkedIn?" or "which actors have the highest success rates?"

Developer Discovery: Find all actors built by a specific developer, or discover top-rated developers in your niche.

Store Monitoring: Schedule daily runs to track which new actors are published and how existing ones change over time.


API & Integration

REST API

curl -X POST "https://api.apify.com/v2/acts/khadinakbar~apify-store-scraper/runs" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"maxItems": 0, "sortBy": "popular"}'

JavaScript / Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('khadinakbar/apify-store-scraper').call({
maxItems: 0,
sortBy: 'popular',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Scraped ${items.length} actors`);

Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_TOKEN')
run = client.actor('khadinakbar/apify-store-scraper').call(
run_input={'maxItems': 0, 'sortBy': 'popular'}
)
items = list(client.dataset(run['defaultDatasetId']).iterate_items())
print(f'Scraped {len(items)} actors')

Integrations: Apify MCP Server, LangChain, Make.com, Zapier, n8n, Google Sheets, BigQuery


FAQ

Q: How many actors are in the Apify Store? A: As of early 2026, the store has 21,000+ actors. This number grows daily as new actors are published by the community.

Q: How long does a full run take? A: Approximately 2–4 minutes for the full catalog. The actor uses batch API calls of 100 actors per request with polite rate limiting.

Q: Can I filter by specific categories? A: Yes — set the Category Names field to any Apify Store category such as "AI", "Lead Generation", "Social Media", "E-commerce", "Developer Tools", "SEO Tools", etc.

Q: Does it capture pricing details for pay-per-event actors? A: Yes. For each actor, it extracts the pricing model, entry price (lowest tier), and all pricing events with their descriptions and prices.

Q: Can I schedule this to run daily for monitoring? A: Yes — use Apify's built-in scheduler to run daily, weekly, or at any interval. Combined with a webhook, you can get notified whenever new high-rated actors appear.

Q: Is this legal? A: Yes. This actor uses the official Apify Store public API — the same API that powers the Apify Console. It only accesses publicly available data.

Q: Can I use this with Claude or ChatGPT? A: Yes — connect via the Apify MCP Server and ask in natural language. The AI will run this actor and analyze the results.