LawyerLegion Attorney Directory Scraper
Pricing
Pay per event
LawyerLegion Attorney Directory Scraper
⚖️ Extract public Lawyer Legion attorney profiles, firm contacts, practice areas, education, and bar data for legal lead workflows.
Pricing
Pay per event
Rating
0.0
(0)
Developer
Stas Persiianenko
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Extract public attorney lead data from Lawyer Legion directory and profile pages.
The actor turns Lawyer Legion search pages into structured attorney records you can export to JSON, CSV, Excel, Google Sheets, or your CRM.
What does LawyerLegion Attorney Directory Scraper do?
LawyerLegion Attorney Directory Scraper collects public attorney information from lawyers.lawyerlegion.com.
It can start from a Lawyer Legion directory URL such as a state, county, or practice-area page.
It follows directory pagination automatically until it reaches your requested limit.
It can also process individual public attorney profile URLs.
For each attorney, it saves contact, firm, location, practice, résumé, and provenance fields when they are visible on the public page.
Who is it for?
Legal marketers use it to build targeted outreach lists.
Recruiters use it to research attorneys by practice area and geography.
Law firms use it to monitor comparable firms and attorneys in a local market.
Sales teams use it to find publicly listed legal service businesses.
Researchers use it to compile public attorney directory data for analysis.
Why use this actor?
✅ It is focused on Lawyer Legion, not a generic web crawler.
✅ It works with public directory URLs that are easy to copy from the site.
✅ It captures profile-level details when available.
✅ It preserves source URLs for auditability.
✅ It outputs one clean row per attorney.
What data can you extract?
| Field | Description |
|---|---|
name | Attorney name |
firmName | Firm or organization name |
phone | Public phone number |
website | Public website link |
emailUrl | Lawyer Legion message URL when visible |
profileUrl | Lawyer Legion attorney profile URL |
streetAddress | Street address |
locality | City |
region | State or region |
postalCode | ZIP/postal code |
latitude | Latitude when embedded in directory markup |
longitude | Longitude when embedded in directory markup |
practiceAreas | Practice areas from the profile |
barAdmissions | Admissions or jurisdictions when visible |
boardCertifications | Board certification data when visible |
education | Education résumé entries |
bio | Public biography or profile description |
imageUrl | Attorney image URL |
directoryUrl | Directory page where the record was found |
sourceUrl | Page used as the source for the saved record |
pageNumber | Directory pagination page number |
scrapedAt | Timestamp when the item was saved |
How much does it cost to scrape Lawyer Legion attorneys?
The actor uses pay-per-event pricing.
There is a small start fee for each run.
There is a per-attorney result fee for each saved attorney record.
The exact price shown on the Apify Store page is authoritative.
Use a low maxItems value for your first test run.
Scale up after you confirm the output matches your workflow.
How to scrape Lawyer Legion
-
Open Lawyer Legion in your browser.
-
Search by state, county, city, or practice area.
-
Copy the public directory URL.
-
Paste it into
startUrls. -
Set
maxItems. -
Keep
includeProfileDetailsenabled for richer profile data. -
Run the actor.
-
Export the dataset.
Input configuration
startUrls
Use Lawyer Legion directory URLs or attorney profile URLs.
Example:
[{"url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"}]
maxItems
Maximum attorney records to save.
Set this low for trial runs.
Increase it for full directory exports.
includeProfileDetails
When enabled, the actor visits each attorney profile page.
This improves biography, practice area, education, admission, and certification coverage.
Disable it only when you need faster directory-only extraction.
maxConcurrency
Reserved for compatibility and future tuning.
The current implementation uses polite sequential requests.
Example input
{"startUrls": [{"url": "https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"}],"maxItems": 10,"includeProfileDetails": true,"maxConcurrency": 1}
Example output
{"name": "Example Attorney","firmName": "Example Law Firm","phone": "310-555-1234","website": "https://example-law.com","profileUrl": "https://lawyers.lawyerlegion.com/california/example-attorney-123","locality": "Los Angeles","region": "CA","practiceAreas": ["Personal Injury"],"education": ["Example Law School", "J.D."],"sourceUrl": "https://lawyers.lawyerlegion.com/california/example-attorney-123","scrapedAt": "2026-01-01T00:00:00.000Z"}
Output formats
You can download results as JSON.
You can download results as CSV.
You can download results as Excel.
You can connect the dataset to integrations.
You can access results through the Apify API.
Tips for best results
Use specific Lawyer Legion URLs.
Practice-area and county pages usually produce more targeted leads.
Keep profile details enabled when data completeness matters.
Use maxItems to control run size.
Review a small sample before running a large export.
Common use cases
Build attorney prospecting lists.
Research personal injury attorneys in a county.
Compare law firm coverage across markets.
Find attorneys associated with specific practice areas.
Enrich legal CRM records with public profile URLs.
Monitor public directory visibility for a law firm.
Integrations
Send results to Google Sheets for review.
Export CSV into HubSpot, Salesforce, Pipedrive, or Airtable.
Use webhooks to trigger enrichment workflows after a run finishes.
Use the Apify API to pull records into your internal database.
Connect the actor to Make, Zapier, or n8n for automated lead workflows.
API usage
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('automation-lab/lawyerlegion-attorney-directory-scraper').call({startUrls: [{ url: 'https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury' }],maxItems: 10,includeProfileDetails: true});console.log(run.defaultDatasetId);
Python
from apify_client import ApifyClientclient = ApifyClient('MY-APIFY-TOKEN')run = client.actor('automation-lab/lawyerlegion-attorney-directory-scraper').call(run_input={'startUrls': [{'url': 'https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury'}],'maxItems': 10,'includeProfileDetails': True,})print(run['defaultDatasetId'])
cURL
curl -X POST "https://api.apify.com/v2/acts/automation-lab~lawyerlegion-attorney-directory-scraper/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"startUrls":[{"url":"https://lawyers.lawyerlegion.com/california/los-angeles-county/personal-injury"}],"maxItems":10,"includeProfileDetails":true}'
MCP usage
Use this actor from MCP-compatible tools through Apify MCP.
Claude Code URL:
https://mcp.apify.com/?tools=automation-lab/lawyerlegion-attorney-directory-scraper
Add it in Claude Code:
$claude mcp add apify-lawyerlegion "https://mcp.apify.com/?tools=automation-lab/lawyerlegion-attorney-directory-scraper"
Claude Desktop JSON config:
{"mcpServers": {"apify-lawyerlegion": {"url": "https://mcp.apify.com/?tools=automation-lab/lawyerlegion-attorney-directory-scraper"}}}
Claude Desktop can use the same Apify MCP server URL.
Example prompts:
- "Run the LawyerLegion scraper for this Los Angeles personal injury URL and summarize the firms."
- "Export the first 25 attorneys from this Lawyer Legion directory to CSV."
- "Find attorney profiles with websites and phone numbers from this directory page."
Data quality notes
The actor extracts public data visible on Lawyer Legion pages.
Some attorneys may not publish a phone number.
Some profiles may not include education or admissions.
Directory snippets may be less complete than profile pages.
The sourceUrl field shows which page supplied the final record.
Legality and responsible use
This actor is designed for public web pages.
Always respect applicable laws and platform terms.
Do not use scraped data for spam, harassment, or prohibited profiling.
Review your local rules before contacting attorneys.
Use reasonable run sizes.
FAQ
Can I scrape an individual attorney profile?
Yes. Paste a public Lawyer Legion profile URL into startUrls.
Does this actor require a Lawyer Legion account?
No. It is designed for public directory and profile pages.
Troubleshooting
Why did I get fewer results than maxItems?
The selected directory may contain fewer public records than your limit.
The actor stops when pagination ends.
Why are some fields empty?
Lawyer Legion profiles vary.
If the public page does not show education, admissions, or website data, the corresponding output field can be empty.
Related scrapers
Explore related legal and lead-generation actors from Automation Lab:
Support
If the site layout changes, open an issue from the actor page.
Include your run ID and input.
A reproducible example helps us fix extraction issues quickly.
Changelog
Initial version extracts public Lawyer Legion directory and profile data.
Development notes
The actor uses HTTP requests and Cheerio parsing.
It does not require a browser for the current public pages.
It uses a conservative request pattern.
It charges one result event per saved attorney record.