# Law Firm Due Diligence Workflow

**Use case:** 

Verify California attorneys for compliance research by combining name searches, bar numbers, profile URLs, and detailed license data.

## Input

```json
{
  "searchQueries": [
    "Garcia",
    "Nguyen"
  ],
  "barNumbers": [
    "72700"
  ],
  "profileUrls": [
    {
      "url": "https://apps.calbar.ca.gov/attorney/Licensee/Detail/72700"
    }
  ],
  "maxResults": 50,
  "includeDetails": true
}
```

## Output

```json
{
  "searchQuery": {
    "label": "Search query",
    "format": "text"
  },
  "barNumber": {
    "label": "Bar number",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "licenseStatus": {
    "label": "License status",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "admissionDate": {
    "label": "Admission date",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "practiceAreas": {
    "label": "Practice areas",
    "format": "text"
  },
  "lawSchool": {
    "label": "Law school",
    "format": "text"
  },
  "hasDiscipline": {
    "label": "Has discipline",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [California State Bar Attorney Scraper](https://apify.com/automation-lab/california-state-bar-attorney-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/california-state-bar-attorney-scraper) to learn more, explore other use cases, and run it yourself.