DEV Community

Donny Nguyen
Donny Nguyen

Posted on

Company Intelligence API API — Free to Use

Getting Complete Company Intelligence from a Single API Call

When you need comprehensive company data, juggling multiple APIs is painful. The Company Intelligence API consolidates everything—LinkedIn profiles, funding info, tech stacks, and employee counts—into one clean response.

What It Does

This API enriches domain names with actionable intelligence:

  • LinkedIn company pages - Direct links and verified data
  • Crunchbase funding - Investment rounds and amounts
  • Tech stack - Technologies powering the site (via BuiltWith)
  • Contact information - Email, phone, and address data
  • Employee count - Current headcount from verified sources

Perfect for lead generation, market research, competitor analysis, or B2B sales automation.

How to Use It

The main endpoint is straightforward. You pass a domain and specify what data you want included:

const domain = 'github.com';
const apiKey = 'YOUR_RAPIDAPI_KEY';

fetch('https://company-intelligence-hub-api-production.up.railway.app/api/company/enrich?domain=' + domain + '&include_funding=true&include_tech=true', {
  method: 'GET',
  headers: {
    'x-rapidapi-key': apiKey,
    'x-rapidapi-host': 'company-intelligence-hub-api.p.rapidapi.com'
  }
})
.then(response => response.json())
.then(data => {
  console.log('Company Name:', data.company_name);
  console.log('Employee Count:', data.employee_count);
  console.log('LinkedIn:', data.linkedin_url);
  console.log('Tech Stack:', data.technologies);
  console.log('Funding:', data.funding);
  console.log('Email:', data.contact_email);
})
.catch(error => console.error('Error:', error));
Enter fullscreen mode Exit fullscreen mode

Response Example

{
  "company_name": "GitHub",
  "employee_count": 2100,
  "linkedin_url": "https://www.linkedin.com/company/github",
  "crunchbase_url": "https://www.crunchbase.com/organization/github",
  "contact_email": "support@github.com",
  "technologies": ["React", "Node.js", "PostgreSQL"],
  "funding": {
    "total_raised": "$350M",
    "latest_round": "Series D"
  }
}
Enter fullscreen mode Exit fullscreen mode

Query Parameters

  • domain - The company's website domain (required)
  • include_funding - Boolean to fetch Crunchbase data
  • include_tech - Boolean to fetch technology stack

Real-World Use Case

Imagine automating a sales pipeline where you upload a list of domains and instantly get decision-maker emails, company size, funding status, and their tech choices. No more manual research tabs.

Get Started

The API is available on RapidAPI with a free tier to test it out. Check out the Company Intelligence API on RapidAPI and start enriching your data today.

Top comments (0)