# Softr Solutions Partners Directory Scraper (`tehsnarf/softr-solutions-partners-directory-apify-actor`) Actor

Scrapes the public Softr Partners directory into structured lead records: partner name, tier, services, specialties, industries, budget, location, languages, and contact/profile URLs.

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

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## Softr Solutions Partners Directory Scraper

Scrapes the public [Softr Partners directory](https://www.softr.io/partners) — both the paginated
listing pages and each partner's individual profile page — into structured lead records for
agencies and freelancers certified to build on Softr.

### Use cases

1. **Agency lead generation** — find Softr-certified agencies/freelancers by specialty (Airtable,
   Supabase, HubSpot, etc.), industry served, or budget range for partnership or subcontracting.
2. **Competitive/market research** — analyze the Softr partner ecosystem's service mix, pricing
   tiers, and geographic distribution.
3. **Recruiting** — source freelance no-code/low-code talent with verified public track records
   and named specialties.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `startUrls` | array | `https://www.softr.io/partners` | Directory list pages or direct `/partners/<slug>` profile URLs |
| `maxItems` | integer | 100 | Maximum partner records to emit |
| `maxPages` | integer | 10 | Maximum directory list pages to follow (directory has ~10 pages, ~12 partners/page) |
| `delaySeconds` | number | 1.5 | Polite delay between requests |

### Output fields

| Field | Type | Description |
|---|---|---|
| `partner_name` | string | Public partner/agency or individual name |
| `partner_tier` | string | Visible Softr badge label(s), e.g. "Premium partner", "Enterprise partner" |
| `business_type` | string | "Agency" or "Freelancer" |
| `services` | array | Public service categories offered |
| `specialties` | array | Public tool/data-source specialties (Airtable, Supabase, HubSpot, etc.) |
| `industries` | array | Public industries the partner has served |
| `budget_range` | string | Public "Starting at $X USD" project price |
| `locations` | string | City/country shown on profile |
| `languages` | array | Public languages listed on profile |
| `bio` | string | Public bio/short description text |
| `profile_url` | string | Canonical public profile URL |
| `contact_url` | string | Public "Contact" CTA URL (Softr's own inquiry form) |
| `website_url` | string | Public "Visit website" URL, when exposed |
| `availability_status` | string | Public availability label, e.g. "Accepting new projects" |
| `last_seen_crawl_timestamp` | string | ISO timestamp when the record was scraped |

### Example output

```json
{
  "partner_name": "Base Flows",
  "partner_tier": "Premium partner, Enterprise partner",
  "business_type": "Agency",
  "services": ["AI", "API integrations", "Automation", "Custom code"],
  "specialties": ["Airtable", "Google Sheets", "HubSpot", "Softr Databases", "Supabase"],
  "industries": ["Healthcare", "Real Estate", "Retail"],
  "budget_range": "Starting at $2,000 USD",
  "locations": "Los Angeles, United States",
  "languages": ["English", "Portuguese", "Spanish"],
  "bio": "Trusted by Fortune 500 pharma, NBA franchises, and growing teams across the Americas and Europe.",
  "profile_url": "https://www.softr.io/partners/base-flows",
  "contact_url": "https://partners.softr.app/inquiry?recordId=rec2lHD3hHjoPvzfs",
  "website_url": "https://www.base-flows.com/",
  "availability_status": "Accepting new projects",
  "last_seen_crawl_timestamp": "2026-07-16T12:43:03.980650+00:00"
}
````

### Data scope

Public directory and profile data only. No login, no match-form submission, no personal email
harvesting — `contact_url` is Softr's own public inquiry link, never a scraped email address.

### Pricing

$8.00 per 1,000 results.

| Results | Cost |
|---|---|
| 100 | $0.80 |
| 500 | $4.00 |
| 1,000 | $8.00 |
| 5,000 | $40.00 |

# Actor input Schema

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

Directory list pages (e.g. https://www.softr.io/partners) or direct partner profile URLs (https://www.softr.io/partners/<slug>)

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

Maximum number of partner records to scrape

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

Maximum number of directory list pages to follow when a startUrl is a listing page (the directory has roughly 10 pages)

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

Polite delay between requests to avoid overloading the target

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.softr.io/partners"
    }
  ],
  "maxItems": 100,
  "maxPages": 10,
  "delaySeconds": 1.5
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://www.softr.io/partners"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("tehsnarf/softr-solutions-partners-directory-apify-actor").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 = { "startUrls": [{ "url": "https://www.softr.io/partners" }] }

# Run the Actor and wait for it to finish
run = client.actor("tehsnarf/softr-solutions-partners-directory-apify-actor").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 '{
  "startUrls": [
    {
      "url": "https://www.softr.io/partners"
    }
  ]
}' |
apify call tehsnarf/softr-solutions-partners-directory-apify-actor --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Softr Solutions Partners Directory Scraper",
        "description": "Scrapes the public Softr Partners directory into structured lead records: partner name, tier, services, specialties, industries, budget, location, languages, and contact/profile URLs.",
        "version": "0.0",
        "x-build-id": "H8UyXcZsUD2ZKl30S"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/tehsnarf~softr-solutions-partners-directory-apify-actor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-tehsnarf-softr-solutions-partners-directory-apify-actor",
                "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/tehsnarf~softr-solutions-partners-directory-apify-actor/runs": {
            "post": {
                "operationId": "runs-sync-tehsnarf-softr-solutions-partners-directory-apify-actor",
                "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/tehsnarf~softr-solutions-partners-directory-apify-actor/run-sync": {
            "post": {
                "operationId": "run-sync-tehsnarf-softr-solutions-partners-directory-apify-actor",
                "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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Directory list pages (e.g. https://www.softr.io/partners) or direct partner profile URLs (https://www.softr.io/partners/<slug>)",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of partner records to scrape",
                        "default": 100
                    },
                    "maxPages": {
                        "title": "Max directory pages",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum number of directory list pages to follow when a startUrl is a listing page (the directory has roughly 10 pages)",
                        "default": 10
                    },
                    "delaySeconds": {
                        "title": "Delay between requests (seconds)",
                        "minimum": 0.5,
                        "maximum": 10,
                        "type": "number",
                        "description": "Polite delay between requests to avoid overloading the target",
                        "default": 1.5
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
