Search Filters

Data type:

Query type:

URL:

Employee Posts

Coresignal's custom filters

https://api.coresignal.com/cdapi/v2/post_employee/search/filter


Overview

Explore the available filters, their explanations, potential applications, and helpful tips for the endpoint /v2/post_employee/search/filter usage.

Use this endpoint to collect employee posts IDs with relevant keywords.

Opt for this endpoint if you prefer uncomplicated queries. Details about filter explanations and how to use them are provided below.

Endpoint structure

Full structure
{
  "author_profile_url": "string",
  "article_body": "string",
  "comments_profile_url": "string",
  "comments_body": "string",
  "date_published_gte": "string",
  "date_published_lte": "string"
}

Filter list

Keep in mind that example outputs are redacted and may not contain all the fields you would receive using the endpoint.

author_profile_url
Filter name
Data input type
Description
Usage

author_profile_url

String

Author's profile URL

Use it to find records based on the profile's url.

Available operators:

  • AND (both keywords need to be present)

  • OR (one of the two input values).

Example input:

author_profile_url
{
   "author_profile_url": "https://in.linkedin.com/in/palashkagarwal"
}
article_body
Filter name
Data input type
Description
Usage

article_body

String

Content of the post

Use it to find records based on content.

Available operators:

  • AND (both keywords need to be present)

  • OR (one of the two input values).

Example input:

article_body
{
   "article_body": "promoted to Senior Data Analyst"
}
comments_profile_url
Filter name
Data input type
Description
Usage

comments_profile_url

String

Profile URL of a posted comment

Use to find post records based on the posted comment profile URL.

Available operators:

  • AND (both keywords need to be present)

  • OR (one of the two input values).

Example input:

comments_profile_url
{
   "comments_profile_url": "https://www.linkedin.com/in/kristy-mcfarland-207"
}
comments_body
Filter name
Data input type
Description
Usage

comments_body

String

Content of the comment

Use it to find post records based on the comments.

Available operators:

  • AND (both keywords need to be present)

  • OR (one of the two input values).

Example input:

comments_body
{
   "comments_body": "This post is written by AI"
}
date_published_gte
Filter name
Data input type
Description
Usage

date_published_gte

String

Date and time when the record was published

Find employee records based on publication date.

Use the YYYY-MM-DD date format.

The output value will be greater than or equal to the input value.

Example input:

date_published_gte
{
  "date_published_gte": "2025-07-01 12:41:10"
}
date_published_lte
Filter name
Data input type
Description
Usage

date_published_lte

String

Date and time when the record was published

Find employee records based on publication date.

Use the YYYY-MM-DD date format.

The output value will be less than or equal to the input value.

Example input:

date_published_lte
{
  "date_published_gte": "2025-07-01 12:41:10"
}

Last updated

Was this helpful?