Skip to main content
POST
/
v1
/
discover
/
creators
curl -X POST https://api.trigify.io/v1/discover/creators \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "posted_about_keywords": ["artificial intelligence", "machine learning"],
    "posted_about_topic_strength": 3,
    "posted_about_days": 14,
    "job_titles": ["Chief Technology Officer", "VP of Engineering", "Director of AI"],
    "job_titles_excludes": ["Consultant", "Advisor"],
    "company_domain_includes": ["enterprise.com", "techcorp.io"],
    "company_domain_excludes": ["competitor.com"],
    "company_sizes": ["51-200", "201-500", "501-1000"],
    "industries": ["Computer Software", "Information Technology"],
    "location_country": ["United States", "Canada"],
    "location_excludes": ["Asia"],
    "page": 1,
    "page_size": 10
  }'
{
  "message": "<string>",
  "success": true,
  "data": {
    "results": [
      {
        "name": "<string>",
        "linkedin_url": "<string>",
        "avatar": "<string>",
        "location": "<string>",
        "company": "<string>",
        "company_domain": "<string>",
        "job_title": "<string>",
        "followers": 123,
        "company_size": "<string>",
        "company_industry": "<string>",
        "company_logo": "<string>",
        "avg_last_10_engagement": 123,
        "avg_days_between_posts": 123
      }
    ],
    "page": 123,
    "total": 123
  }
}
This endpoint allows you to search for thought leaders and content creators based on their posting patterns and professional attributes.

Overview

The Discover Creators endpoint enables you to find professionals who have posted about specific keywords, work at particular companies, hold certain job titles, or match other criteria. This powerful search tool helps you identify thought leaders who are actively creating content in relevant topics.

Authentication

Requires a valid API key with the discover:creators:read permission.
curl -X POST https://api.trigify.io/v1/discover/creators \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "posted_about_keywords": ["artificial intelligence", "machine learning"],
    "posted_about_topic_strength": 3,
    "posted_about_days": 14,
    "job_titles": ["Chief Technology Officer", "VP of Engineering", "Director of AI"],
    "job_titles_excludes": ["Consultant", "Advisor"],
    "company_domain_includes": ["enterprise.com", "techcorp.io"],
    "company_domain_excludes": ["competitor.com"],
    "company_sizes": ["51-200", "201-500", "501-1000"],
    "industries": ["Computer Software", "Information Technology"],
    "location_country": ["United States", "Canada"],
    "location_excludes": ["Asia"],
    "page": 1,
    "page_size": 10
  }'

Headers

x-api-key
string
required

Body

application/json
posted_about_keywords
string[]
required

Keywords that the prospect has engaged with. ex: ['keyword1', 'keyword2']

posted_about_days
number
required

Number of days since last post about the topic, min 1 day, max 30 days

Required range: 1 <= x <= 30
job_titles
string[]

List of job titles to include in the search. ex: ['Chief Executive Officer']

job_titles_excludes
string[]

List of job titles to exclude from the search. ex: ['Chief Executive Officer']

posted_about_topic_strength
number
default:1

How often the prospect has posted about the specified keywords. 0-5

company_domain_includes
string[]

List of company domains to include in the search. ex: ['example.com']

company_domain_excludes
string[]

List of company domains to exclude from the search. ex: ['example.com']

followers
string[]

List of follower counts to include in the search.

location_country
string[]

List of locations to include in the search. ex: ['United States']

location_excludes
string[]

List of locations to exclude from the search. ex: ['United States']

industries
string[]

List of industries to include in the search. ex: ['Computer Software']

industries_excludes
string[]

List of industries to exclude from the search. ex: ['Computer Software']

company_sizes
enum<string>[]

List of company sizes to include in the search

Available options:
1-10,
11-50,
51-200,
201-500,
501-1000,
1001-5000,
5001-10000,
10001+
company_sizes_excludes
enum<string>[]

List of company sizes to exclude from the search

Available options:
1-10,
11-50,
51-200,
201-500,
501-1000,
1001-5000,
5001-10000,
10001+
page
number
default:1

The page number to retrieve

page_size
enum<integer>
default:10

The number of results to return per page

Available options:
10,
25,
50

Response

200 - application/json
message
string
required
success
boolean
required
data
object
required