# Find Company Competitors with Revenue and Headcount

**Use case:** 

Get a company's named competitor set with follow-on profile links, plus its competitor count, industry, revenue range, and employee count.

## Input

```json
{
  "companyUrls": [
    "https://www.owler.com/company/salesforce",
    "https://www.owler.com/company/hubspot",
    "https://www.owler.com/company/zendesk"
  ]
}
```

## Output

```json
{
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "industry": {
    "label": "Primary industry",
    "format": "string"
  },
  "totalCompetitors": {
    "label": "Competitor count",
    "format": "integer"
  },
  "competitors": {
    "label": "Competitors",
    "format": "array"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Owler Company Intelligence API](https://apify.com/johnvc/owler-company-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/owler-company-api) to learn more, explore other use cases, and run it yourself.