Developer Reference
Company Lookup API Documentation
Company Lookup API Documentation: Extract company information from a domain including business name, industry classification, description, and social media links. Aggregates data from multiple public sources to provide a company profile. Beta feature with varying accuracy.
Company Lookup
Extract company information from a domain including business name, industry classification, description, and social media links. Aggregates data from multiple public sources to provide a company profile. Beta feature with varying accuracy.
GET
/v1/company
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| domain required | string | Company domain to lookup (e.g., "stripe.com") |
Response Fields
| Field | Description |
|---|---|
company.name | Official company name |
company.industry | Industry classification |
company.description | Business description |
company.founded | Year founded (if known) |
company.employees | Employee count range |
company.location | Headquarters location |
social | LinkedIn, Twitter, Facebook links |
Use Cases
- Lead enrichment and qualification
- CRM data augmentation
- Competitive intelligence
- Vendor/partner research
Example Request
curl "https://domscan.net/v1/company?domain=stripe.com"
Example Response
{
"domain": "stripe.com",
"company": {
"name": "Stripe, Inc.",
"industry": "Financial Technology",
"description": "Online payment processing platform",
"founded": 2010,
"employees": "1000-5000",
"location": "San Francisco, CA"
},
"social": {
"linkedin": "https://linkedin.com/company/stripe",
"twitter": "https://twitter.com/stripe"
}
}
Beta: This API is in beta. Results may vary in accuracy and completeness. Data is aggregated from public sources.