GuideAPI referenceSDKs
Dashboard
People Search

Employee Finder

Browse employees at one company with role, seniority, and geography filters.

POST/v2/search/employee-finder

Request

curl -X POST "https://moltsetz.vercel.app/v2/search/employee-finder" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "company_linkedin_url": "https://www.linkedin.com/company/openai",
  "job_level": [
    "Director",
    "CXO"
  ],
  "max_results": 10,
  "page": 1
}'

Body

FieldTypeRequiredDescription and limits
company_linkedin_urlstringRequiredCanonical or trailing-slash LinkedIn company profile URL.linkedin.com/company/{slug}
peopleobjectOptionalPerson filters: job_title, job_function, job_level, country_code, continent, sales_region, or min_connections_count.At least one people or company filter is required
max_resultsintegerOptionalMaximum records returned.1–100; defaults to 10
pageintegerOptionalOne-based page number.Positive integer; defaults to 1

Pagination

Use a positive one-based page value. Each page contains up to max_results records.

Credits

One request credit is recorded only when this endpoint returns a 2xx response. Authentication, validation, rate-limit, and not-found responses do not consume a credit.

Response

FieldTypeDescription
pageintegerCurrent page number.
max_resultsintegerApplied page size.
resultsarrayThe records returned for this page.
results_lengthintegerNumber of records in results.

Example response

{
  "page": 1,
  "max_results": 10,
  "results_length": 10,
  "results": []
}

Errors

StatusCodeWhen
422INVALID_INPUTA required value is missing, malformed, or outside its documented limits.
401UNAUTHORIZEDThe x-api-key header is missing or invalid.
402CREDITS_EXHAUSTEDA limited plan has no request credits remaining.
405METHOD_NOT_ALLOWEDThe endpoint is called with an unsupported HTTP method.
429RATE_LIMIT_EXCEEDEDThe API key exceeds its plan-wide requests-per-second limit.
500DATA_SERVICE_ERRORThe data service cannot complete the request.
{
  "success": false,
  "error": {
    "code": "INVALID_INPUT",
    "message": "A field-specific validation message"
  }
}