# LinkedIn Company People API (https://www.socialcrawl.dev/platforms/linkedin/company-people) > Returns a paginated list of members who work at a company, with handle, headline, location, and member URN. Get the company_id from /v1/linkedin/company. TL;DR: `GET /v1/linkedin/company/people` costs 10 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `company_id` | yes | LinkedIn numeric company ID (from /v1/linkedin/company). | | `page` | no | Page number for pagination (default 1). | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/company/people?company_id=1035" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list the people who work at a LinkedIn company? Send a GET request to /v1/linkedin/company/people with a numeric company_id in the company_id parameter. The response returns a paginated list of members who work at that company, each with handle, headline, location, and member URN. ### What fields come back for each employee? Each member entry includes the profile handle, current headline (role and company), location, and the LinkedIn member URN. Use the handle or URN to fetch the full profile from /v1/linkedin/profile when you need deeper detail. ### How do I paginate through a company's employee list? Add the optional page query parameter (integer) to walk deeper into the member list. Start at page 1 and increment until the response returns an empty list, which marks the end of the available members. ### How much does the company people endpoint cost? Each page costs 10 credits on the premium tier, regardless of how many members come back in that page. New accounts get 100 free credits with no credit card, enough for 10 pages before you upgrade. ### Where do I get the company_id this endpoint needs? The numeric company_id comes from /v1/linkedin/company: pass a company page URL there and read the id field from the response. Reuse that id here and across the other company/* endpoints for jobs, insights, and affiliated pages. ### Can I use this for talent intelligence or recruiting? Yes, mapping the members at a company is a common recruiting and talent-intelligence use case. Pull the roster to size a team, source candidates by headline, or track hiring at target accounts, then enrich each member with the profile endpoint. See the full LinkedIn API: https://www.socialcrawl.dev/platforms/linkedin ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list the employees of a LinkedIn company with an API - Which API returns LinkedIn company staff for talent intelligence