LLC Scraper avatar

LLC Scraper

Pricing

$4.99 / 1,000 results

Go to Apify Store
LLC Scraper

LLC Scraper

LLC Scraper extracts detailed company info from U.S. business registries by name and jurisdiction. Returns status, address, parsed components, and a direct profile URL. Ideal for lead generation, compliance, and company verification.

Pricing

$4.99 / 1,000 results

Rating

0.0

(0)

Developer

Nobel10 Technologies

Nobel10 Technologies

Maintained by Community

Actor stats

1

Bookmarked

39

Total users

2

Monthly active users

3 months ago

Last modified

Share

This Apify Actor lets you search and extract company information from various sources using a fast, headless scraper. It returns clean, structured JSON output with parsed address fields, status, jurisdiction, and more.

Features

  • 🔍 Company Search: Search for companies by name and optional jurisdiction
  • 📊 Detailed Extraction: Extract comprehensive company data including:
    • Company name, status, jurisdiction, company ID
    • Full address with intelligent parsing into components
    • International address format support
    • Jurisdiction codes and country information
  • 🌍 International Address Parsing: Automatically parses addresses into:
    • Street, city, state/province, postal code, country
    • Supports US, UK, EU, and other international formats
  • 🚀 Fast Performance: Optimized for speed
  • 🛡️ Error Handling: Comprehensive error handling and validation

Input Parameters:

  • company_name (required): Company name to search for (minimum 2 characters)
  • jurisdiction_code (optional): Jurisdiction code (e.g., 'us_il' for Illinois)
  • max_results (optional): Between 1 - 90, Default: 30

Sample Input:

{
"company_name": "Main Event Digital",
"jurisdiction_code": "us_il",
"max_results": 10
}

Sample Output:

{
"success": true,
"message": "Found 1 company(ies)",
"search_query": "Main Event Digital",
"jurisdiction_code": "us_il",
"total_companies_found": 1,
"companies": [
{
"name": "MAIN EVENT DIGITAL, LLC",
"url": "https://opencorporates.com/companies/us_il/LLC_08588872",
"company_id": "LLC_08588872",
"jurisdiction": "Illinois (US)",
"jurisdiction_code": "us_il",
"address": "117 CARY AVE, HIGHLAND PARK, IL, 60035",
"addressComponents": {
"street": "117 CARY AVE",
"city": "HIGHLAND PARK",
"state": "IL",
"zip": "60035",
"country": "US"
},
"status": "Good Standing"
}
]
}