# Avvo Lawyer Profile Extractor

**Use case:** 

Extract lawyer profiles, including contact details and ratings, from Avvo for up to 50 attorneys across multiple listing pages.

## Input

```json
{
  "startUrl": "https://www.avvo.com/business-lawyer/al.html",
  "maxLawyers": 50,
  "maxListingPages": 5,
  "includeReviews": false,
  "includeContactInfo": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Attorney Name",
    "format": "text"
  },
  "rating": {
    "label": "Avvo Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "practiceAreas": {
    "label": "Practice Areas",
    "format": "array"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "yearsLicensed": {
    "label": "Years Licensed",
    "format": "number"
  },
  "barAdmissions": {
    "label": "Bar Admissions",
    "format": "array"
  },
  "languages": {
    "label": "Languages",
    "format": "array"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Avvo Scraper ⚖️](https://apify.com/shahidirfan/avvo-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/avvo-scraper) to learn more, explore other use cases, and run it yourself.