# LinkedIn Search Jobs API (https://www.socialcrawl.dev/platforms/linkedin/search-jobs) > Search LinkedIn jobs — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/search/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 | | --- | --- | --- | | `query` | yes | Search keyword. | | `page` | no | | | `date_posted` | no | | | `experience_level` | no | | | `job_type` | no | | | `remote` | no | | | `easy_apply` | no | | | `sort_by` | no | | | `company` | no | | | `geocode` | no | | | `industry_ids` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/search/jobs?query=marketing" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I search LinkedIn jobs with an API? Send a GET request to /v1/linkedin/search/jobs with a query keyword. SocialCrawl returns paginated job listings with title, company, location, and posted date. No LinkedIn login or Jobs API partner access required. ### What filters does the LinkedIn job search API support? Beyond query, filter by company, geocode, industry_ids, date_posted, experience_level, job_type, remote, and easy_apply. Use sort_by to order results and page to paginate deeper into the listings. ### How much does the LinkedIn Jobs API cost? Each page of job results costs 10 credits on the premium tier, no matter how many listings return in that page. Every new account gets 100 free credits with no credit card, enough for 10 searches. ### Can I filter LinkedIn jobs by remote and experience level? Yes. Set remote to surface remote roles and experience_level to match seniority. Combine with job_type and easy_apply to build a focused feed for a job board, ATS, or market-research pipeline. ### How do I paginate LinkedIn job search results? Add the page query parameter (integer) and increment it to load the next set of jobs. Start at page 1 and continue until the response returns an empty list, which marks the end of matches. ### Where does the geocode filter come from? The geocode filter takes a LinkedIn location id. Resolve a place name like San Francisco to its id with the /v1/linkedin/search/location endpoint first, then pass that id into geocode here. 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 search LinkedIn jobs by company and location with an API - What filters does the LinkedIn job search API support?