# Owler company profile extractor for one URL

**Use case:** 

Extract a public Owler company profile URL into structured company data, including CEO, revenue and employee estimates, competitors, and funding.

## Input

```json
{
  "companyDomains": [
    "owler.com",
    "apple.com"
  ],
  "companyNames": [],
  "startUrls": [
    {
      "url": "https://www.owler.com/company/owler"
    }
  ],
  "maxItems": 1,
  "maxConcurrency": 3,
  "includeLeadership": true,
  "includeCompetitors": true,
  "includeFunding": true,
  "includeAcquisitions": true,
  "includeInvestments": true,
  "includeNews": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "input": {
    "label": "Original input",
    "format": "text"
  },
  "inputType": {
    "label": "Input type",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Owler source",
    "format": "link"
  },
  "companyId": {
    "label": "Owler ID",
    "format": "number"
  },
  "name": {
    "label": "Company",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "ownership": {
    "label": "Ownership",
    "format": "text"
  },
  "foundedYear": {
    "label": "Founded",
    "format": "number"
  },
  "industries": {
    "label": "Industries",
    "format": "array"
  },
  "headquarters": {
    "label": "Headquarters",
    "format": "text"
  },
  "employeeEstimate": {
    "label": "Employees",
    "format": "number"
  },
  "employeeRange": {
    "label": "Employee range",
    "format": "text"
  },
  "revenueEstimateUsd": {
    "label": "Revenue estimate (USD)",
    "format": "number"
  },
  "revenueRange": {
    "label": "Revenue range",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "ceo": {
    "label": "CEO",
    "format": "object"
  },
  "leadership": {
    "label": "Leadership",
    "format": "array"
  },
  "competitors": {
    "label": "Competitors",
    "format": "array"
  },
  "funding": {
    "label": "Funding",
    "format": "object"
  },
  "acquisitions": {
    "label": "Acquisitions",
    "format": "array"
  },
  "investments": {
    "label": "Investments",
    "format": "array"
  },
  "news": {
    "label": "News",
    "format": "array"
  },
  "error": {
    "label": "Error",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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