people_search
Search for professionals by organization domain, job title, and seniority level to find relevant contacts for business development and networking.
Instructions
Use the People Search endpoint to find people
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q_organization_domains_list | No | List of organization domains to search within | |
| person_titles | No | List of job titles to search for | |
| person_seniorities | No | List of seniority levels to search for |
Input Schema (JSON Schema)
{
"properties": {
"person_seniorities": {
"description": "List of seniority levels to search for",
"items": {
"type": "string"
},
"type": "array"
},
"person_titles": {
"description": "List of job titles to search for",
"items": {
"type": "string"
},
"type": "array"
},
"q_organization_domains_list": {
"description": "List of organization domains to search within",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}