# Active London Law Firms Data Extractor

**Use case:** 

Extract a list of active law firms located in London. Receive data including company details filtered by SIC code.

## Input

```json
{
  "snapshotMonth": "",
  "sicCodePrefixes": [
    "69"
  ],
  "sicKeywords": [],
  "nameContains": "",
  "companyStatuses": [
    "Active"
  ],
  "companyCategories": [],
  "postCodePrefixes": [],
  "postTowns": [
    "LONDON"
  ],
  "counties": [],
  "countries": [],
  "incorporatedSince": "",
  "incorporatedBefore": "",
  "maxResults": 300,
  "logEveryNRows": 100000
}
```

## Output

```json
{
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "companyNumber": {
    "label": "Company number",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "incorporationDate": {
    "label": "Incorporation date",
    "format": "string"
  },
  "address": {
    "label": "Registered address",
    "format": "object"
  },
  "sicCodes": {
    "label": "SIC codes",
    "format": "array"
  },
  "url": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [UK Companies House Bulk Scraper](https://apify.com/logiover/uk-companies-house-bulk-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/uk-companies-house-bulk-scraper) to learn more, explore other use cases, and run it yourself.