apify-list-vc-firms-by-citylisted
Install: claude install-skill johnisanerd/claude-skill-list-vc-firms-by-city
# List VC firms by city or sector
Get the venture firms behind a market as a clean directory, then optionally enrich each one with firmographics and funding data.
## When to use
Use this when the ask is about firms rather than people: a list of VC firms in a city, the firms active in a sector, or a directory to import into a CRM. Use the investor-level skill instead when the user needs named partners and cheque sizes.
## What it returns
Per firm: `firmName`, `firmSlug`, `firmUrl`, `sourceListSlug`, `sourceListStage`, `sourceListVertical`. With enrichment on: `linkedinIndustry`, `linkedinSize`, `linkedinFollowers`, `linkedinUrl`, `crunchbaseRank`, `crunchbaseEmployees`, `crunchbaseStatus`, `crunchbaseUrl`.
## Prerequisites
- An Apify account and API token. Free account: https://apify.com?fpr=9n7kx3&fp_sid=skillrepo
- The Apify CLI, authenticated: `apify login`
## The Actor
[NFX Signal Investor API](https://apify.com/johnvc/nfx-signal-investor-api?fpr=9n7kx3&fp_sid=skillrepo)
## Run it with the Apify CLI
Geographic directory, for example the San Francisco Bay Area:
```bash
apify call johnvc/nfx-signal-investor-api \
--input '{"mode":"firms","listSlugs":["san-francisco-bay-area"]}' \
--json \
--user-agent apify-awesome-skills/apify-list-vc-firms-by-city \
2>/dev/null
```
Sector directory with firm enrichment:
```bash
apify call johnvc/nfx-signal-investor-api \
--input '{"mode":"firms","listSlugs":["ai-seed"],"maxItems":50,"enrichWithCrunchbase":true}' \