Work at a Startup (YC) Jobs Scraper

Scrape jobs from Y Combinator's Work at a Startup. Returns title, YC batch (W25/S24), company URL/team size, salary range, equity, visa sponsorship, min experience, remote type, tech stack, founder replies flag, and full hiring description. Pay-per-result.

Open on Apify →
Pricing
$3.00 / 1,000
Runtime
Cloud (Apify)
Proxy
Datacenter

What You Can Scrape

What you get

Input example

{
  "searchQueries": ["software engineer", "machine learning", "product manager"],
  "maxResults": 200,
  "maxResultsPerQuery": 30,
  "includeJobDetails": true,
  "includeCompanyDetails": true
}

Output example

{
  "_type": "job",
  "id": "103933",
  "title": "Senior Software Engineer, Machine Learning",
  "company_name": "Hive",
  "yc_batch": "S14",
  "yc_top_company": false,
  "industry": "B2B -> Marketing",
  "team_size": 65,
  "remote_type": "hybrid",
  "salary_range": {"min": 124000, "max": 188000, "currency": "CAD"},
  "equity_range": null,
  "experience_years_min": 5,
  "sponsors_visa": true,
  "founder_replies_directly": false,
  "tech_stack": ["JavaScript", "Docker", "Kubernetes"],
  "founders": [{"name": "Patrick Hannigan", "linkedin": "https://www.linkedin.com/in/patrickhannigan/"}],
  "company_active_jobs_count": 4,
  "source_platform": "workatastartup",
  "scraped_at": "2026-09-02T11:26:41Z"
}

Who should use this

Recruiter agencies tracking senior engineering roles at YC-funded companies use yc_batch to focus on the latest cohorts (W25, S25) and sponsors_visa to pre-filter for international candidates, saving hours of manual triage on the Work at a Startup board.

Investors and analysts monitor hiring velocity per YC batch as a leading indicator of company growth, using company_active_jobs_count and batch-level aggregation across weekly runs.

CRM enrichment teams append current job openings, founder LinkedIn profiles, and tech stack to a list of YC portfolio companies, turning a static company list into a live intelligence feed.

Integrations

Run this actor directly on Apify (no code)

Click Open on Apify above to run workatastartup-scraper in your browser - no code, no install. In the Apify console you get:

Get your Apify API token

To run this actor from your own code you need an Apify API token. Get one in about a minute:

  1. Sign up for a free Apify account (Google, GitHub, or email).
  2. Go to Settings → Integrations → API tokens.
  3. Click Create a new API token. Copy it and keep it secret.

Free tier: Apify credits your account with $5 of platform usage every month, no credit card required. Enough to test any actor meaningfully - at $0.001 per result on typical scrapers, that is roughly 5,000 results for free every month.

Call from code

Run this actor from any language via the Apify REST API. Replace YOUR_TOKEN with your API token and adapt the input JSON to your needs.

curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~workatastartup-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
// npm install apify-client
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('santamaria-automations/workatastartup-scraper').call({});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
# pip install apify-client
from apify_client import ApifyClient

client = ApifyClient('YOUR_TOKEN')
run = client.actor('santamaria-automations/workatastartup-scraper').call(run_input={})
items = list(client.dataset(run['defaultDatasetId']).iterate_items())
print(items)
// dotnet add package Apify.Client
using Apify.Client;

var client = new ApifyClient("YOUR_TOKEN");
var run = await client.Actor("santamaria-automations/workatastartup-scraper").CallAsync(new { });
var items = await client.Dataset(run.DefaultDatasetId).ListItemsAsync();
// Maven: com.apify:apify-client
import com.apify.client.ApifyClient;

ApifyClient client = new ApifyClient("YOUR_TOKEN");
ActorRun run = client.actor("santamaria-automations/workatastartup-scraper").call(Map.of());
List<Map<String,Object>> items = client.dataset(run.getDefaultDatasetId()).listItems();

Use with AI agents (MCP)

This actor is available on the Apify MCP server, so you can drive it from any MCP-compatible AI client - Claude Desktop, Claude.ai, Cursor, VS Code, LangChain, LlamaIndex, or a custom agent - without writing any code.

https://mcp.apify.com?tools=santamaria-automations/workatastartup-scraper

Example prompt once connected:

"Use <code>workatastartup-scraper</code> to run a scrape on my target list and give me the results as a table."

Clients that support dynamic tool discovery (Claude.ai, VS Code) receive the full input schema automatically via add-actor.

Use with no-code platforms

Trigger this actor from your favorite automation tool. Every platform below can call the Apify API in a few clicks - no code required.

  1. Add the n8n Apify node (installed by default on n8n Cloud; on self-hosted install @apify/n8n-nodes-apify).
  2. Set Actor to santamaria-automations/workatastartup-scraper.
  3. Choose operation Run Actor and get dataset, paste your input JSON, and connect a downstream node (Google Sheets, Postgres, webhook, ...).
  1. Create a new Zap with any trigger.
  2. Add a Webhooks by Zapier POST action to https://api.apify.com/v2/acts/santamaria-automations~workatastartup-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Body: your input JSON. Content-Type: application/json.
  1. Create a new scenario.
  2. Add an HTTP module: URL https://api.apify.com/v2/acts/santamaria-automations~workatastartup-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN, method POST, body raw JSON.
  3. Parse the response with a JSON module to iterate items downstream.
  1. Create a new workflow.
  2. Add an HTTP Request step: POST to https://api.apify.com/v2/acts/santamaria-automations~workatastartup-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Access steps.http.$return_value in subsequent steps.
  1. Install the API Connector plugin.
  2. Add a new API: POST https://api.apify.com/v2/acts/santamaria-automations~workatastartup-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN, body type JSON.
  3. Initialize the call with your input, then reference the response array in workflow actions.

Related tutorials

Open on Apify →