# Airtable Services Partners Directory Actor (`tehsnarf/airtable-services-partners-directory`) Actor

Scrapes Airtable Services Partner directory cards and public profile pages into structured partner lead records.

- **URL**: https://apify.com/tehsnarf/airtable-services-partners-directory.md
- **Developed by:** [Chris Hoover](https://apify.com/tehsnarf) (community)
- **Categories:** Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $7.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

## Airtable Services Partners Directory Actor

Scrapes the public Airtable Services Partner directory into structured partner lead records.

### What it does

- Collects partner cards from the public directory.
- Follows public partner profile pages for richer metadata.
- Captures visible location, service labels, CTA links, and profile copy.

### Use cases

1. Build a partner lead list for Airtable implementation outreach.
2. Track regional or niche Airtable consultants for vendor research.
3. Monitor public partner profiles for badge, rating, and service changes.

### Input

- `startUrls`: Airtable directory, pagination, or partner profile URLs
- `maxItems`: maximum records to emit
- `maxPages`: maximum listing pages to follow
- `delaySeconds`: polite pause between requests

### Output fields

| Field | Description |
|---|---|
| `partner_name` | Public partner name |
| `profile_url` | Canonical partner profile URL |
| `source_url` | Exact page URL that was scraped |
| `logo_url` | Partner logo image URL |
| `tier_badge` | Public tier or badge text |
| `region_location` | Public location text |
| `service_categories` | Public service/category labels |
| `short_description` | Listing-card summary text |
| `website_cta_url` | Public website CTA URL |
| `contact_cta_url` | Public contact CTA URL |
| `profile_text` | Visible profile copy and section text |
| `rating` | Visible star rating |
| `review_count` | Visible review count |

### Example output

```json
{
  "partner_name": "Optimize IS",
  "profile_url": "https://ecosystem.airtable.com/consultants/partner/optimize-is",
  "tier_badge": "Gold Services Partner",
  "region_location": "United States, California, San Francisco; United States, New York, New York City; United Kingdom, England, London; United Arab Emirates, Dubai, Dubai; Australia, New South Wales, Sydney",
  "service_categories": [
    "Base Design",
    "Implementation",
    "Change Management",
    "Custom Extension & Scripts",
    "Custom Integration"
  ],
  "website_cta_url": "https://www.optimizeis.com",
  "rating": 5.0,
  "review_count": 256
}
```

### Pricing

$7.99 per 1,000 results

Example costs:

- 100 results = $0.80
- 500 results = $4.00
- 1,000 results = $7.99
- 5,000 results = $39.95

### Notes

- Public HTML only, no login required.
- Uses a 1 second polite pause between requests by default.
- Works on listing pages and direct partner profile URLs.

# Actor input Schema

## `startUrls` (type: `array`):

Airtable directory, pagination, or partner profile URLs to scrape.

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

Maximum number of partner records to emit.

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

Maximum number of listing pages to follow from a directory page.

## `delaySeconds` (type: `number`):

Polite pause between page requests.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://ecosystem.airtable.com/consultants"
    }
  ],
  "maxItems": 100,
  "maxPages": 5,
  "delaySeconds": 1
}
```

# 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("tehsnarf/airtable-services-partners-directory").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("tehsnarf/airtable-services-partners-directory").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 tehsnarf/airtable-services-partners-directory --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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