Skip to main content
POST
/
v1
/
saved-filters
Create a saved filter
curl --request POST \
  --url https://openapi.enginy.ai/v1/saved-filters \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "filters": {},
  "provider": "LINKEDIN",
  "keywords": [
    "<string>"
  ],
  "searchFallbackFilters": [
    {
      "filters": {},
      "keywords": [
        "<string>"
      ]
    }
  ],
  "isShared": false
}
'
{
  "message": "<string>",
  "data": {
    "id": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.enginy.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required

Name for the saved filter.

Minimum string length: 1
filters
object
required

Primary provider-specific search filters configuration to save. For LINKEDIN, send the field-keyed map directly (e.g. {"REGION": [...], "CURRENT_TITLE": [...]}) — do NOT wrap it in a top-level filtersByType key. A single filtersByType wrapper is auto-unwrapped for backward compatibility, but the unwrapped shape is required.

type
enum<string>
required

Saved filter type (LEAD or COMPANY).

Available options:
LEAD,
COMPANY
provider
enum<string>
default:LINKEDIN

Which AI Finder provider this saved filter belongs to. Defaults to LINKEDIN for backward compatibility.

Available options:
LINKEDIN,
CRM_CONTACTS,
CRM_COMPANIES,
STORELEADS,
CRUNCHBASE_COMPANIES,
CRUNCHBASE_CONTACTS,
CRUNCHBASE_INVESTORS,
THEIRSTACK_TECHNOLOGY,
THEIRSTACK_JOBS,
GOOGLE_MAPS
keywords
string[]

Optional keywords associated with this saved filter.

Minimum string length: 1
searchFallbackFilters
object[]

Optional ordered fallback searches to try after the primary filter.

isShared
boolean
default:false

Whether the saved filter is shared with the team.

Response

Saved filter created successfully

status
enum<string>
required
Available options:
success
message
string
required
data
object
required