Search Company

Search for companies easily with our Company Search API. Provide key details like name, location, industry, or size, and our algorithm fetches precise and relevant company information.

cURL 'https://api.enrich.so/v1/api/search-company' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "name": "Example Company",
  "website": "https://example.com",
  "tagline": "Innovation at its best",
  "type": "Private",
  "postal_code": "123456",
  "description": "A leading company in technology",
  "industries": ["Technology", "Software"],
  "location_country": "United States",
  "location_city": "San Francisco",
  "specialities": ["AI", "Cloud Computing"],
  "followers": 5000,
  "staff_count": 200,
  "page_size": 10,
  "current_page": 1
}'
  1. staff_count / staff_count_max will return team with size 0 to staff count provided.

  2. staff_count_min will return with size greater than staff count min provided

  3. staff_count_min and staff_count_max can be used for providing range.

staff_count will be prioritized over staff_count_min and staff_count_max.

Example response

Status Code: 200 OK

{
    "success": true,
    "message": "Companies record found.",
    "data": {
        "current_page": 1,
        "total_page": 1,
        "page_size": 20,
        "companies": [
            {
                "company_name": "Maximise.ai",
                "tagline": "Identify anonymous visitors on your site. Automate personalized outreach via email, LinkedIn, and Phone calls.",
                "web_address": "maximise.ai",
                "zip_code": "",
                "city": "",
                "country": "",
                "geo_region": "",
                "industries": [
                    "Software Development"
                ],
                "expertise": [
                    "lead generation",
                    "website visitor identification",
                    "B2B Lead generation"
                ],
                "type": "Partnership",
                "profile_id": "104336610",
                "icon_url": "https://media.licdn.com/dms/image/v2/D4D0BAQH5LqFS9E_WmA/company-logo_400_400/company-logo_400_400/0/1722246140478/maximise_ai_logo?e=1732147200&v=beta&t=Z35YqQF-FORpOte1CQVVtPSEviGpoH7wuBnvXPdSQws",
                "summary": "Identify individuals and companies visiting your site. Automate personalized outreach via email, LinkedIn, and Phone calls. Immediate ROI Guaranteed.",
                "supporters": 5,
                "team_size": 0,
                "linkedin_profile": "https://www.linkedin.com/company/104336610/"
            }
        ]
    },
    "total_credits": 100000,
    "credits_used": 3174.05,
    "credits_remaining": 96825.95
}

Status code: 404 NOT FOUND

{
    "message": "We couldn't find results for this query"
}

Last updated