Discover/Crunchbase API
live

Crunchbase APIcrunchbase.com

Search organizations, investors, and funding rounds from Crunchbase. Access profiles, employee counts, categories, and funding history via 5 structured endpoints.

Endpoint health
verified 7d ago
search_organizations
search_investors
get_organization_profile
get_company_people
get_company_funding_rounds
5/5 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the Crunchbase API?

This API exposes 5 endpoints covering Crunchbase organizations, investors, people, and funding rounds. Use search_organizations to find companies by name with category, location, and employee-count fields, or call get_company_funding_rounds to retrieve every disclosed investment round tied to a specific org UUID, including investment type and money raised.

Try it
Max results to return.
Search keyword for organization name (e.g. 'stripe', 'google'). Omitting returns all organizations.
api.parse.bot/scraper/9859fdb0-267c-477d-be52-582d371da0e0/<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/9859fdb0-267c-477d-be52-582d371da0e0/search_organizations?limit=10&query=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 crunchbase-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: Crunchbase SDK — search organizations, fetch profiles, drill into people & funding."""
from parse_apis.crunchbase_api import Crunchbase, OrganizationNotFound

client = Crunchbase()

# Search for organizations matching a keyword
for org in client.organizations.search(query="stripe", limit=3):
    print(org.uuid, org.properties.identifier.value, org.properties.rank_org)

# Fetch a single organization profile by slug
stripe = client.organizations.get_by_slug(slug="stripe")
print(stripe.properties.identifier.value, stripe.properties.short_description)

# Drill into people (leadership team) via sub-resource
for person in stripe.people.list(limit=3):
    print(person.properties.identifier.value, person.properties.primary_job_title)

# Drill into funding rounds for that organization
for fr in stripe.funding_rounds.list(limit=3):
    print(fr.properties.identifier.value, fr.properties.investment_type)

# Search investors
for investor in client.investors.search(query="sequoia", limit=3):
    print(investor.properties.identifier.value, investor.properties.num_investments_funding_rounds)

# Typed error handling
try:
    org = client.organizations.get_by_slug(slug="xyznonexistent99999")
    print(org.properties.identifier.value)
except OrganizationNotFound as exc:
    print(f"Organization not found: {exc.slug}")

print("exercised: organizations.search / get_by_slug / people.list / funding_rounds.list / investors.search")
All endpoints · 5 totalmissing one? ·

Full-text search over Crunchbase organizations. Returns results with organization details including categories, location, employee count, rank, and operating status. Omitting query returns all organizations ordered by rank.

Input
ParamTypeDescription
limitintegerMax results to return.
querystringSearch keyword for organization name (e.g. 'stripe', 'google'). Omitting returns all organizations.
Response
{
  "type": "object",
  "fields": {
    "count": "total number of matching organizations",
    "entities": "array of organization objects with uuid and properties (identifier, short_description, rank_org, categories, location_identifiers, num_employees_enum, status)"
  },
  "sample": {
    "data": {
      "count": 61,
      "entities": [
        {
          "uuid": "6f83ddd7-d637-61f8-06b2-438a0037605f",
          "properties": {
            "status": "operating",
            "rank_org": 97,
            "categories": [
              {
                "uuid": "e06799a9-f789-76e7-49a7-71ee980a70ec",
                "value": "FinTech",
                "permalink": "fintech-e067",
                "entity_def_id": "category"
              }
            ],
            "identifier": {
              "uuid": "6f83ddd7-d637-61f8-06b2-438a0037605f",
              "value": "Stripe",
              "permalink": "stripe",
              "entity_def_id": "organization"
            },
            "short_description": "Stripe is a financial technology company.",
            "num_employees_enum": "c_05001_10000",
            "location_identifiers": [
              {
                "uuid": "e3409735-6075-d2fd-fec4-669b4f9c9979",
                "value": "South San Francisco",
                "permalink": "south-san-francisco-california",
                "entity_def_id": "location",
                "location_type": "city"
              }
            ]
          }
        }
      ]
    },
    "status": "success"
  }
}

About the Crunchbase API

Organization and Investor Search

The search_organizations endpoint accepts an optional query string and a limit integer, returning a paginated list of organization objects. Each entity includes a UUID, short_description, rank_org, categories, location_identifiers, num_employees_enum, and funding status. Pagination is cursor-based: pass the after_id UUID from the last entity in the previous response to fetch the next page. The search_investors endpoint mirrors this pattern, returning investor objects with num_investments_funding_rounds and location_identifiers alongside each investor's identifier.

Organization Profiles and Associated People

get_organization_profile takes a slug (e.g. 'stripe', 'anthropic') and returns the full property set for a single organization: identifier, description, rank, categories, location, employee band, and status — useful when you already know the company permalink. To retrieve the people attached to an organization, pass its UUID (obtained from search results) to get_company_people, which returns paginated person objects carrying primary_job_title, primary_organization, rank_person, and location_identifiers.

Funding Rounds

get_company_funding_rounds accepts an org_uuid and an optional limit, returning a count plus an array of funding-round objects. Each round includes an investment_type field (e.g. seed, series_a) and a funded_organization_identifier. This makes it straightforward to build a timeline of disclosed rounds for any organization indexed on Crunchbase.

Reliability & maintenanceVerified

The Crunchbase API is a managed, monitored endpoint for crunchbase.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when crunchbase.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 crunchbase.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
7d ago
Latest check
5/5 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
  • Screen early-stage startups by filtering search_organizations results on category and employee band before outreach
  • Build a competitive-intelligence tracker that polls get_organization_profile for rank and funding-status changes
  • Map an investor's portfolio breadth using the num_investments_funding_rounds field from search_investors
  • Enumerate all disclosed funding rounds for a target company via get_company_funding_rounds to reconstruct its capital history
  • Identify key executives at a company by querying get_company_people with the organization's UUID and filtering on primary_job_title
  • Aggregate investor location data from search_investors to analyze geographic concentration of VC activity
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 Crunchbase have an official developer API?+
Yes. Crunchbase offers an official API at https://data.crunchbase.com/docs — it requires a paid subscription and provides broader field access. This Parse API offers a structured alternative for common lookup and search tasks without a direct Crunchbase API agreement.
What does `get_company_funding_rounds` return, and can I filter by round type?+
The endpoint returns a count of all rounds plus an array of round objects, each with an investment_type field (e.g. seed, series_a, series_b) and a funded_organization_identifier. Filtering by a specific investment type is not a built-in parameter — you would need to filter the returned array client-side. You can fork the API on Parse and revise it to add a server-side investment_type filter parameter.
Are individual investor profiles (not organizations) available through this API?+
search_investors returns investor entities with identifiers, investment counts, and location data. A dedicated endpoint for a single investor's full profile — analogous to get_organization_profile for companies — is not currently included. You can fork the API on Parse and revise it to add a get_investor_profile endpoint using the investor UUID.
How does pagination work across these endpoints?+
All list endpoints (search_organizations, search_investors, get_company_people, get_company_funding_rounds) use cursor-based pagination. Each response includes a count of total matching records. To advance to the next page, pass the after_id value — the UUID of the last entity in the current response — as a parameter in your next request.
Does the API expose contact information such as email addresses or phone numbers for people or organizations?+
No contact fields (email, phone, social handles) are included in the current response shapes. People objects carry primary_job_title, primary_organization, rank_person, and location_identifiers; organization objects carry description, rank, categories, location, and employee band. You can fork the API on Parse and revise it to surface additional fields if they become accessible.
Page content last updated . Spec covers 5 endpoints from crunchbase.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.
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.
bookface.ycombinator.com API
Search and retrieve detailed information about Y Combinator portfolio companies, including founder details, company profiles, recent launches, and current job openings. Easily discover startups by browsing the complete directory or looking up specific companies to learn about their founders, news, and hiring opportunities.
vcsheet.com API
Access investor profiles, venture funds, curated sheets, and press contacts from VCSheet.com. Supports listing, searching, and detailed profile lookups.
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.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
openvc.app API
Search through 16,000+ venture capital firms and angel investors on OpenVC. Filter by industry category (e.g., Energy, Fintech) to discover investors focused on a specific sector, then retrieve detailed profiles including firm type, investment thesis, check size, geographic focus, and portfolio companies.
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.