Discover/Seedtable API
live

Seedtable APIseedtable.com

Retrieve company profiles from Seedtable including funding stage, investors, executives, signals, sectors, and events via a single GET endpoint.

This API takes change requests — .
Endpoint health
verified 3h ago
get_company
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Seedtable API?

The Seedtable API exposes over 15 structured fields per company through a single get_company endpoint, returning funding stage, total funding, valuation, estimated revenue, executive and board profiles, hiring signals, competitors, acquisitions, and attended events. Pass a Seedtable slug — such as stripe or airbnb — and get back a complete company intelligence profile suited for investment research, competitive analysis, or B2B prospecting.

This call costs2 credits / call— charged only on success
Try it
Company slug as used in Seedtable URLs (e.g. 'stripe', 'airbnb', 'ant-financial'). Typically the lowercased, hyphenated company name.
api.parse.bot/scraper/26379d88-d7c8-454f-bf71-cad0294879a0/<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/26379d88-d7c8-454f-bf71-cad0294879a0/get_company?slug=stripe' \
  -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 seedtable-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.

"""Walkthrough: Seedtable Company Data API — fetch a company profile and explore its structured data."""
from parse_apis.seedtable_com_api import Seedtable, CompanyNotFound

client = Seedtable()

# Fetch a full company profile by its Seedtable slug.
try:
    company = client.companies.get(slug="stripe")
except CompanyNotFound:
    print("Company not found")
    raise

print(company.name, f"({company.city}, {company.country})")
print("Score:", company.seedtable_score, "| Stage:", company.funding_stage)

# Walk funding rounds — each is a typed FundingRound with nested investor lists.
for fr in company.funding_rounds:
    investors = ", ".join(fr.key_investors[:3])
    print(f"  {fr.stage}: {fr.amount} ({fr.date}) — {investors}")

# Explore top competitors — each carries a slug usable for a follow-up lookup.
for comp in company.competitors[:3]:
    print(f"  Competitor: {comp.name} (score={comp.seedtable_score})")

# Drill into a competitor via its slug.
if company.competitors:
    rival = client.companies.get(slug=company.competitors[0].slug)
    print(f"Rival detail: {rival.name}, founded {rival.founded_year}, employees: {rival.employees}")

# Show recent signals.
for sig in company.signals[:2]:
    print(f"  Signal [{sig.type}]: {sig.title}")

print("exercised: companies.get / Company fields / FundingRound / Competitor / Signal")
All endpoints · 1 totalmissing one? ·

Retrieve all available data for a company by its Seedtable slug. Returns a comprehensive profile including basic info (name, description, location, sectors), financial data (funding stage, total funding, valuation, estimated revenue), team (executives, board), signals (hiring activity, leadership searches, event attendance, momentum), funding rounds with investors and amounts, timeline of milestones, investor ownership estimates, acquisitions, products, competitors, events, industries, and additional details. Some fields may be null depending on the company's profile completeness. One round-trip per call.

Input
ParamTypeDescription
slugrequiredstringCompany slug as used in Seedtable URLs (e.g. 'stripe', 'airbnb', 'ant-financial'). Typically the lowercased, hyphenated company name.
Response
{
  "type": "object",
  "fields": {
    "city": "City where the company is headquartered",
    "name": "Company display name",
    "slug": "Company slug used in the request",
    "board": "Array of board members with name, seat type, and representing entity",
    "events": "Array of conferences/events the company attends or sponsors",
    "country": "Country where the company is headquartered",
    "details": "Object with additional metadata (last funding date, legal name, status, patents)",
    "sectors": "Array of sector/category labels",
    "signals": "Array of recent company signals (hiring, events, momentum)",
    "website": "Company website URL",
    "logo_url": "URL of the company logo image",
    "products": "Array of product names",
    "rankings": "Array of ranking positions across different categories",
    "timeline": "Array of key milestones in the company's history",
    "verified": "Whether the profile is verified by Seedtable editors",
    "yc_batch": "Y Combinator batch if applicable",
    "employees": "Current employee count",
    "followers": "Number of Seedtable followers",
    "investors": "Array of investors with estimated investment and ownership stake",
    "valuation": "Current or last known valuation",
    "executives": "Array of executives with name, title, role, and organizational group",
    "industries": "Array of industry classifications",
    "competitors": "Array of competitor companies with name, slug, and score",
    "description": "Company description/summary",
    "est_revenue": "Estimated revenue range",
    "acquisitions": "Array of acquisitions with company name, type, value, and date",
    "founded_year": "Year the company was founded",
    "also_investor": "Whether the company is also listed as an investor",
    "funding_stage": "Current funding stage (e.g. Series I, IPO)",
    "has_secondary": "Whether the company has had secondary transactions",
    "total_funding": "Total funding raised",
    "funding_rounds": "Array of funding rounds with stage, investors, amount, date, and valuations",
    "page_views_60d": "Page views in the last 60 days",
    "seedtable_score": "Seedtable proprietary score (0-100)"
  },
  "sample": {
    "data": {
      "city": "Dublin",
      "name": "Stripe",
      "slug": "stripe",
      "board": [
        {
          "name": "John Collison",
          "seat": "director",
          "tenure": null,
          "representing": "Founder"
        }
      ],
      "events": [
        {
          "date": "October 18 – 21, 2026",
          "name": "Money20/20 USA Las Vegas 2026",
          "role": "Sponsor",
          "location": "The Venetian, Las Vegas, United States"
        }
      ],
      "country": "Ireland",
      "details": {
        "status": "active",
        "legal_name": "Stripe, Inc.",
        "patents_assigned": "33",
        "last_funding_date": "24 Feb 2026",
        "last_funding_amount": "600.0M USD"
      },
      "sectors": [
        "Payments",
        "E-commerce",
        "Cybersecurity",
        "Developer Tools"
      ],
      "signals": [
        {
          "type": "Actively hiring",
          "when": "yesterday",
          "title": "Stripe has 572 open roles",
          "details": "Open roles | 572 live postings"
        }
      ],
      "website": "http://stripe.com",
      "logo_url": "https://golden-storage-production.golden-support.com/topic_images/59be106e8cbb45ff96242383cc30ba30.jpeg",
      "products": [
        "Stripe Atlas",
        "Stripe Billing",
        "Stripe Connect"
      ],
      "rankings": [
        {
          "rank": 1,
          "label": "Dublin Payments",
          "total": 11
        }
      ],
      "timeline": [
        {
          "date": "16 Mar 2023",
          "type": null,
          "event": "Stripe raises $6.5 billion in Series I funding."
        }
      ],
      "verified": true,
      "yc_batch": "YCS09",
      "employees": "9,073",
      "followers": 93,
      "investors": [
        {
          "name": "Sequoia Capital",
          "rounds": "10",
          "estimated_stake": "~3.4%",
          "estimated_investment": "~$684M"
        }
      ],
      "valuation": "159.0B USD",
      "executives": [
        {
          "name": "John Collison",
          "role": "Founder",
          "group": "Founders",
          "title": "Founder"
        }
      ],
      "industries": [
        "Payment system",
        "Finance",
        "Credit card"
      ],
      "competitors": [
        {
          "name": "Klarna",
          "slug": "klarna",
          "seedtable_score": 86
        }
      ],
      "description": "Stripe is a financial technology company whose software lets businesses and individuals accept online payments...",
      "est_revenue": "$1.6B–$4.5B",
      "acquisitions": [
        {
          "date": "16 Aug 2026",
          "type": "Acquisition",
          "value": "7.0B USD",
          "company": "OpenRouter"
        }
      ],
      "founded_year": "2010",
      "also_investor": true,
      "funding_stage": "Series I",
      "has_secondary": true,
      "total_funding": "8.5B USD",
      "funding_rounds": [
        {
          "date": "15 Mar 2023",
          "stage": "Series I",
          "amount": "6.5B USD",
          "key_investors": [
            "500 Global",
            "Andreessen Horowitz (a16z)"
          ],
          "pre_money_valuation": null,
          "post_money_valuation": "50.0B USD"
        }
      ],
      "page_views_60d": 111,
      "seedtable_score": 91
    },
    "status": "success"
  }
}

About the Seedtable API

What the API Returns

The get_company endpoint accepts a single required parameter, slug, which corresponds to the company's identifier in Seedtable URLs (e.g., ant-financial). The response bundles basic firmographic data — name, city, country, website, and sectors — alongside financial fields including funding stage, total funding raised, valuation, and estimated revenue. A details object provides supplementary metadata such as last funding date, legal name, operational status, and patent counts.

Team and Governance Data

The response includes an array of executives with titles and profiles, plus a board array that surfaces each board member's name, seat type (e.g., independent, investor), and the entity they represent. This makes it straightforward to map investor-board relationships without cross-referencing multiple sources.

Signals and Events

The signals field returns an array of recent company activity indicators — hiring momentum, event presence, and other growth or contraction signals. The events field lists conferences and industry gatherings the company has attended or sponsored, useful for identifying partnership and outreach opportunities. Competitor and acquisition data round out the profile, giving a structured view of a company's market position and M&A history.

Reliability & maintenanceVerified

The Seedtable API is a managed, monitored endpoint for seedtable.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when seedtable.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 seedtable.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
3h ago
Latest check
1/1 endpoint 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
  • Map investor-to-board relationships for a portfolio of companies using the board array and representing-entity field
  • Track hiring momentum signals across a watchlist of startups using the signals response field
  • Enrich a CRM with funding stage, total funding, and estimated revenue from the get_company endpoint
  • Identify acquisition targets by pulling competitor arrays and M&A history for a given company slug
  • Build an event-attendance tracker using the events field to find which conferences a company attends
  • Screen companies by sector using the sectors array combined with funding and valuation data
  • Compile executive contact intelligence by extracting leadership profiles from the team and board fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Seedtable have an official developer API?+
Seedtable does not publish a documented public developer API. Data access for their company intelligence is not offered through an official API product.
What does the `details` object in the response contain?+
The details object includes supplementary metadata that does not fit in top-level fields: last funding date, legal name, company status, and patent counts. It complements the top-level financial fields like funding stage and total funding.
Does the API return historical funding rounds broken down by round?+
The current response covers aggregate financial data — funding stage, total funding, valuation, and last funding date via the details object. Individual round-by-round history with dates, amounts, and lead investors per round is not currently exposed. You can fork this API on Parse and revise it to add a dedicated funding-rounds endpoint.
Can I search or filter companies by sector, country, or funding stage?+
The get_company endpoint is a lookup by slug only — it does not support search or filtering. There is no endpoint to query across companies by sectors, country, or funding stage. You can fork this API on Parse and revise it to add a search or browse endpoint that filters the Seedtable company list.
How current is the data returned by the API?+
Data freshness depends on when Seedtable last updated a given company profile. Signals and events tend to reflect recent activity, but there is no timestamp on most top-level fields, so data for less-covered companies may lag behind the latest public announcements. The details.last_funding_date field is the most reliable freshness indicator available in the response.
Page content last updated . Spec covers 1 endpoint from seedtable.com.
Related APIs in B2b DirectorySee all →
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
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.
topstartups.io API
Access startup profiles, funding data, job listings, and salary benchmarks from TopStartups.io. Filter by industry, location, funding stage, company size, and more to explore the startup landscape at scale.
signal.nfx.com API
Browse and discover ranked investors from NFX Signal's network of VCs, Angels, and Scouts filtered by your target industry vertical and funding stage. Find the right investor matches for your fundraising needs by accessing curated investor lists organized by investment focus and check size.
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.
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.
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.
eu-startups.com API
Access the EU-Startups investor database, startup directory, job board, and news articles. Search and filter investors by type and country, browse startups, and retrieve detailed profiles.