# LinkedIn Company Jobs API (https://www.socialcrawl.dev/platforms/linkedin/company-jobs) > List a company's job postings — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/company/jobs` 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 | | | `date_posted` | no | | | `experience_level` | no | | | `job_type` | no | | | `remote` | no | | | `easy_apply` | no | | | `sort_by` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/company/jobs?company_id=1035" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list a company's job postings with an API? Send a GET request to /v1/linkedin/company/jobs with a numeric company_id in the company_id parameter. The response returns a paginated list of that company's job postings, each with title, location, and the job id you can expand later. ### What filters can I apply to LinkedIn company jobs? You can narrow the list with optional filters: date_posted, experience_level, job_type, remote, easy_apply, and sort_by. Combine them to surface, for example, only remote senior full-time roles posted in the last week. ### How do I paginate through a company's job postings? Add the optional page query parameter (integer) to request more postings. Start at page 1 and increment until the response returns an empty list, which marks the end of that company's open roles. ### How much does the company jobs endpoint cost? Each page costs 10 credits on the premium tier, regardless of how many postings come back. New accounts get 100 free credits with no credit card, enough for 10 pages of job listings before you upgrade. ### How do I get full detail on a single job posting? Each posting in the list carries a job id. Pass that id to /v1/linkedin/job to fetch the full posting: description, seniority, employment type, and optional skills. This keeps the list light and lets you expand only the roles you care about. ### Can I use this to track hiring at target accounts? Yes, tracking a company's open roles is a common hiring-signal and recruiting use case. Poll the endpoint on a schedule, diff the job ids you have seen, and flag new postings to spot team expansion, new functions, or market moves early. 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 a company's LinkedIn job postings with an API - Which API lists LinkedIn jobs filtered by remote and seniority