# LinkedIn Company Insights API (https://www.socialcrawl.dev/platforms/linkedin/company-insights) > Get aggregate insights about a company's members — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/company/insights` costs 5 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). | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/company/insights?company_id=1035" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get aggregate insights about a company's members? Send a GET request to /v1/linkedin/company/insights with a numeric company_id in the company_id parameter. The response is a single object with aggregate signals about the company's members, such as the headcount distribution LinkedIn exposes. ### What kind of signals does this endpoint return? Aggregate, company-level signals about the member base rather than individual profiles, for example how headcount is distributed across the organization. The exact fields depend on what LinkedIn publishes for that company. ### How is this different from the company people endpoint? Company insights returns aggregate signals in one object, while /v1/linkedin/company/people returns the actual paginated list of individual members. Use insights for a quick firmographic read, and people when you need per-member handles and headlines. ### How much does the company insights endpoint cost? Each request costs 5 credits on the advanced tier, and the response is a single object regardless of company size. New accounts get 100 free credits with no credit card, enough for 20 insight lookups before you upgrade. ### What is a good use case for company insights? Firmographic enrichment and account scoring are the main use cases. Pull the aggregate headcount signals to size an account, compare targets in a segment, or feed an ICP model without paging through every individual member. 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 get aggregate LinkedIn company headcount signals with an API - Which API returns LinkedIn company member insights for account scoring