Crunchbase Search API

The Search API from Crunchbase — 43 operation(s) for search.

Operations 43

POST /data/searches/organizations Search Organization Entities #
POST /data/searches/people Search Person Entities #
POST /data/searches/funding_rounds Search FundingRound Entities #
POST /data/searches/acquisitions Search Acquisition Entities #
POST /data/searches/investments Search Investment Entities #
POST /data/searches/events Search Event Entities #
POST /data/searches/press_references Search PressReference Entities #
POST /data/searches/funds Search Fund Entities #
POST /data/searches/event_appearances Search EventAppearance Entities #
POST /data/searches/ipos Search Ipo Entities #
POST /data/searches/ownerships Search Ownership Entities #
POST /data/searches/categories Search Category Entities #
POST /data/searches/category_groups Search CategoryGroup Entities #
POST /data/searches/locations Search Location Entities #
POST /data/searches/jobs Search Job Entities #
POST /data/searches/addresses Search Address Entities #
POST /data/searches/degrees Search Degree Entities #
POST /data/searches/diversity_spotlights Search DiversitySpotlight Entities #
POST /data/searches/principals Search Principal Entities #
POST /data/searches/key_employee_changes Search KeyEmployeeChange Entities #
POST /data/searches/layoffs Search Layoff Entities #
POST /data/searches/awards Search Award Entities #
POST /data/searches/current_valuation_estimates Search CurrentValuationEstimate Entities #
POST /data/searches/growth_insights Search GrowthInsight Entities #
POST /data/searches/investor_insights Search InvestorInsight Entities #
POST /data/searches/investor_matches Search InvestorMatch Entities #
POST /data/searches/legal_proceedings Search LegalProceeding Entities #
POST /data/searches/market_insights Search MarketInsight Entities #
POST /data/searches/market_insight_reasons Search MarketInsightReason Entities #
POST /data/searches/micro_categories Search MicroCategory Entities #
POST /data/searches/org_similarities Search OrgSimilarity Entities #
POST /data/searches/partnership_announcements Search PartnershipAnnouncement Entities #
POST /data/searches/products Search Product Entities #
POST /data/searches/product_launches Search ProductLaunch Entities #
POST /data/searches/product_similarities Search ProductSimilarity Entities #
POST /data/searches/research_insights Search ResearchInsight Entities #
POST /data/searches/acquisition_predictions Search AcquisitionPrediction Entities #
POST /data/searches/closure_predictions Search ClosurePrediction Entities #
POST /data/searches/funding_predictions Search FundingPrediction Entities #
POST /data/searches/growth_predictions Search GrowthPrediction Entities #
POST /data/searches/ipo_predictions Search IpoPrediction Entities #
POST /data/searches/layoff_predictions Search LayoffPrediction Entities #
POST /data/searches/remain_private_predictions Search RemainPrivatePrediction Entities #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/crunchbase-data-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

crunchbase-data-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Crunchbase Data Search API
  version: 1.1.0
  contact:
    email: partnerships@crunchbase.com
  termsOfService: https://data.crunchbase.com/docs/terms
  description: 'Operations tagged Search across 6 of this provider''s published API definitions: crunchbase-data-advanced-financials-openapi.yml, crunchbase-data-core-financials-openapi.yml, crunchbase-data-firmographic-openapi.yml, crunchbase-data-insights-openapi.yml, crunchbase-data-predictions-insights-openapi.yml, crunchbase-data-predictions-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.crunchbase.com/v4
security:
- ApiKeyAuthHeader: []
tags:
- name: Search
paths:
  /data/searches/organizations:
    post:
      tags:
      - Search
      summary: Search Organization Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchOrganizations
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/OrganizationSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/people:
    post:
      tags:
      - Search
      summary: Search Person Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchPeople
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/PersonSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/funding_rounds:
    post:
      tags:
      - Search
      summary: Search FundingRound Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchFundingRounds
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FundingRoundEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/FundingRoundSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/acquisitions:
    post:
      tags:
      - Search
      summary: Search Acquisition Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchAcquisitions
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AcquisitionEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/AcquisitionSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/investments:
    post:
      tags:
      - Search
      summary: Search Investment Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchInvestments
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InvestmentEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/InvestmentSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/events:
    post:
      tags:
      - Search
      summary: Search Event Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchEvents
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/EventSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/press_references:
    post:
      tags:
      - Search
      summary: Search PressReference Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchPressReferences
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PressReferenceEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/PressReferenceSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/funds:
    post:
      tags:
      - Search
      summary: Search Fund Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchFunds
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FundEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/FundSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/event_appearances:
    post:
      tags:
      - Search
      summary: Search EventAppearance Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchEventAppearances
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventAppearanceEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/EventAppearanceSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/ipos:
    post:
      tags:
      - Search
      summary: Search Ipo Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchIpos
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IpoEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/IpoSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/ownerships:
    post:
      tags:
      - Search
      summary: Search Ownership Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchOwnerships
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OwnershipEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/OwnershipSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/categories:
    post:
      tags:
      - Search
      summary: Search Category Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchCategories
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CategoryEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/CategorySearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/category_groups:
    post:
      tags:
      - Search
      summary: Search CategoryGroup Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchCategoryGroups
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CategoryGroupEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/CategoryGroupSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/locations:
    post:
      tags:
      - Search
      summary: Search Location Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchLocations
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LocationEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/LocationSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/jobs:
    post:
      tags:
      - Search
      summary: Search Job Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchJobs
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JobEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/JobSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/addresses:
    post:
      tags:
      - Search
      summary: Search Address Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchAddresses
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddressEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/AddressSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/degrees:
    post:
      tags:
      - Search
      summary: Search Degree Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchDegrees
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DegreeEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/DegreeSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/diversity_spotlights:
    post:
      tags:
      - Search
      summary: Search DiversitySpotlight Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchDiversitySpotlights
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DiversitySpotlightEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/DiversitySpotlightSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/principals:
    post:
      tags:
      - Search
      summary: Search Principal Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchPrincipals
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PrincipalEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/PrincipalSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/key_employee_changes:
    post:
      tags:
      - Search
      summary: Search KeyEmployeeChange Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchKeyEmployeeChanges
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KeyEmployeeChangeEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/KeyEmployeeChangeSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/layoffs:
    post:
      tags:
      - Search
      summary: Search Layoff Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchLayoffs
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LayoffEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/LayoffSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/awards:
    post:
      tags:
      - Search
      summary: Search Award Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchAwards
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AwardEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/AwardSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/current_valuation_estimates:
    post:
      tags:
      - Search
      summary: Search CurrentValuationEstimate Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchCurrentValuationEstimates
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CurrentValuationEstimateEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/CurrentValuationEstimateSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/growth_insights:
    post:
      tags:
      - Search
      summary: Search GrowthInsight Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchGrowthInsights
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GrowthInsightEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/GrowthInsightSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/investor_insights:
    post:
      tags:
      - Search
      summary: Search InvestorInsight Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchInvestorInsights
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InvestorInsightEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/InvestorInsightSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/investor_matches:
    post:
      tags:
      - Search
      summary: Search InvestorMatch Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchInvestorMatches
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InvestorMatchEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/InvestorMatchSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/legal_proceedings:
    post:
      tags:
      - Search
      summary: Search LegalProceeding Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchLegalProceedings
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LegalProceedingEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/LegalProceedingSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/market_insights:
    post:
      tags:
      - Search
      summary: Search MarketInsight Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchMarketInsights
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarketInsightEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/MarketInsightSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/market_insight_reasons:
    post:
      tags:
      - Search
      summary: Search MarketInsightReason Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchMarketInsightReasons
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarketInsightReasonEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/MarketInsightReasonSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/micro_categories:
    post:
      tags:
      - Search
      summary: Search MicroCategory Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchMicroCategories
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MicroCategoryEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/MicroCategorySearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/org_similarities:
    post:
      tags:
      - Search
      summary: Search OrgSimilarity Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchOrgSimilarities
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrgSimilarityEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/OrgSimilaritySearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/partnership_announcements:
    post:
      tags:
      - Search
      summary: Search PartnershipAnnouncement Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchPartnershipAnnouncements
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartnershipAnnouncementEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/PartnershipAnnouncementSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/products:
    post:
      tags:
      - Search
      summary: Search Product Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchProducts
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProductEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/ProductSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/product_launches:
    post:
      tags:
      - Search
      summary: Search ProductLaunch Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchProductLaunches
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProductLaunchEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/ProductLaunchSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/product_similarities:
    post:
      tags:
      - Search
      summary: Search ProductSimilarity Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchProductSimilarities
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProductSimilarityEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/ProductSimilaritySearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/research_insights:
    post:
      tags:
      - Search
      summary: Search ResearchInsight Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchResearchInsights
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResearchInsightEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/ResearchInsightSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/acquisition_predictions:
    post:
      tags:
      - Search
      summary: Search AcquisitionPrediction Entities
      description: Can perform more complex filtering based on the query defined in the request body
      operationId: searchAcquisitionPredictions
      requestBody:
        description: Search Query Parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AcquisitionPredictionEntitySearch'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/AcquisitionPredictionSearchResults'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '404':
          $ref: '#/components/responses/GenericNotFoundError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /data/searches/closure_predictions:
    post:
     

# --- truncated at 32 KB (1580 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/crunchbase-data/refs/heads/main/openapi/crunchbase-data-search-api-openapi.yml