For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Connect
DocumentationAPI ReferenceKnowledge Base
DocumentationAPI ReferenceKnowledge Base
  • API Reference
      • POSTList connected LinkedIn accounts
      • POSTFind a company's LinkedIn page from a domain
      • POSTResolve a name + company domain to a profile URL
      • POSTHydrate a LinkedIn profile
      • POSTHydrate a LinkedIn company page
      • POSTSearch a company's employees with boolean title filters
      • POSTList recent posts from a company page
      • POSTRecent posts from a company's employees
      • POSTList recent posts from a single profile
      • POSTGet full content for a single post
      • POSTList people who reacted to a post
      • POSTList comments on a post
      • POSTList jobs posted by a company
      • POSTGet full details of a job listing
      • POSTList saved posts (requires session)
      • POSTList recent DM threads (requires session)
      • POSTSend a direct message (requires session)
      • POSTSend a connection request (requires session)
Connect
LogoLogo
API ReferenceLinkedIn

Search a company's employees with boolean title filters

POST
https://api.gtm-tools.sh/api/v0/list_linkedin_company_employees
POST
/api/v0/list_linkedin_company_employees
1const url = 'https://api.gtm-tools.sh/api/v0/list_linkedin_company_employees';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"domain":"gorgias.com","title_filters":"(CEO OR CTO OR Founder) NOT intern","limit":10,"page":1}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Linkedin_listLinkedinCompanyEmployees_example
1{
2 "results": [
3 {
4 "name": "string",
5 "headline": "string",
6 "title": "string",
7 "profile_url": "string",
8 "location": "string"
9 }
10 ],
11 "total": 1,
12 "page": 1,
13 "has_more": true
14}

Most expensive LinkedIn tool — always pass title_filters to narrow the result set. Boolean syntax: AND, OR, NOT, parentheses. Cost — 30 tokens.

Was this page helpful?
Previous

List recent posts from a company page

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
domainstringOptional
company_urlstringOptional
title_filtersstringOptional

Boolean filter — AND, OR, NOT, ()

limitintegerOptional<=100
pageintegerOptional>=1

Response

Filtered employee list
resultslist of objects
totalinteger
pageinteger
has_moreboolean