enrich_company
Get a full company profile — headcount, industry, revenue range, tech stack, funding history, HQ phone, and social links.
Credits: 1 credit
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company_website | string (url) | optional | Company website URL — recommended for highest accuracy, e.g. https://acme.com |
company_name | string | optional | Company name, e.g. Acme Inc |
company_linkedin_url | string (url) | optional | Company LinkedIn URL |
company_id | string | optional | Prospeo company_id from a prior enrichment or search result |
Provide at least one of the fields. Using company_website gives the most accurate match.
Example
{
"company_website": "https://stripe.com"
}Response
{
"success": true,
"data": {
"found": true,
"company": {
"company_id": "xyz789",
"name": "Stripe",
"website": "https://stripe.com",
"domain": "stripe.com",
"industry": "Fintech",
"employee_count": 8000,
"employee_range": "5001-10000",
"revenue_range_printed": "$1B+",
"founded": 2010,
"description": "Stripe is a technology company that builds economic infrastructure for the internet.",
"location": {
"city": "San Francisco",
"state": "California",
"country": "United States"
},
"funding": {
"total_raised": 2200000000,
"last_round": "Series I",
"last_round_date": "2023-03-15"
},
"technology": { "...": "..." },
"linkedin_url": "https://linkedin.com/company/stripe",
"twitter_url": "https://twitter.com/stripe",
"phone_hq": {
"phone_hq": "+14155551234",
"phone_hq_national": "(415) 555-1234",
"phone_hq_international": "+14155551234",
"phone_hq_country": "United States",
"phone_hq_country_code": "US"
},
"keywords": ["payments", "fintech", "infrastructure"],
"logo_url": "https://..."
}
}
}Company object fields
| Field | Type | Description |
|---|---|---|
company_id | string | Prospeo internal company ID |
name | string | Company legal name |
website / domain | string | Primary website and domain |
description / description_ai | string | Human-written and AI-generated description |
industry | string | Primary industry category |
employee_count / employee_range | number / string | Headcount and banded range (e.g. “51-200”) |
revenue_range / revenue_range_printed | object / string | Revenue band (min/max) and human label |
founded | number | Year founded |
technology | object | Tech stack detected on company’s website |
funding | object | total_raised, last_round, last_round_date |
linkedin_url / twitter_url / … | string | Social profile links |
phone_hq | object | HQ phone: phone_hq, phone_hq_national, phone_hq_international, phone_hq_country, phone_hq_country_code |
keywords | string[] | Descriptive keywords |
logo_url | string | Company logo image URL |
job_postings | object | Active job posting metadata |
Last updated on