Loading...
Loading...
Look up Y Combinator companies, batches, and startup ecosystem data using the yc-oss API (read-only). Use this skill whenever the user wants to research YC-backed startups, find companies in a specific batch or industry, check which YC companies are hiring, explore top YC companies, or analyze startup trends by sector or tag. Triggers include: "YC companies in fintech", "who's in the latest YC batch", "YC startups hiring", "top Y Combinator companies", "find YC companies tagged AI", "W25 batch", "S24 companies", "YC stats", "Y Combinator portfolio", "startup research", "which YC companies do X", "venture research on YC", any mention of Y Combinator, YC batch, or YC-backed companies in the context of startup research, venture analysis, or market intelligence. This is a read-only data source — the API is a static JSON dataset updated daily.
npx skill4agent add himself65/finance-skills yc-readercurlcurljq!`(command -v curl > /dev/null && echo "CURL_OK" || echo "CURL_MISSING") && (command -v jq > /dev/null && echo "JQ_OK" || echo "JQ_MISSING")`JQ_MISSING# macOS
brew install jq
# Linux (Debian/Ubuntu)
sudo apt-get install jqjqcurljqreferences/api_reference.md| User Request | Endpoint | Notes |
|---|---|---|
| Overall YC stats | | Company count, batch list, industry/tag lists |
| All companies | | Full dataset (~5,700 companies) — large response |
| Top companies | | ~91 top-performing YC companies |
| Companies hiring | | ~1,400 currently hiring |
| Non-profit companies | | YC-backed non-profits |
| Diversity data | | Founder diversity |
| Specific batch | | e.g., |
| By industry | | e.g., |
| By tag | | e.g., |
{season}-{year}winter-2025summer-2024fall-2025summer-2005real-estatedeveloper-toolsmachine-learninghttps://yc-oss.github.io/api/# Fetch and pretty-print
curl -s https://yc-oss.github.io/api/companies/top.json | jq .
# Count companies in a result
curl -s https://yc-oss.github.io/api/batches/winter-2025.json | jq length
# Filter by field (e.g., hiring companies in a batch)
curl -s https://yc-oss.github.io/api/batches/winter-2025.json | jq '[.[] | select(.isHiring == true)]'
# Extract specific fields
curl -s https://yc-oss.github.io/api/companies/top.json | jq '.[] | {name, one_liner, batch, team_size, website}'
# Search by name (case-insensitive)
curl -s https://yc-oss.github.io/api/companies/all.json | jq '[.[] | select(.name | test("stripe"; "i"))]'-sjqcompanies/all.jsonjqwinter-2025Winter 2025W25developer-toolsDeveloper Tools| Filter | Purpose |
|---|---|
| Count results |
| First company |
| First 10 companies |
| Only hiring companies |
| Only active companies |
| Companies with 100+ employees |
| Select specific fields |
| Search by name |
| Top 10 by team size |
| Error | Cause | Fix |
|---|---|---|
| Invalid batch, industry, or tag name | Check |
Empty array | No companies match the query | Broaden the search or check spelling |
| No internet connection | Check network connectivity |
| Large/slow response | Fetching | Use a more specific endpoint or add |
# List all batches
curl -s https://yc-oss.github.io/api/meta.json | jq '.batches[].name'
# List all industries
curl -s https://yc-oss.github.io/api/meta.json | jq '.industries[].name'
# List all tags (there are 333+)
curl -s https://yc-oss.github.io/api/meta.json | jq '.tags[].name'references/api_reference.md