# Crunchbase AI Investor Research Workflow

**Use case:** 

Build an AI company research list from Crunchbase with profile, founder, investor, and funding-round cards.

## Input

```json
{
  "apiKey": "***",
  "mode": "searchOrganizations",
  "organizationPermalinks": [
    "apple",
    "openai",
    "tesla-motors"
  ],
  "searchQuery": "artificial intelligence",
  "fundingStage": "series_b",
  "location": "San Francisco",
  "category": "artificial-intelligence",
  "minEmployees": 51,
  "maxResults": 50,
  "includeCards": [
    "founders",
    "investors",
    "funding_rounds",
    "board_members_and_advisors"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Company",
    "format": "text"
  },
  "permalink": {
    "label": "Permalink",
    "format": "text"
  },
  "shortDescription": {
    "label": "Description",
    "format": "text"
  },
  "websiteUrl": {
    "label": "Website",
    "format": "link"
  },
  "foundedOn": {
    "label": "Founded",
    "format": "date"
  },
  "operatingStatus": {
    "label": "Status",
    "format": "text"
  },
  "companyType": {
    "label": "Type",
    "format": "text"
  },
  "totalFundingUsd": {
    "label": "Total Funding ($)",
    "format": "number"
  },
  "lastFundingType": {
    "label": "Last Round",
    "format": "text"
  },
  "lastFundingOn": {
    "label": "Last Funded",
    "format": "date"
  },
  "employeeCount": {
    "label": "Employees",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "stockSymbol": {
    "label": "Stock",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Crunchbase Scraper](https://apify.com/automation-lab/crunchbase-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/crunchbase-scraper) to learn more, explore other use cases, and run it yourself.