# Clutch Scraper: Companies, Ratings, Reviews & Pricing (`abotapi/clutch-directory-scraper`) Actor

Scrape Clutch company directories and profiles. Get names, ratings, review counts, hourly rate, min project size, employees, location, services, full reviews with reviewer details and per-criterion scores. Search and URL mode, 40+ fields per company.

- **URL**: https://apify.com/abotapi/clutch-directory-scraper.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (community)
- **Categories:** Social media, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 company results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## 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

## Clutch Scraper: Companies, Ratings, Reviews & Pricing

Extract structured company data from Clutch in minutes. This scraper covers any Clutch directory, from web developers and SEO firms to marketing agencies and app developers, and returns 40+ fields per company: ratings, review counts, hourly rate, minimum project size, employee range, location, services, and the full review list with reviewer details and per-criterion scores. It supports both filter search and pasted URLs, and runs on every Apify plan with the default settings.

### Why this scraper?

- Any Clutch directory in one actor: pass any directory slug (web-developers, seo-firms, digital-marketing-agencies, app-developers, ecommerce, and more).
- 40+ fields per company, including rating, review count, hourly rate, minimum project size, employee range, location, services breakdown, founding year, and full contact details.
- Deep reviews: each review carries the quote, date, per-criterion scores (Quality, Schedule, Cost, Willing to Refer), the reviewer's role, industry, location and company size, project size and length, and the full background, objective, solution and results write-up.
- Two ways to start: pick filters (directory, location, company size, service line, sort, minimum rating and reviews) or paste any Clutch directory URL.
- Cost-efficient: keeps per-record cost low.
- Results are de-duplicated by company ID, so you never get the same company twice.

### Data you get

> Sample shape: values are illustrative placeholders, not from a live company.

| Field | Example |
| --- | --- |
| `id` | `00000` |
| `name` | `Sample Agency LLC` |
| `clutchUrl` | `https://clutch.co/profile/sample-agency` |
| `website` | `https://example.com` |
| `rating` | `4.8` |
| `reviewCount` | `42` |
| `minProjectSize` | `$25,000+` |
| `hourlyRate` | `$100 - $149 / hr` |
| `employeeCount` | `50 - 249` |
| `location` | `New York, NY` |
| `verified` | `true` |
| `services` | `["45% Web Development", "45% Web Design", "10% Branding"]` |
| `description` | `Sample Agency builds websites and digital products for mid-market clients.` |
| `yearFounded` | `2010` |
| `contact.address` | `{ "street": "1 Example St", "city": "New York", "region": "NY", "postal_code": "10000", "country": "US" }` |
| `contactDetails` | `{ "emails": ["hello@example.com"], "phone_numbers": ["1-000-000-0000"], "social_media": ["https://www.linkedin.com/company/example"] }` |
| `detailedRatings` | `{ "Quality": 4.8, "Schedule": 4.7, "Cost": 4.8, "Willing to Refer": 4.9 }` |
| `insights` | `{ "industries": { "industries": ["eCommerce", "Financial services"] }, "service_line_reviews": [ ... ] }` |
| `reviews` | `[{ "quote": "Great team to work with.", "rating": 5.0, "reviewer": { ... }, "projectSize": "$10,000 to $49,999" }]` |
| `sourceUrl` | `https://clutch.co/web-developers` |

### How to use

Basic search (web developers worldwide):

```json
{
  "mode": "search",
  "directory": "web-developers",
  "maxPages": 5,
  "maxListings": 100,
  "proxy": { "useApifyProxy": true }
}
````

SEO firms in a location, with full profile details:

```json
{
  "mode": "search",
  "directory": "seo-firms",
  "location": "united-states",
  "fetchDetails": true,
  "maxPages": 3,
  "proxy": { "useApifyProxy": true }
}
```

Web developers filtered by company size, service line, sort, rating and reviews:

```json
{
  "mode": "search",
  "directory": "web-developers",
  "agencySize": "50_-_249",
  "relatedServices": "field_pp_sl_ecommerce",
  "sortBy": "review_rating",
  "minRating": 4,
  "minReviews": 5,
  "maxListings": 200,
  "proxy": { "useApifyProxy": true }
}
```

URL mode (paste any Clutch directory links):

```json
{
  "mode": "url",
  "urls": [
    "https://clutch.co/web-developers",
    "https://clutch.co/digital-marketing-agencies"
  ],
  "maxPages": 5,
  "proxy": { "useApifyProxy": true }
}
```

### Input parameters

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| `mode` | string | `search` | `search` builds a directory URL from filters; `url` uses pasted links. |
| `directory` | string | `web-developers` | Any Clutch directory slug, for example `seo-firms` or `app-developers`. |
| `location` | string | (empty) | Location slug, for example `united-states` or `london`. |
| `agencySize` | string | (empty) | Company-size filter value, for example `50_-_249`. |
| `relatedServices` | string | (empty) | Service-line filter value, for example `field_pp_sl_ecommerce`. |
| `sortBy` | string | `default` | `default`, `review_rating`, `reviews`, or `date`. |
| `minRating` | integer | (none) | Keep companies with at least this overall rating. |
| `minReviews` | integer | (none) | Keep companies with at least this many reviews. |
| `urls` | array | (example) | Clutch directory URLs for URL mode. |
| `fetchDetails` | boolean | `true` | Open each profile for founding year, languages, full reviews and rating breakdown. |
| `maxPages` | integer | (unlimited) | Result pages to walk per directory. Empty or `0` = unlimited; defers to `maxListings`. |
| `maxListings` | integer | `20` | Stop after this many records (0 = unlimited). |
| `proxy` | object | Apify proxy | Connection settings. The default works on all plans. |
| `mcpConnectors` | array | (empty) | Optional MCP connectors to pipe a copy of each record into (Notion, Linear, Airtable, Apify). Authorize one under Apify → Settings → Integrations, then pick it here. Leave empty to skip. |
| `notionParentPageUrl` | string | (empty) | Notion only: URL (or id) of the page under which records are created. Required to enable the Notion export; ignored by other connectors. |
| `maxNotifyListings` | integer | `50` | Cap on items written to each connector per run. Does not affect the dataset. |

### Send results into your apps (MCP connectors)

Optionally pipe the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. This is an extra delivery step **after** the scrape - the Apify dataset is never changed.

**What gets written to the connector:** a condensed, human-readable **summary** of each record - not the full JSON. Each item becomes one entry with a **title** and its key fields flattened to plain text. The **complete record always stays in the Apify dataset**.

1. Authorize a connector once under **Apify → Settings → Integrations** (Notion, Linear, Airtable, or Apify).
2. Select it in the **"Pipe results into your apps"** input field. (If the picker is empty, you haven't authorized a connector yet.)
3. For **Notion**, also set `notionParentPageUrl` to the page where items should be created.

The connection is mediated by Apify's MCP proxy, so this actor never sees your third-party credentials. Leave the field empty to skip.

### Output example

> Sample shape: values are illustrative placeholders, not from a live company.

```json
{
  "id": "00000",
  "name": "Sample Agency LLC",
  "slug": "sample-agency",
  "clutchUrl": "https://clutch.co/profile/sample-agency",
  "website": "https://example.com",
  "logo": "https://img.shgstatic.com/clutch-static-prod/image/scale/50x50/logos/00000.jpg",
  "rating": 4.8,
  "reviewCount": 42,
  "minProjectSize": "$25,000+",
  "hourlyRate": "$100 - $149 / hr",
  "employeeCount": "50 - 249",
  "location": "New York, NY",
  "verified": true,
  "services": ["45% Web Development", "45% Web Design", "10% Branding"],
  "description": "Sample Agency builds websites and digital products for mid-market clients.",
  "yearFounded": 2010,
  "contact": {
    "phone": "1-000-000-0000",
    "location": "New York, NY",
    "address": {
      "street": "1 Example St",
      "city": "New York",
      "region": "NY",
      "postal_code": "10000",
      "country": "US"
    }
  },
  "contactDetails": {
    "emails": ["hello@example.com"],
    "phone_numbers": ["1-000-000-0000"],
    "social_media": ["https://www.linkedin.com/company/example"]
  },
  "detailedRatings": { "Quality": 4.8, "Schedule": 4.7, "Cost": 4.8, "Willing to Refer": 4.9 },
  "insights": {
    "industries": { "industries": ["eCommerce", "Financial services"] },
    "service_line_reviews": [
      { "service_line": "Web Development", "reviews_count": 17, "price_range": "0" }
    ]
  },
  "reviews": [
    {
      "quote": "Great team to work with.",
      "date": "Jan 1, 2026",
      "rating": 5.0,
      "summary": "Sample Agency built a new marketing website.",
      "projectSize": "$10,000 to $49,999",
      "projectLength": "Jan. - June 2026",
      "services": ["Web Design", "Web Development"],
      "detailedRatings": { "Quality": 5.0, "Schedule": 5.0, "Cost": 5.0, "Willing to Refer": 5.0 },
      "reviewer": {
        "position": "Director of Marketing, Sample Client Inc",
        "verified": true,
        "industry": "Financial services",
        "location": "Lynchburg, Virginia",
        "clientSize": "11-50 Employees"
      }
    }
  ],
  "sourceUrl": "https://clutch.co/web-developers"
}
```

### Plan requirement

This actor runs on every Apify plan with the default settings, including the **free plan**, with no extra setup. For very large or repeated jobs you can switch the Proxy field to a different option for wider coverage.

#### Connection settings

The connection works out of the box, so you rarely need to touch it:

- **Default works on all plans.** Leave the Proxy field at its default and the actor runs on the free plan with no extra setup.
- **Free-plan safe.** If you select an option your plan does not include, the run automatically continues on a working connection instead of failing.
- **Hands-off reliability.** The actor handles transient connection issues for you and keeps the run going.

# Actor input Schema

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

How to start the scrape. 'search' builds a directory URL from the filters below. 'url' takes the exact Clutch directory URLs you paste.

## `directory` (type: `string`):

Which Clutch directory to scrape in search mode, for example 'web-developers', 'seo-firms', 'digital-marketing-agencies', 'app-developers', 'ecommerce'. Paste any Clutch directory slug.

## `location` (type: `string`):

Optional location slug to narrow results, for example 'united-states', 'london', 'india'. Leave empty for worldwide.

## `agencySize` (type: `string`):

Optional company-size filter value, for example '10\_-*49' or '50*-\_249' employees. Leave empty for any size.

## `relatedServices` (type: `string`):

Optional service-line filter value, for example 'field\_pp\_sl\_ecommerce'. Leave empty for all services.

## `sortBy` (type: `string`):

Result ordering.

## `minRating` (type: `integer`):

Only keep companies with at least this overall rating (0 to 5).

## `minReviews` (type: `integer`):

Only keep companies with at least this many reviews.

## `urls` (type: `array`):

Paste one or more Clutch directory URLs (for example https://clutch.co/web-developers). Multi-URL supported. Filter fields above are ignored. If a URL already includes a page number, results continue from that page.

## `fetchDetails` (type: `boolean`):

Open each company profile to add founding year, languages, locations, the full review list (quote, feedback, summary, reviewer details, per-criterion scores, project size and length) and the rating breakdown. Adds one HTTP request per record.

## `maxPages` (type: `integer`):

How many result pages to read per directory URL. Does NOT cap the run. Leave empty (or 0) for unlimited pages. The run is bounded by Max records, which is the cap. Set this only if you want to additionally limit how many pages are read per directory.

## `maxListings` (type: `integer`):

THE cap for the run: stop after this many records (default 20). Set to 0 for unlimited.

## `proxy` (type: `object`):

Network connection. The default works on all plans and is recommended. You can switch to a different proxy option for heavier runs.

## `mcpConnectors` (type: `array`):

Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify → Settings → Integrations, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON. The complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com).

## `notionParentPageUrl` (type: `string`):

URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors.

## `maxNotifyListings` (type: `integer`):

Cap on items written to each connector per run. Does not affect the dataset.

## Actor input object example

```json
{
  "mode": "search",
  "directory": "web-developers",
  "sortBy": "default",
  "urls": [
    "https://clutch.co/web-developers"
  ],
  "fetchDetails": true,
  "maxListings": 20,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

# Actor output Schema

## `overview` (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 = {
    "mode": "search",
    "directory": "web-developers",
    "location": "",
    "agencySize": "",
    "relatedServices": "",
    "sortBy": "default",
    "urls": [
        "https://clutch.co/web-developers"
    ],
    "fetchDetails": true,
    "maxListings": 20,
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/clutch-directory-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 = {
    "mode": "search",
    "directory": "web-developers",
    "location": "",
    "agencySize": "",
    "relatedServices": "",
    "sortBy": "default",
    "urls": ["https://clutch.co/web-developers"],
    "fetchDetails": True,
    "maxListings": 20,
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/clutch-directory-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 '{
  "mode": "search",
  "directory": "web-developers",
  "location": "",
  "agencySize": "",
  "relatedServices": "",
  "sortBy": "default",
  "urls": [
    "https://clutch.co/web-developers"
  ],
  "fetchDetails": true,
  "maxListings": 20,
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call abotapi/clutch-directory-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Clutch Scraper: Companies, Ratings, Reviews & Pricing",
        "description": "Scrape Clutch company directories and profiles. Get names, ratings, review counts, hourly rate, min project size, employees, location, services, full reviews with reviewer details and per-criterion scores. Search and URL mode, 40+ fields per company.",
        "version": "1.0",
        "x-build-id": "DQ5qERY3rW5r7uDMW"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~clutch-directory-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-clutch-directory-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/abotapi~clutch-directory-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-clutch-directory-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/abotapi~clutch-directory-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-clutch-directory-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "How to start the scrape. 'search' builds a directory URL from the filters below. 'url' takes the exact Clutch directory URLs you paste.",
                        "default": "search"
                    },
                    "directory": {
                        "title": "Directory",
                        "type": "string",
                        "description": "Which Clutch directory to scrape in search mode, for example 'web-developers', 'seo-firms', 'digital-marketing-agencies', 'app-developers', 'ecommerce'. Paste any Clutch directory slug.",
                        "default": "web-developers"
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Optional location slug to narrow results, for example 'united-states', 'london', 'india'. Leave empty for worldwide."
                    },
                    "agencySize": {
                        "title": "Company size",
                        "type": "string",
                        "description": "Optional company-size filter value, for example '10_-_49' or '50_-_249' employees. Leave empty for any size."
                    },
                    "relatedServices": {
                        "title": "Related service",
                        "type": "string",
                        "description": "Optional service-line filter value, for example 'field_pp_sl_ecommerce'. Leave empty for all services."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "default",
                            "review_rating",
                            "reviews",
                            "date"
                        ],
                        "type": "string",
                        "description": "Result ordering.",
                        "default": "default"
                    },
                    "minRating": {
                        "title": "Min rating",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Only keep companies with at least this overall rating (0 to 5)."
                    },
                    "minReviews": {
                        "title": "Min reviews",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep companies with at least this many reviews."
                    },
                    "urls": {
                        "title": "Clutch directory URLs",
                        "type": "array",
                        "description": "Paste one or more Clutch directory URLs (for example https://clutch.co/web-developers). Multi-URL supported. Filter fields above are ignored. If a URL already includes a page number, results continue from that page.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "fetchDetails": {
                        "title": "Fetch full profile details (richer records)",
                        "type": "boolean",
                        "description": "Open each company profile to add founding year, languages, locations, the full review list (quote, feedback, summary, reviewer details, per-criterion scores, project size and length) and the rating breakdown. Adds one HTTP request per record.",
                        "default": true
                    },
                    "maxPages": {
                        "title": "Max pages per list",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many result pages to read per directory URL. Does NOT cap the run. Leave empty (or 0) for unlimited pages. The run is bounded by Max records, which is the cap. Set this only if you want to additionally limit how many pages are read per directory."
                    },
                    "maxListings": {
                        "title": "Max records",
                        "minimum": 0,
                        "type": "integer",
                        "description": "THE cap for the run: stop after this many records (default 20). Set to 0 for unlimited.",
                        "default": 20
                    },
                    "proxy": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Network connection. The default works on all plans and is recommended. You can switch to a different proxy option for heavier runs.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "mcpConnectors": {
                        "title": "Pipe results into your apps (optional)",
                        "type": "array",
                        "description": "Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify → Settings → Integrations, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON. The complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com)."
                    },
                    "notionParentPageUrl": {
                        "title": "Notion parent page (Notion connector only)",
                        "type": "string",
                        "description": "URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors."
                    },
                    "maxNotifyListings": {
                        "title": "Max items to export per connector",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Cap on items written to each connector per run. Does not affect the dataset.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
