# Dealroom AI unicorn company scraper example

**Use case:** 

Filter Dealroom's public Power Law index for United States AI unicorns and export valuation and company profile fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://dealroom.co/companies/openai"
    },
    {
      "url": "https://dealroom.co/companies/palantir"
    }
  ],
  "searchTerms": [
    "AI"
  ],
  "countries": [
    "United States"
  ],
  "sectors": [
    "AI"
  ],
  "tiers": [
    "Unicorn"
  ],
  "enrichProfiles": false,
  "maxItems": 100,
  "profileConcurrency": 3
}
```

## Output

```json
{
  "name": {
    "label": "Company",
    "format": "string"
  },
  "profileUrl": {
    "label": "Dealroom profile",
    "format": "string"
  },
  "sector": {
    "label": "Sector",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "foundedYear": {
    "label": "Founded",
    "format": "integer"
  },
  "valuationLabel": {
    "label": "Valuation",
    "format": "string"
  },
  "tier": {
    "label": "Tier",
    "format": "string"
  },
  "exitStatus": {
    "label": "Exit status",
    "format": "string"
  },
  "revenueRange": {
    "label": "Revenue range",
    "format": "string"
  },
  "headcountRange": {
    "label": "Headcount",
    "format": "string"
  },
  "enrichmentStatus": {
    "label": "Enrichment",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Dealroom Power Law Company Profiles Scraper](https://apify.com/automation-lab/dealroom-power-law-company-profiles-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/dealroom-power-law-company-profiles-scraper) to learn more, explore other use cases, and run it yourself.