# Enrich Company Records in an n8n Workflow

**Use case:** 

Add company enrichment to an n8n workflow: pass company URLs, get rows with industry, revenue range, employee count, funding, and HQ location.

## Input

```json
{
  "companyUrls": [
    "https://www.owler.com/company/shopify",
    "https://www.owler.com/company/squarespace",
    "https://www.owler.com/company/wix"
  ]
}
```

## Output

```json
{
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "industry": {
    "label": "Primary industry",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "estimatedAnnualRevenue": {
    "label": "Revenue range",
    "format": "string"
  },
  "employeeCount": {
    "label": "Employee count",
    "format": "integer"
  },
  "totalCompetitors": {
    "label": "Competitor count",
    "format": "integer"
  },
  "totalFunding": {
    "label": "Total funding",
    "format": "integer"
  },
  "founded": {
    "label": "Founded",
    "format": "integer"
  },
  "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.