Prospeo é uma plataforma de dados B2B que encontra e-mails corporativos e celulares verificados, enriquece perfis de pessoas e empresas e expõe um banco pesquisável de leads e empresas com mais de 20 filtros.
Com o Prospeo, você pode:
- Encontrar detalhes de contato verificados: Descobrir e-mails corporativos e celulares a partir de um nome, URL do LinkedIn ou empresa
- Enriquecer pessoas e empresas: Completar dados de perfil incluindo histórico profissional, localização, stack de tecnologia e sinais de funding
- Enriquecer em lote em escala: Processar arrays de identificadores em uma única requisição para workflows de alto volume
- Pesquisar o banco B2B: Filtrar leads e contas por cargo, localização, indústria, headcount e mais
- Monitorar uso da conta: Verificar créditos restantes, créditos usados e datas de renovação antes de operações caras
No Zoen, a integração com o Prospeo permite que seus agentes façam discovery de contatos e enriquecimento de CRM de forma programática:
- Enriquecer uma pessoa: Use
prospeo_enrich_person para casar um contato e retornar e-mail, celular e dados de perfil verificados
- Enriquecer uma empresa: Use
prospeo_enrich_company para resolver um domínio, URL do LinkedIn ou nome em um perfil completo da empresa
- Enriquecimento em lote: Use
prospeo_bulk_enrich_person e prospeo_bulk_enrich_company para workflows em batch
- Pesquisar o banco: Use
prospeo_search_person e prospeo_search_company com objetos de filtro JSON para encontrar leads
- Construir UIs de filtro dinâmicas: Use
prospeo_search_suggestions para autocompletar localizações e cargos
- Acompanhar uso: Use
prospeo_account_information para monitorar créditos e status do plano de dentro de um workflow
Isso transforma o Prospeo em uma fonte confiável de dados de contatos e empresas para seus agentes — conecte-o a prospecção de vendas, higiene de CRM, lead scoring ou qualquer pipeline que dependa de dados B2B precisos de identidade.
Find verified work emails and mobile numbers, enrich person and company profiles, and search a B2B database of leads and companies using 20+ filters.
Retrieve the current plan, remaining credits, and renewal date of your Prospeo account.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
| Parameter | Type | Description |
|---|
current_plan | string | Current Prospeo plan name |
current_team_members | number | Number of team members in your team |
remaining_credits | number | Number of credits remaining |
used_credits | number | Number of credits already used |
next_quota_renewal_days | number | Days until the next quota renewal |
next_quota_renewal_date | string | Date and time of the next quota renewal |
Enrich a person with complete B2B profile data, email address and mobile.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
first_name | string | No | First name of the person |
last_name | string | No | Last name of the person |
full_name | string | No | Full name of the person (alternative to first_name + last_name) |
linkedin_url | string | No | Person's public LinkedIn URL |
email | string | No | Work email of the person |
company_name | string | No | Company name |
company_website | string | No | Company website |
company_linkedin_url | string | No | Company's public LinkedIn URL |
person_id | string | No | Prospeo person_id from a previous Search Person response |
only_verified_email | boolean | No | Only return records with a verified email |
enrich_mobile | boolean | No | Reveal mobile number (10 credits per match; email included) |
only_verified_mobile | boolean | No | Only return records that have a mobile (implies enrich_mobile) |
| Parameter | Type | Description |
|---|
free_enrichment | boolean | True if this enrichment was free (already enriched in the past) |
person | json | The matched person object including person_id, name, linkedin_url, current_job_title, job_history, mobile, email, location, and skills |
company | json | The current company of the matched person including name, website, domain, industry, employee_count, location, social URLs, funding, and technology |
Enrich a company with complete B2B data.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
company_website | string | No | Company website (e.g., "intercom.com") |
company_linkedin_url | string | No | Company's public LinkedIn URL |
company_name | string | No | Company name (use combined with website for best accuracy) |
company_id | string | No | Prospeo company_id from a previously enriched company |
| Parameter | Type | Description |
|---|
free_enrichment | boolean | True if this enrichment was free (already enriched in the past) |
company | json | The matched company object including name, website, domain, industry, employee_count, location, social URLs, funding, and technology |
Enrich up to 50 person records at once.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
data | json | Yes | Array of up to 50 person records to enrich. Each must include an "identifier" plus one of: linkedin_url, email, person_id, or (first_name + last_name + company_), or (full_name + company_). |
only_verified_email | boolean | No | Only return records with a verified email |
enrich_mobile | boolean | No | Reveal mobile numbers (10 credits per match; email included) |
only_verified_mobile | boolean | No | Only return records that have a mobile (implies enrich_mobile) |
| Parameter | Type | Description |
|---|
total_cost | number | Total credits spent by the request |
matched | array | Matched records (identifier, person, company) |
↳ identifier | string | The identifier you submitted for this record |
↳ person | json | The matched person object |
↳ company | json | The current company of the matched person |
not_matched | array | Identifiers of records we could not match given the filters |
invalid_datapoints | array | Identifiers of records that did not meet the minimum matching requirements |
Enrich up to 50 company records at once.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
data | json | Yes | Array of up to 50 company records to enrich. Each must include an "identifier" plus one of: company_website, company_linkedin_url, company_name, or company_id. |
| Parameter | Type | Description |
|---|
total_cost | number | Total credits spent by the request |
matched | array | Matched company records (identifier, company) |
↳ identifier | string | The identifier you submitted for this record |
↳ company | json | The matched company object |
not_matched | array | Identifiers of records we could not match |
invalid_datapoints | array | Identifiers of records that did not meet the minimum matching requirements |
Search for leads using 20+ filters to build targeted contact lists.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
filters | json | Yes | Filter configuration object. See https://prospeo.io/api-docs/filters-documentation for all supported filters (e.g., person_seniority, company_industry, person_location). |
page | number | No | Page number (defaults to 1). Up to 1000 pages of 25 results. |
| Parameter | Type | Description |
|---|
pagination | object | Pagination details |
↳ current_page | number | Current page number |
↳ per_page | number | Results per page |
↳ total_page | number | Total number of pages |
↳ total_count | number | Total number of matching records |
free | boolean | True if the request was free due to 30-day result-set deduplication |
results | array | Up to 25 search results (person + company, no email/mobile) |
↳ person | json | Matched person (no email/mobile in search response) |
↳ company | json | Current company of the person |
Search for companies using 20+ filters to build account lists.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
filters | json | Yes | Filter configuration object. See https://prospeo.io/api-docs/filters-documentation for all supported filters (e.g., company_industry, company_headcount_range, company_funding). |
page | number | No | Page number (defaults to 1). Up to 1000 pages of 25 results. |
| Parameter | Type | Description |
|---|
pagination | object | Pagination details |
↳ current_page | number | Current page number |
↳ per_page | number | Results per page |
↳ total_page | number | Total number of pages |
↳ total_count | number | Total number of matching records |
free | boolean | True if the request was free due to 30-day result-set deduplication |
results | array | Up to 25 matching companies |
↳ company | json | Matched company object |
Free endpoint to retrieve valid location or job title values for use in Search filters. Provide exactly one of location_search or job_title_search.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Prospeo API key |
location_search | string | No | Search query for location suggestions (minimum 2 characters). Mutually exclusive with job_title_search. |
job_title_search | string | No | Search query for job title suggestions (minimum 2 characters). Mutually exclusive with location_search. |
| Parameter | Type | Description |
|---|
location_suggestions | array | Location suggestions when using location_search (empty when searching job titles) |
↳ name | string | Formatted location name to use in filters |
↳ type | string | Location type (COUNTRY, STATE, CITY, or ZONE) |
job_title_suggestions | array | Up to 25 job title suggestions ordered by popularity when using job_title_search (empty when searching locations) |