# GetApp Search Scraper (`easyapi/getapp-search-scraper`) Actor

Search GetApp business software by keyword. Extract product names, ratings, reviews, features, and URLs from search results. 📊

- **URL**: https://apify.com/easyapi/getapp-search-scraper.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** Lead generation, Integrations, Other
- **Stats:** 1 total users, 0 monthly users, 70.4% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.99 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## GetApp Search Scraper

Search and export business software listings from [GetApp](https://www.getapp.com), a leading B2B software discovery platform owned by Gartner Digital Markets. Enter any keyword—such as CRM, marketing automation, or project management—and collect structured product data with ratings, reviews, and feature highlights.

Perfect for teams that need reliable software market intelligence without manually browsing search result pages.

### Who Is This For?

- **Sales & marketing teams** researching competitors and category leaders
- **Analysts & consultants** building software market reports
- **Startup founders** validating positioning and finding alternatives
- **Procurement teams** comparing vendors before shortlisting
- **Affiliate marketers & bloggers** creating software comparison content

### What You Can Do

- Search GetApp by keyword to discover software in any niche
- Collect product names, descriptions, ratings, and review counts
- Extract popular features and category information
- Identify premium listings and category leaders
- Batch multiple keywords to map an entire software vertical in one run

### What You Get

Each result includes useful business fields such as:

- Product name, tagline, and description
- GetApp product page link and logo URL
- Average rating and total review count
- Star breakdown and sub-scores (when available)
- Popular features and category details
- Premium and category leader flags
- Search keyword and collection timestamp

### How to Use

1. Enter a **search keyword** (for example: `crm`, `marketing`, `help desk`)
2. Choose how many products you want to collect
3. Run the Actor and export your dataset

Need broader coverage? Add multiple keywords to search several topics in one job.

### Input Example

```json
{
    "query": "crm",
    "maxItems": 100
}
```

### Output Example

Each search result is saved as one dataset record:

```json
{
    "query": "crm",
    "page": 1,
    "perPage": 25,
    "totalCount": 500,
    "searchUrl": "https://www.getapp.com/search/?q=crm",
    "itemUrl": "https://www.getapp.com/customer-management-software/a/zoho-crm/",
    "scrapedAt": "2026-07-09T06:00:36.263Z",
    "productId": "2143ac98-b65c-4bb1-ae6b-a6d200b7a22f",
    "productName": "Zoho CRM",
    "slug": "zoho-crm",
    "logoUrl": "https://gdm-catalog-fmapi-prod.imgix.net/ProductLogo/82a342f4.png",
    "tagline": "Customer relationship management solution",
    "productDescription": "Zoho CRM is a cloud-based CRM solution that helps businesses of all sizes close deals smarter, better and faster.",
    "ratingAvg": 4.31,
    "numReviews": 6967,
    "isPremium": true,
    "isCategoryLeader": false,
    "popularFeatures": ["Lead Management", "Contact Management", "Pipeline Management"],
    "categoryName": "CRM",
    "categoryUrl": "https://www.getapp.com/customer-management-software/crm/"
}
```

### Popular Use Cases

- **Software discovery** — Quickly find options in crowded categories
- **Competitor benchmarking** — Compare ratings and review counts across vendors
- **Content marketing** — Fuel "best software" posts with structured data
- **Market mapping** — Track how a software niche is evolving
- **Vendor shortlisting** — Build comparison spreadsheets from search results
- **Sales intelligence** — Identify trending products in target industries

### Why GetApp?

GetApp is part of Gartner Digital Markets alongside Capterra and Software Advice. Reviews are verified, and ratings include sub-scores for features, ease of use, and support—not just a single number. This Actor turns GetApp search into actionable data so you can research faster and make better software decisions.

# Actor input Schema

## `query` (type: `string`):

Keyword to search on GetApp, e.g. crm, marketing, project management

## `queries` (type: `array`):

Optional batch of search keywords. If provided, query is ignored.

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

Maximum number of search results to collect

## `proxyConfiguration` (type: `object`):

Proxy settings for the actor

## Actor input object example

```json
{
  "query": "crm",
  "queries": [],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "query": "crm",
    "queries": [],
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/getapp-search-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 = {
    "query": "crm",
    "queries": [],
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("easyapi/getapp-search-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 '{
  "query": "crm",
  "queries": [],
  "maxItems": 100
}' |
apify call easyapi/getapp-search-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/JPmlesKyTDHp51QdF/builds/jIDcgjOGIzclqpECf/openapi.json
