Skip to main content
POST
/
enrich-person
Enrich Person
curl --request POST \
  --url https://api.automindz.co/enrich-person \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "full_name": "<string>",
  "company_name": "<string>",
  "company_domain": "<string>",
  "linkedin_url": "<string>"
}
'
{
  "run_id": "<string>",
  "status": "<string>"
}
Triggers the email waterfall enrichment pipeline for a single person. Provide their name and company info, and optionally their LinkedIn profile URL for higher accuracy. The pipeline runs asynchronously. Use the returned run_id to poll for results.
For best results, provide both company_name and company_domain, plus the person’s linkedin_url. The more context you provide, the higher the match rate.
company_domain must be a bare domain like acme.com — do not include https:// or any path.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
full_name
string
required

Full name of the person to enrich (e.g. 'Jane Smith').

Minimum string length: 1
company_name
string | null

Name of the person's current company. At least one of company_name or company_domain is required.

company_domain
string | null

Bare domain of the person's current company (e.g. 'acme.com'). Do not include http:// or paths. At least one of company_name or company_domain is required.

linkedin_url
string | null

LinkedIn profile URL (e.g. 'https://www.linkedin.com/in/janesmith'). Must be a /in/ profile URL.

Response

Successful Response

run_id
string
required

Unique identifier for this enrichment run. Use this to poll for results via GET /runs/{run_id}.

status
string
required

Initial status of the run. Always QUEUED on creation.