Discover/Y Combinator API
live

Y Combinator APIbookface.ycombinator.com

Search and retrieve Y Combinator portfolio companies via the Bookface API. Access founder profiles, batch info, tags, job data, and company details.

Endpoint health
verified 23h ago
get_company
search_companies
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Y Combinator API?

The Bookface YC API provides 2 endpoints for accessing Y Combinator's portfolio company directory. Use search_companies to query across all YC batches by keyword or season, or call get_company to retrieve a specific company's full profile — including founder bios, social links, tags, location, and batch designation — by either a numeric company ID or URL slug.

Try it
Company URL slug (e.g., 'parse-bot'). Either company_id or slug is required.
Bookface company ID (e.g., '30846'). Either company_id or slug is required.
api.parse.bot/scraper/ba0c1d0c-ee4f-4a6e-a72e-4f61fc92d6a2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ba0c1d0c-ee4f-4a6e-a72e-4f61fc92d6a2/get_company?slug=ai-2' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace bookface-ycombinator-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
Y Combinator Company Directory API Client
Get your API key from: https://parse.bot/settings
"""

from parse_apis.y_combinator_company_directory_api import YCombinator, Company, CompanySummary

yc = YCombinator(api_key="YOUR_API_KEY")

# Search for AI companies
for company in yc.companysummaries.search(query="AI", limit=5):
    print(company.name, company.batch, company.one_liner)

# Get full details for a specific company by slug
detail = yc.companies.get(slug="parse-bot")
print(detail.name, detail.batch_name, detail.website)
print(detail.one_liner)

for founder in detail.founders:
    print(founder.full_name, founder.title, founder.linkedin_url)

for launch in detail.launches:
    print(launch.title, launch.id)

# Navigate from a search result to its full details
for summary in yc.companysummaries.search(batch="Fall 2025", limit=3):
    full = summary.details()
    print(full.name, full.team_size, full.location)
    if full.primary_group_partner:
        print(full.primary_group_partner.full_name)
All endpoints · 2 totalmissing one? ·

Get detailed company information by Bookface company ID or URL slug. Returns comprehensive data including founders, launches, news items, social links, and group partner. One of company_id or slug is required.

Input
ParamTypeDescription
slugstringCompany URL slug (e.g., 'parse-bot'). Either company_id or slug is required.
company_idstringBookface company ID (e.g., '30846'). Either company_id or slug is required.
Response
{
  "type": "object",
  "fields": {
    "id": "integer company ID",
    "city": "string city name",
    "name": "string company name",
    "slug": "string URL slug",
    "tags": "array of tag strings",
    "batch": "string abbreviated batch code (e.g., 'F25')",
    "status": "string company status (e.g., 'Active', 'Inactive')",
    "country": "string country code",
    "website": "string company website URL",
    "founders": "array of founder objects with full_name, title, bio, twitter_url, linkedin_url, avatar_url",
    "launches": "array of launch objects with id, title, body",
    "location": "string location description",
    "logo_url": "string URL to company logo",
    "ycdc_url": "string YC directory URL",
    "one_liner": "string short description",
    "team_size": "integer number of team members",
    "batch_name": "string full batch name (e.g., 'Fall 2025')",
    "github_url": "string GitHub URL",
    "news_items": "array of news item objects with title, url, date",
    "twitter_url": "string Twitter profile URL",
    "job_postings": "array of job posting objects with title, url, location",
    "linkedin_url": "string LinkedIn profile URL",
    "year_founded": "integer founding year",
    "long_description": "string detailed description",
    "primary_group_partner": "object with full_name and url, or null"
  },
  "sample": {
    "data": {
      "id": 30846,
      "city": "San Francisco",
      "name": "Parse",
      "slug": "parse-bot",
      "tags": [
        "Developer Tools",
        "API",
        "Big Data"
      ],
      "batch": "F25",
      "status": "Active",
      "country": "US",
      "website": "https://parse.bot",
      "founders": [
        {
          "bio": "...",
          "title": "Founder",
          "full_name": "John Doe",
          "avatar_url": "https://...",
          "twitter_url": "https://x.com/alexscraping",
          "linkedin_url": "https://www.linkedin.com/in/alex-k-forman/"
        }
      ],
      "launches": [
        {
          "id": 95327,
          "body": "...",
          "title": "Parse - APIs for any website"
        }
      ],
      "location": "San Francisco",
      "logo_url": "https://bookface-images.s3.amazonaws.com/small_logos/fd2b15ce8a8e404c0ec54c33a17f938963c26455.png",
      "ycdc_url": "https://www.ycombinator.com/companies/parse-bot",
      "one_liner": "Build an API to interact with any website.",
      "team_size": 2,
      "batch_name": "Fall 2025",
      "github_url": "",
      "news_items": [],
      "twitter_url": "",
      "facebook_url": "",
      "job_postings": [],
      "linkedin_url": "https://www.linkedin.com/company/parsedotbot/",
      "year_founded": 2025,
      "crunchbase_url": "",
      "long_description": "Parse lets developers build APIs for any website.",
      "primary_group_partner": {
        "url": "https://www.ycombinator.com/people/pete-koomen",
        "full_name": "Jane Doe"
      }
    },
    "status": "success"
  }
}

About the Y Combinator API

Endpoints

The get_company endpoint accepts either a company_id (e.g., '30846') or a slug (e.g., 'parse-bot') and returns a detailed company record. Response fields include id, name, slug, city, country, website, batch, status, and tags. The founders array is particularly detailed, containing each founder's full_name, title, bio, twitter_url, linkedin_url, and avatar_url.

Searching the Directory

search_companies supports keyword search via the query parameter (e.g., 'AI', 'fintech') and optional filtering by batch using full season-and-year format (e.g., 'Fall 2025', 'Summer 2024'). Results are paginated using 0-indexed page and a limit up to 1000 per page. The response envelope includes total, total_pages, hits_per_page, and a companies array with summary fields: id, name, slug, one_liner, website, batch, status, team_size, location, tags, and logo_url.

Coverage and Data Shape

The directory covers companies across all publicly listed YC batches. Company status values like 'Active' or 'Inactive' are returned as strings, and batch codes follow abbreviated form (e.g., 'F25') in the get_company response but use full format in search_companies filters. Tags reflect the industry or domain categories assigned to each company in the YC directory.

Reliability & maintenanceVerified

The Y Combinator API is a managed, monitored endpoint for bookface.ycombinator.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bookface.ycombinator.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official bookface.ycombinator.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
23h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a filterable YC batch browser using batch and query params in search_companies
  • Look up a specific startup's founders and their LinkedIn/Twitter profiles with get_company
  • Track team size and location distribution across a specific YC cohort
  • Identify all active YC companies in a given industry by filtering tags from search results
  • Aggregate founder bios and titles for research on YC alumni career patterns
  • Monitor company status changes (Active vs Inactive) across batches over time
  • Populate a CRM or database with YC portfolio company websites and one-liners
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Y Combinator provide an official developer API for Bookface?+
No. Y Combinator does not publish a public developer API for Bookface or the YC company directory.
What does `get_company` return that `search_companies` does not?+
get_company includes the full founders array with individual bios, twitter_url, linkedin_url, and avatar_url per founder. The search_companies endpoint returns summary-level company data only — one_liner, team_size, logo_url, and location — without founder-level detail.
How should I format the `batch` parameter in `search_companies`?+
The batch parameter expects the full season-and-year string, such as 'Fall 2025', 'Summer 2024', or 'Winter 2024'. The abbreviated batch code format (e.g., 'F25') that appears in company records is not used as a filter input here.
Does the API return job postings or recent launches for companies?+
Not currently. The get_company endpoint returns core company data and founder profiles; job postings and launch history are not included in the current response shape. You can fork this API on Parse and revise it to add an endpoint targeting those data points.
Does the API cover companies that are no longer active or have been acquired?+
Company records include a status field that returns values like 'Active' or 'Inactive', so inactive companies are present in the directory. However, detailed acquisition history or exit data is not a returned field. You can fork this API on Parse and revise it to surface additional status-related information.
Page content last updated . Spec covers 2 endpoints from bookface.ycombinator.com.
Related APIs in B2b DirectorySee all →
ycombinator.com API
Access comprehensive data from the Y Combinator ecosystem, including company profiles, founder and partner information, job listings, and the YC library. Filter companies by batch, industry, and hiring status, and explore detailed profiles with social links, team information, and funding metadata.
startups.rip API
Search and analyze data on 1,700+ Y Combinator startups, including their current status (active, acquired, or defunct), company details, and research reports organized by batch. Find similar companies, browse startups by cohort, and discover insights about YC's portfolio ecosystem.
crunchbase.com API
Search and retrieve detailed information about companies, investors, and key people to discover funding opportunities, track market competitors, and analyze investment trends. Access comprehensive profiles including organization details, investor backgrounds, and complete funding round histories all in one place.
angel.co API
Search for startup job opportunities and explore detailed information about companies, positions, and founders all in one place. Discover your next role by browsing Wellfound's curated startup jobs with comprehensive company profiles and person details.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
yandex.ru API
Search for businesses on Yandex Maps and instantly access their names, addresses, phone numbers, websites, social media links, hours of operation, and categories. Get detailed company information to find local services, verify business details, or build comprehensive business directories.
wellfound.com API
Search and discover startup jobs, company profiles, and trending opportunities on Wellfound by role and location, with detailed job information and autocomplete suggestions to streamline your job search. Access comprehensive company data and stay updated on what's trending in the startup ecosystem.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.