GuideAPI referenceSDKs
Dashboard
People Search

Find People

Search people and their employers together using company and person-level filters.

POST/v2/search/people

Request

curl -X POST "https://moltsetz.vercel.app/v2/search/people" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "company": {
    "industry": {
      "include": [
        "Software"
      ]
    },
    "country_code": [
      "US"
    ]
  },
  "people": {
    "job_title": {
      "include": [
        "Growth"
      ]
    },
    "job_level": [
      "Director"
    ]
  },
  "max_results": 10
}'

Body

FieldTypeRequiredDescription and limits
companyobjectOptionalCompany filters: keywords/name, industry, country_code, continent, sales_region, type, or employee_range.Must contain at least one non-empty supported filter
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
cursorstringOptionalOpaque cursor returned by the previous page.Base64url cursor; omit for the first page

Pagination

Use the returned cursor unchanged in the next request. Omitting cursor starts at the first page. max_results is 1–100.

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
resultsarrayThe records returned for this page.
results_lengthintegerNumber of records in results.
cursorstring | nullCursor for the next page, or null when no full next page is available.

Example response

{
  "results_length": 10,
  "cursor": "MTA",
  "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"
  }
}