Skip to main content
GET
/
v1
/
saved-filters
Get saved filters
curl --request GET \
  --url https://openapi.enginy.ai/v1/saved-filters \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "filters": {},
      "keywords": [
        "<string>"
      ],
      "isShared": true,
      "createdBy": {
        "id": 123,
        "name": "<string>"
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 123,
    "pageSize": 123,
    "total": 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

Query Parameters

page
string
default:1

Page number for pagination. Minimum value is 1. Defaults to 1.

pageSize
string
default:25

Number of items per page. Minimum is 1, maximum is 100. Defaults to 25.

Search term to filter saved filters by name (case-insensitive).

provider
enum<string>
default:LINKEDIN

Saved filter provider to query. Defaults to LINKEDIN so existing callers keep the current behavior unless they opt into another provider.

Available options:
LINKEDIN,
CRM_CONTACTS,
CRM_COMPANIES,
STORELEADS,
CRUNCHBASE_COMPANIES,
CRUNCHBASE_CONTACTS,
CRUNCHBASE_INVESTORS,
THEIRSTACK_TECHNOLOGY,
THEIRSTACK_JOBS,
GOOGLE_MAPS
type
enum<string>

Optional saved filter entity type. If omitted, LINKEDIN defaults to LEAD; all other providers infer the matching entity type automatically.

Available options:
LEAD,
COMPANY

Response

200 - application/json

Successful response with paginated saved filters

data
object[]
required
meta
object
required