changedInput schema / properties / changed_jobs / description
Previous value: -"Only leads who recently changed jobs."New value: +"Only leads who recently changed jobs — realtime only: using it forces the pricier live mode."
changedInput schema / properties / compact / description
Previous value: -"Default true: return a 9-field summary per lead (name/title/company/industry/location/linkedin_url). Set false for the full raw lead object (skills, experience, etc.). Neither mode includes email — use generate_email."New value: +"Default true: return a small per-lead summary (including the Generect `id`, which every later step accepts). Set false for the full raw record (~80 fields) — only worth it when you specifically need skills, education or other deep fields."
addedInput schema / properties / company_filters
Added value: +{
+ "additionalProperties": false,
+ "description": "Optional: only return leads at companies matching these filters (two-level ICP).",
+ "properties": {
+ "company_names": {
+ "description": "Restrict to specific company names — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "company_types": {
+ "description": "Company types: \"Public Company\",\"Privately Held\",\"Non Profit\",\"Government Agency\",\"Educational\", …",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "department_headcount": {
+ "additionalProperties": false,
+ "description": "Department size, e.g. {\"name\":\"engineering\",\"min\":10,\"max\":100} — realtime only: using it forces the pricier live mode.",
+ "properties": {
+ "max": {
+ "type": "number"
+ },
+ "min": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "exclude_domains": {
+ "description": "Exclude companies by domain (e.g. existing customers).",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "exclude_ids": {
+ "description": "Exclude companies by LinkedIn id/URN.",
+ "items": {
+ "type": [
+ "string",
+ "number"
+ ]
+ },
+ "type": "array"
+ },
+ "exclude_industries": {
+ "description": "Industries to exclude.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "exclude_locations": {
+ "description": "HQ locations to exclude.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "headcount_growth": {
+ "additionalProperties": false,
+ "description": "Headcount growth in percent — realtime only: using it forces the pricier live mode.",
+ "properties": {
+ "max": {
+ "type": "number"
+ },
+ "min": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "headcounts": {
+ "description": "Size buckets. Allowed ONLY: \"1-10\",\"11-50\",\"51-200\",\"201-500\",\"501-1000\",\"1001-5000\",\"5001-10000\",\"10 000+\".",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "hiring_on_linkedin": {
+ "description": "Only companies actively hiring — realtime only: using it forces the pricier live mode.",
+ "type": "boolean"
+ },
+ "industries": {
+ "description": "Company industries. Must match Generect industry names exactly (e.g. \"Software Development\"); unknown names are rejected with HTTP 400.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "keywords": {
+ "description": "Free-text keywords across name/description/specialties — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "linkedins_links": {
+ "description": "Specific LinkedIn company URLs — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "locations": {
+ "description": "HQ locations — cities, states or countries.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "num_of_followers": {
+ "description": "LinkedIn follower buckets: \"1-50\",\"51-100\",\"101-1000\",\"1001-5000\",\"5001+\" — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "revenues_range": {
+ "additionalProperties": false,
+ "description": "Annual revenue range, single object {min,max} — realtime only: using it forces the pricier live mode.",
+ "properties": {
+ "max": {
+ "type": "number"
+ },
+ "min": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "min",
+ "max"
+ ],
+ "type": "object"
+ },
+ "sub_industries": {
+ "description": "Expand each selected industry to its sub-industries as well (broadens the match).",
+ "type": "boolean"
+ },
+ "technologies": {
+ "description": "Technologies the company uses — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}
changedInput schema / properties / company_id / description
Previous value: -"Anchor to a specific LinkedIn company id (returns its employees; this branch is less deterministic and does not enforce lead_industries)."New value: +"Anchor to one company by LinkedIn numeric id."
changedInput schema / properties / company_id / type
Previous value: -"string"New value: +[
+ "string",
+ "number"
+]
changedInput schema / properties / company_industries / description
Previous value: -"Filter by the lead employer's industry (same taxonomy as lead_industries)."New value: +"Industry of the current employer. Must match Generect industry names exactly (e.g. \"Software Development\", \"Financial Services\"); names are hierarchical and unknown names are rejected with HTTP 400 naming the field."
changedInput schema / properties / company_link / description
Previous value: -"Anchor to a specific LinkedIn company URL."New value: +"Anchor to one company by LinkedIn URL."
changedInput schema / properties / company_locations / description
Previous value: -"Filter by the employer HQ location (country/region names)."New value: +"HQ location of the lead's current employer."
changedInput schema / properties / company_name / description
Previous value: -"Anchor to a specific company by name."New value: +"Anchor to one company by name (exclusive with company_link/company_id)."
changedInput schema / properties / company_types / description
Previous value: -"Employer types: \"Public Company\",\"Educational\",\"Self Employed\",\"Government Agency\",\"Non Profit\",\"Self Owned\",\"Privately Held\",\"Partnership\"."New value: +"Employer types: \"Public Company\",\"Privately Held\",\"Non Profit\",\"Government Agency\",\"Educational\",\"Self Employed\",\"Self Owned\",\"Partnership\"."
addedInput schema / properties / exclude_company_headcounts
Added value: +{
+ "description": "Employer size buckets to exclude.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / exclude_company_industries
Added value: +{
+ "description": "Employer industries to exclude.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / exclude_company_locations
Added value: +{
+ "description": "Employer HQ locations to exclude.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
changedInput schema / properties / exclude_ids / description
Previous value: -"sales_ids to exclude — pass the ids of leads already returned in prior calls to paginate/deduplicate."New value: +"Skip leads by Generect/Sales-Navigator id. Pass the ids you already received to paginate without duplicates — ordering is not stable, so this is more reliable than offset."
addedInput schema / properties / exclude_locations
Added value: +{
+ "description": "Lead locations to exclude.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
changedInput schema / properties / exclude_names / description
Previous value: -"Full names to exclude from results."New value: +"Skip leads by full name. KNOWN ISSUE: in database mode any non-empty value collapses the result set to 0 (verified 2026-08-09); it behaves correctly in realtime mode. Prefer exclude_ids, or filter names out yourself after the search."
changedInput schema / properties / exclude_title_keywords / description
Previous value: -"Title keywords to exclude from persona matching. Defaults to [assistant, intern, junior, student, trainee]; pass [] to disable."New value: +"DEPRECATED — accepted but ignored. No v1 equivalent. Narrow job_titles instead, or filter the returned rows yourself."
removedInput schema / properties / exclude_title_keywords / items
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / exclude_title_keywords / type
Removed value: -"array"
addedInput schema / properties / filter_empty_vars
Added value: +{
+ "description": "Drop leads where these fields are empty, e.g. [\"profile_photo\",\"job_started_on\"]. Useful to raise data quality before paying.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
changedInput schema / properties / functions / description
Previous value: -"Job functions (LinkedIn Sales-Nav categories, e.g. [\"Engineering\",\"Operations\",\"Marketing\",\"Sales\",\"Finance\"]). Validated by the API."New value: +"Job functions, e.g. [\"Sales\",\"Marketing\",\"Engineering\"] — realtime only: using it forces the pricier live mode."
changedInput schema / properties / get_max_leads / description
Previous value: -"Also report the total number of matching leads (results_count). The number of rows returned is still bounded by limit_by."New value: +"DEPRECATED — accepted but ignored. Always on now: search responses include results_count without asking."
removedInput schema / properties / get_max_leads / type
Removed value: -"boolean"
changedInput schema / properties / job_title / description
Previous value: -"Single job title (e.g., \"CEO\"). For multiple titles use job_titles."New value: +"DEPRECATED alias for job_titles. Still honoured: it is merged into job_titles."
changedInput schema / properties / job_titles / description
Previous value: -"One or more target job titles, OR-matched (e.g. [\"CEO\",\"Founder\",\"Owner\",\"President\"]). Preferred over job_title. Assistant/intern/junior/student/trainee are excluded by default; override with exclude_title_keywords."New value: +"Target job titles, OR-matched (e.g. [\"CEO\",\"Founder\",\"Owner\"]). A lead needs to match only one."
changedInput schema / properties / keywords / description
Previous value: -"Free-text keywords matched against the profile (Boolean phrases allowed)."New value: +"Free-text keywords across headline/summary/skills — realtime only: using it forces the pricier live mode."
changedInput schema / properties / lead_industries / description
Previous value: -"Lead personal-industry filter. Must match Generect industry names exactly (e.g. \"Financial Services\", \"IT Services and IT Consulting\"). Names are hierarchical (Financial Services includes Banking/Insurance). Invalid names are rejected (HTTP 400)."New value: +"DEPRECATED — accepted but ignored. Removed: v1 filters on the employer's industry. Use company_industries."
removedInput schema / properties / lead_industries / items
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / lead_industries / type
Removed value: -"array"
changedInput schema / properties / limit / description
Previous value: -"Alias for limit_by"New value: +"Alias for limit_by."
changedInput schema / properties / limit_by / description
Previous value: -"Total leads to return this call (1–100, default 25). This is a TOTAL cap across all personas. For more, paginate with exclude_ids."New value: +"Rows to return this call (1–100, default 25). You are billed per returned row, so this number IS the price of the call."
addedInput schema / properties / linkedin_filter_link
Added value: +{
+ "description": "A LinkedIn / Sales Navigator search URL to lift filters from — realtime only: using it forces the pricier live mode.",
+ "type": "string"
+}
changedInput schema / properties / locations / description
Previous value: -"Lead location filter — country/region names, e.g. [\"United States\",\"Canada\"]."New value: +"Where the lead lives — matches cities, states and countries, e.g. [\"United States\",\"Berlin\"]."
addedInput schema / properties / mode
Added value: +{
+ "description": "Data mode. \"database\" = cached, sub-second, cheaper, free counts, core filters only. \"realtime\" = live LinkedIn lookup, 5–60s, pricier, supports every filter. \"auto\" (default) tries database first and only escalates to realtime if a filter you passed is unsupported there — an escalation is reported in the response. Pick \"database\" explicitly when freshness is not critical and cost matters more than freshness.",
+ "enum": [
+ "auto",
+ "database",
+ "realtime"
+ ],
+ "type": "string"
+}
changedInput schema / properties / offset / description
Previous value: -"Alias for offset_by"New value: +"Alias for offset_by."
changedInput schema / properties / offset_by / description
Previous value: -"Offset for pagination (note: ordering is not stable — exclude_ids is more reliable)."New value: +"Rows to skip (pagination)."
addedInput schema / properties / past_company_names
Added value: +{
+ "description": "Companies the lead previously worked at (alumni targeting) — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
changedInput schema / properties / personas / description
Previous value: -"Advanced: raw persona tuples [label,[titles],[secondary],[exclusions],seniority?]. Overrides job_title/job_titles."New value: +"Advanced raw persona tuples [name, functions, seniorities, prohibits, priority?] — realtime only: using it forces the pricier live mode."
changedInput schema / properties / posted_on_linkedin / description
Previous value: -"Only leads who recently posted on LinkedIn."New value: +"Only leads who recently posted on LinkedIn — realtime only: using it forces the pricier live mode."
changedInput schema / properties / seniorities / description
Previous value: -"Seniority levels (LinkedIn Sales-Nav categories, e.g. [\"Director\",\"VP\",\"Head\",\"Owner\",\"Manager\"]). Validated by the API."New value: +"Seniority at the current employer, e.g. [\"Owner\",\"CXO\",\"VP\",\"Director\",\"Manager\"]. Current position only."
addedInput schema / properties / strict
Added value: +{
+ "description": "Fields to match strictly, e.g. [\"company_locations\"].",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
changedInput schema / properties / timeout_ms / description
Previous value: -"Request timeout in milliseconds"New value: +"Request timeout in milliseconds."
changedInput schema / properties / without_company / description
Previous value: -"Search across all companies (filter-only). Auto-enabled when no company_id/link/name is given; this branch enforces all filters. Ignored when a company anchor is set."New value: +"DEPRECATED — accepted but ignored. No longer needed — v1 filter-only search is the default when no company anchor is set."
removedInput schema / properties / without_company / type
Removed value: -"boolean"
addedInput schema / properties / years_in_company
Added value: +{
+ "description": "Time at current company, same buckets as years_in_position — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+}
addedInput schema / properties / years_in_position
Added value: +{
+ "description": "Time in current role: 1=<1y, 2=1-2y, 3=3-5y, 4=6-10y, 5=10y+ — realtime only: using it forces the pricier live mode.",
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+}