Skip to main content

Documentation Index

Fetch the complete documentation index at: https://gtmapis.mintlify.app/llms.txt

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

LinkedIn Employee Data

Access employee count with growth metrics and search for specific employees at any company.

Endpoints

EndpointDescription
POST /v1/linkedin/employees/countGet employee count with growth metrics
POST /v1/linkedin/employees/searchSearch for employees by role/department

Employee Count

Get current employee count with historical growth metrics and department breakdown.

Endpoint

POST /v1/linkedin/employees/count

Request

domain
string
Company domain (e.g., “stripe.com”)
linkedin_url
string
LinkedIn company URL (alternative to domain)

Example Request

curl -X POST https://api.gtmapis.com/v1/linkedin/employees/count \
  -H "Content-Type: application/json" \
  -H "X-API-Key: gtm_test_your_key_here" \
  -d '{"domain": "stripe.com"}'

Response

{
  "domain": "stripe.com",
  "company_name": "Stripe",
  "employee_count": 8000,
  "employee_count_range": "5001-10000",
  "growth_1m": 2.1,
  "growth_3m": 5.8,
  "growth_6m": 12.5,
  "growth_1y": 28.0,
  "growth_2y": 65.0,
  "historical_counts": [
    {"date": "2026-01-01", "count": 8000},
    {"date": "2025-10-01", "count": 7800},
    {"date": "2025-07-01", "count": 7100}
  ],
  "department_breakdown": {
    "Engineering": 3200,
    "Sales": 1600,
    "Operations": 1200,
    "Marketing": 800,
    "Other": 1200
  },
  "source_provider": "proxycurl",
  "credits_charged": 1,
  "latency_ms": 654,
  "cache_hit": false
}

Response Fields

FieldTypeDescription
employee_countintegerCurrent employee count
growth_1mnumber1-month growth percentage
growth_3mnumber3-month growth percentage
growth_6mnumber6-month growth percentage
growth_1ynumber1-year growth percentage
growth_2ynumber2-year growth percentage
department_breakdownobjectEmployees by department

Search for employees at a company by title, department, or seniority level.

Endpoint

POST /v1/linkedin/employees/search

Request

domain
string
required
Company domain (e.g., “stripe.com”)
title_keywords
array
Keywords to search in job titles (e.g., [“sales”, “director”])
seniority
array
Seniority levels to filter by: C-Level, VP, Director, Manager, Senior, IC
department
string
Department to filter by: Engineering, Sales, Marketing, Finance, HR, Operations
limit
integer
default:"10"
Max results to return (1-100)

Example Request

curl -X POST https://api.gtmapis.com/v1/linkedin/employees/search \
  -H "Content-Type: application/json" \
  -H "X-API-Key: gtm_test_your_key_here" \
  -d '{
    "domain": "stripe.com",
    "seniority": ["VP", "Director"],
    "department": "Sales",
    "limit": 10
  }'

Response

{
  "domain": "stripe.com",
  "employees": [
    {
      "first_name": "Sarah",
      "last_name": "Johnson",
      "full_name": "Sarah Johnson",
      "title": "VP of Sales",
      "seniority": "VP",
      "department": "Sales",
      "linkedin_url": "https://linkedin.com/in/sarahjohnson",
      "location": "San Francisco, CA",
      "start_date": "2023-01-15"
    },
    {
      "first_name": "Michael",
      "last_name": "Chen",
      "full_name": "Michael Chen",
      "title": "Director of Enterprise Sales",
      "seniority": "Director",
      "department": "Sales",
      "linkedin_url": "https://linkedin.com/in/michaelchen",
      "location": "New York, NY",
      "start_date": "2022-06-01"
    }
  ],
  "total": 2,
  "has_more": false,
  "source_provider": "proxycurl",
  "credits_charged": 2,
  "latency_ms": 1234,
  "cache_hit": false
}

Employee Object

FieldTypeDescription
first_namestringFirst name
last_namestringLast name
full_namestringFull name
titlestringJob title
senioritystringSeniority level
departmentstringDepartment
linkedin_urlstringLinkedIn profile URL
locationstringLocation
start_datestringStart date at company
emailstringEmail (if available)
phonestringPhone (if available)

Credit Pricing

EndpointCredits
Employee Count (fresh)1 credit
Employee Count (cache hit)0 credits
Employee Search2 credits

Use Cases

Track growth_1m, growth_3m, etc. to identify fast-growing companies for prospecting.
Use employee search with seniority: ["C-Level", "VP", "Director"] to find executives.
Filter by department to find your target buyers (e.g., Sales, Engineering, Marketing).