Build with PrivCo Data
Integrate comprehensive private company intelligence directly into your applications, workflows, and systems with our powerful API.
Powerful Features for Developers
Everything you need to build sophisticated applications with private company data
Complete Database Access
Access our entire database of 1M+ private companies with detailed financial data, ownership structures, and market intelligence.
Real-Time Data
Get instant access to the latest company updates, funding rounds, acquisitions, and financial performance metrics.
RESTful API
Simple, well-documented REST API with JSON responses. Easy to integrate into your existing workflows and applications.
Enterprise Security
Bank-grade encryption, OAuth 2.0 authentication, and role-based access control to keep your data secure.
Custom Rate Limits
Flexible rate limits tailored to your use case. Scale up as your business grows without interruption.
Comprehensive Documentation
Detailed API reference, code examples in multiple languages, and interactive API explorer to get you started quickly.
API Use Cases
See how leading organizations use the PrivCo API
- Identify acquisition targets matching specific criteria
- Track portfolio companies and competitors
- Monitor funding activity in target sectors
- Automated KYC and background checks
- Ownership structure verification
- Financial health monitoring
- Industry trend analysis and reporting
- Competitive landscape monitoring
- Market sizing and segmentation
- Lead scoring and prioritization
- Account-based marketing campaigns
- Territory planning and analysis
API Endpoints
A preview of our RESTful API endpoints
/api/v1/companiesSearch and filter companies by various criteria
/api/v1/companies/{id}Get detailed information about a specific company
/api/v1/companies/{id}/financialsAccess financial data and performance metrics
/api/v1/companies/{id}/ownershipRetrieve ownership structure and shareholder information
/api/v1/companies/{id}/fundingGet funding history and investor details
/api/v1/industriesList all industries and sectors in the database
Simple Integration
Get started in minutes with our straightforward API
// Initialize the PrivCo API client
const PrivCo = require('@privco/api-client');
const client = new PrivCo({
apiKey: process.env.PRIVCO_API_KEY
});
// Search for companies
const companies = await client.companies.search({
industry: 'Financial Services',
revenue_min: 10000000,
location: 'New York, NY',
limit: 10
});
// Get detailed company information
const company = await client.companies.get('company-id-123');
console.log(`Found ${companies.total} companies`);
console.log(company.name, company.revenue, company.employees);Node.js
npm install @privco/api-clientPython
pip install privco-apiRuby
gem install privco-api