# LinkedIn Company Job Count API (https://www.socialcrawl.dev/platforms/linkedin/company-job-count) > Get a company's open job count — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/company/job-count` 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/job-count?company_id=1035" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a company's open job count? Send a GET request to /v1/linkedin/company/job-count with a numeric company_id in the company_id parameter. The response is a single object with the number of job postings the company currently has open. ### What does this endpoint return, exactly? A single number: the count of open job postings for that company_id. It does not return the postings themselves. For the actual list use /v1/linkedin/company/jobs, and for one posting's detail use /v1/linkedin/job. ### Why use job count instead of the full jobs list? The job count is one small object, so it is cheap and fast to poll at scale. When you only need the hiring trend, not the postings, this endpoint lets you track many companies daily without paging through full job lists. ### How much does the job count endpoint cost? Each request costs 5 credits on the advanced tier. New accounts get 100 free credits with no credit card, enough for 20 job-count checks before you upgrade, which covers a solid panel of companies to watch. ### How do I track hiring velocity over time? Call the endpoint on a schedule (daily or weekly) and store each day's open job count against the company_id. Charting the series shows hiring acceleration or slowdown, a leading signal for growth, funding, or contraction at a target account. 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 track a company's open job count on LinkedIn with an API - Which API returns LinkedIn hiring velocity as a single number