# Wellfound full job details (it works) (`dionysus_way/wellfound`) Actor

Extract Wellfound.com full job descriptions, required skills, and salary ranges. Capture deep startup insights from jobs or role links: funding rounds, founder bios, tagline, company size, perks, visa status, and remote policies.

- **URL**: https://apify.com/dionysus\_way/wellfound.md
- **Developed by:** [Dionysus](https://apify.com/dionysus_way) (community)
- **Categories:** Jobs, Lead generation, Automation
- **Stats:** 49 total users, 5 monthly users, 99.2% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.60 / 1,000 jobs

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

### Wellfound Jobs Scraper
*(scrapes jobs, company profiles, and metadata from **Wellfound.com** - formerly AngelList Talent)*

#### Example URLs
*   **Search Results**: [https://wellfound.com/jobs](https://wellfound.com/jobs)       
*   **Location Based**: [https://wellfound.com/location/berlin](https://wellfound.com/location/berlin)
*   **Role & City**: [https://wellfound.com/role/l/product-manager/london](https://wellfound.com/role/l/product-manager/london)
*   **Company Specific**: [https://wellfound.com/company/rxgpt/jobs](https://wellfound.com/company/rxgpt/jobs)
*   **Web3 Filter**: [https://wellfound.com/web3](https://wellfound.com/web3)

**Don't worry the scraper automatically detects if you are on a search page, company profile, or job detail.**

Extract **startup jobs** and **company data** from Wellfound to **JSON** or **CSV**. This scraper gathers comprehensive job details including salary/equity, founder information, funding stats, and team metadata.

#### What you get (most of the times and when is available)
*   **title** - job title (e.g. "Senior Software Engineer")
*   **company** - company name
*   **companyUrl** - company's official website
*   **companyWellfoundUrl** - link to Wellfound company profile
*   **location** - job location (e.g. "San Francisco", "Remote")
*   **salary** - salary and equity range combined (e.g. "$120k - $160k • 0.1% - 0.5%")
*   **jobType** - employment type (Full Time, Contract, etc.)
*   **description** - full job description text
*   **datePosted** - when the job was posted
*   **companySize** - number of employees
*   **tagline** - company's short pitch
*   **tags** - industry tags (e.g. "Fintech, AI")
*   **badges** - company accolades (e.g. "Top Investors, High Growth")
*   **fundingAmount** - total capital raised
*   **fundingRounds** - number of funding rounds
*   **founders** - CSV-friendly list of founders with roles and bios
*   **visaSponsorship** - visa availability
*   **relocation** - relocation assistance
*   **remotePolicy** - remote work policy (e.g. "Remote-first", "Hybrid")
*   **hiresIn** - specific countries/cities they hire in
*   **timezones** - required/preferred timezones
*   **collaborationHours** - specific working hour requirements
*   **skills** - required tech stack and skills
*   **companyPerks** - list of perks and benefits
*   **hiringContact** - name of the recruiter/manager
*   **startingUrl** - the search/listing page where the job was discovered
*   **url** - current job detail URL

#### Sample output (CSV-Friendly Flattened JSON)

```json
{
  "title": "Senior Frontend Engineer",
  "company": "Brex",
  "companyUrl": "https://brex.com",
  "companyWellfoundUrl": "https://wellfound.com/company/brex",
  "location": "Remote (United States)",
  "salary": "$150k - $220k • 0.05% - 0.1%",
  "jobType": "Full Time",
  "description": "We are looking for a Senior Frontend Engineer to join our team and help build the future of financial software...",
  "datePosted": "2 days ago",
  "companySize": "501-1000",
  "tagline": "The financial operating system for the next generation of business.",
  "tags": "Fintech, Payments, SaaS, B2B",
  "badges": "Top Investors, High Growth, Market Leader",
  "fundingAmount": "$1.2B",
  "fundingRounds": "8",
  "founders": "Henrique Dubugras (Co-Founder & CEO - Previously founded Pagar.me), Pedro Franceschi (Co-Founder)",
  "visaSponsorship": "Available",
  "relocation": "Not offered",
  "remotePolicy": "Remote-first",
  "hiresIn": "United States, Canada, Brazil",
  "timezones": "PST, EST, BRT",
  "collaborationHours": "10am - 4pm EST",
  "skills": "React, TypeScript, GraphQL, Node.js",
  "companyPerks": "Health/Dental, 401k, Generous PTO, Remote Stipend",
  "hiringContact": "Sarah Jenkins",
  "startingUrl": "https://wellfound.com/role/l/software-engineer/remote",
  "url": "https://wellfound.com/jobs/999999-senior-frontend-engineer"
}
````

#### Typical use cases

- **Recruitment / Sourcing** - find startups hiring for specific roles or stacks.
- **Market Research** - analyze hiring trends, salary benchmarks, and equity offers in the startup ecosystem.
- **Lead Generation** - identify growing startups (by funding/hiring volume) for B2B sales.
- **Competitor Analysis** - monitor which startups are hiring talent in your space.

#### Quick start

1. Add one or more **Start URLs** (like `https://wellfound.com/jobs`).
2. (Optional) Set **Max Jobs** if you want to limit the results.
3. Click **Run**.
4. Download your data in JSON, CSV, or Excel format.

#### FAQ

**Can I scrape search results?**
Yes! Just paste a search result URL like `https://wellfound.com/role/l/software-engineer/remote` and the scraper will collect all matching jobs.

**Does it extract contact info?**
It extracts the **Hiring Contact** name and **Founders**' details when available on the profile.

**What if the scraper gets blocked?**
This Actor uses advanced anti-blocking techniques and works best with **Residential Proxies**. If a block occurs, it automatically retires the session and retries.

**How can you contact me?**
<southdionysus@gmail.com> or open an issue on the Apify interface.

***

*Ready? Paste a Wellfound URL and start building your startup database!*

***

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Wellfound (AngelList) or any of its subsidiaries.

# Actor input Schema

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

URLs to start with.

## `maxJobs` (type: `integer`):

Maximum number of jobs to collect

## Actor input object example

```json
{
  "startUrls": [
    "https://wellfound.com/role/l/engineering-manager/denver"
  ]
}
```

# 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 = {
    "startUrls": [
        "https://wellfound.com/role/l/engineering-manager/denver"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("dionysus_way/wellfound").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": ["https://wellfound.com/role/l/engineering-manager/denver"] }

# Run the Actor and wait for it to finish
run = client.actor("dionysus_way/wellfound").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": [
    "https://wellfound.com/role/l/engineering-manager/denver"
  ]
}' |
apify call dionysus_way/wellfound --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Wellfound full job details (it works)",
        "description": "Extract Wellfound.com full job descriptions, required skills, and salary ranges. Capture deep startup insights from jobs or role links: funding rounds, founder bios, tagline, company size, perks, visa status, and remote policies.",
        "version": "1.0",
        "x-build-id": "OxtXhKP9FoYopL7q3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dionysus_way~wellfound/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dionysus_way-wellfound",
                "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/dionysus_way~wellfound/runs": {
            "post": {
                "operationId": "runs-sync-dionysus_way-wellfound",
                "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/dionysus_way~wellfound/run-sync": {
            "post": {
                "operationId": "run-sync-dionysus_way-wellfound",
                "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",
                        "minItems": 1,
                        "maxItems": 3,
                        "type": "array",
                        "description": "URLs to start with.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxJobs": {
                        "title": "Max Jobs",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of jobs to collect"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
