LinkedIn Job API
API 한 번의 호출로 LinkedIn Job 데이터를 받아 가세요. Get LinkedIn job details, normalised to the SocialCrawl schema.
2026년 9월 업데이트SocialCrawl 팀이 직접 관리해요
LinkedIn 채용 공고 하나를 전문으로 반환합니다. 직함과 채용 회사, 근무지, 게시일, 직무 설명 본문, Easy Apply 여부가 나옵니다.
search/jobs나 company/jobs 다음에 사용하세요. 목록에서 받은 job id를 넘기면 설명 전문이 나옵니다.
67개 플랫폼을 병렬로 검색합니다
Job API로 무엇을 할 수 있을까요
Job 엔드포인트가 통합 스키마와 계산 필드를 담은 LinkedIn 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/linkedin/job?id=4462185352"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/linkedin/job",
params={
'id': '4462185352',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/linkedin/job?id=4462185352",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| id | 예 | LinkedIn job ID. |
| include_skills | 아니오 | When true, include the job's required skills in `job.ext.skills`. |
LinkedIn Job API는 무엇을 돌려주나요
모든 응답은 하나의 통합 스키마를 따라요. 크레딧을 쓰기 전에 어떤 필드가 돌아오는지, 실제 응답 본문 그대로 확인해 보세요.
응답 예시 보기
{
"success": true,
"platform": "linkedin",
"endpoint": "/v1/linkedin/job",
"data": {
"job": {
"id": "4462185352",
"title": "Customer Success Account Manager",
"url": "https://www.linkedin.com/jobs/view/4462185352",
"company": {
"id": "1035",
"name": "Microsoft",
"url": "https://www.linkedin.com/company/microsoft",
"verified": null
},
"location": "Jordan",
"listed_at": "2026-09-02T12:44:58.000Z",
"easy_apply": null,
"remote": "Hybrid",
"employment_type": "Full-time",
"experience_level": null,
"description": "Overview\n\nAs a Customer Success Account Manager (CSAM), you will serve as a trusted advisor to enterprise customers, helping them realize business value from their Microsoft technology investments. You will lead customer engagement strategies focused on cloud adoption, digital transformation, AI innovation, operational excellence, and business outcomes.The CSAM partners closely with customer executives, technical stakeholders, sales teams, solution specialists, and partners to accelerate solution deployment, increase consumption, and identify opportunities for expansion. This role combines customer success leadership, strategic account management, and business growth responsibilities, ensuring customers achieve measurable value while advancing their cloud transformation journey.\n\nCustomer Success & Relationship Management\n\nExecutive stakeholder management and influencing skillsTrusted advisor and consultative engagement approachCustomer success planning and value realizationStrategic account managementChange management and adoption leadershipCross-functional leadership and orchestration\n\nCloud & Digital Transformation\n\nUnderstanding of cloud technologies, AI solutions, cybersecurity, and digital transformation trendsAbility to connect technology strategies to business outcomesTechnical aptitude and ability to engage both business and technical audiencesData-driven decision making and business analytics\n\nBusiness Growth & Pipeline Development\n\nOpportunity identification and qualificationConsumption-driven growth planningPipeline generation and opportunity accelerationBusiness case development and value articulationCommercial acumen and financial understandingAccount planning and growth strategy execution\n\nLeadership Competencies\n\nStrategic thinkingProblem solvingNegotiation and influenceExecutive communication and storytellingCollaboration across sales, technical, partner, and delivery organizationsCustomer-centric mindset with strong accountability for outcomes \n\nResponsibilities\n\nCustomer Success Leadership\n\nBuild and maintain trusted relationships with customer executives and key stakeholders.Develop and execute Customer Success Plans aligned to customer business priorities.Drive adoption, usage growth, and business value realization across Microsoft cloud solutions.Lead executive business reviews and strategic customer engagements.Proactively identify risks and develop mitigation plans to support customer success.\n\nCloud Transformation & Business Outcomes\n\nHelp customers accelerate their cloud, security, data, AI, and workplace transformation initiatives.Ensure successful deployment, adoption, and long-term realization of solution value.Connect business objectives with technology capabilities to drive measurable outcomes.Advocate for customer needs and influence internal teams to deliver exceptional customer experiences.\n\nGrowth & Pipeline Accountability\n\nIdentify expansion opportunities through customer engagement, adoption insights, and business planning discussions.Partner with sales teams to develop and accelerate cloud growth opportunities.Contribute to pipeline generation by uncovering new business needs, transformation initiatives, and innovation opportunities.Align customer success strategies with broader account growth plans.Support opportunity progression from business value discussions through solution adoption and expansion.\n\nCross-Functional Collaboration\n\nCoordinate resources across sales, technical, consulting, support, and partner teams.Drive alignment between customer priorities and Microsoft solution strategies.Foster a collaborative environment focused on customer outcomes and long-term growth.\n\nQualifications\n\nRequired Qualifications\n\nBachelor's Degree in Business, Information Technology, Computer Science, Engineering, or related field, or equivalent practical experience.Several years of experience in customer success, account management, consulting, cloud solutions, enterprise technology, or related customer-facing roles.Experience engaging with senior business and technical stakeholders.Demonstrated ability to drive customer outcomes and manage complex stakeholder environments.\n\nPreferred Qualifications\n\nExperience in cloud computing, AI, cybersecurity, data, or digital transformation solutions.Proven success driving technology adoption, business value realization, and customer growth.Experience identifying and developing business opportunities within existing customer relationships.Strong understanding of enterprise sales motions and customer lifecycle management.Relevant industry certifications in cloud, cybersecurity, project management, or customer success disciplines.\n\nThis position will be open for a minimum of 5 days, with applications accepted on an ongoing basis until the position is filled.\n\nMicrosoft is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, citizenship, color, family or medical care leave, gender identity or expression, genetic information, immigration status, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran or military status, race, ethnicity, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable local laws, regulations and ordinances. If you need assistance with religious accommodations and/or a reasonable accommodation due to a disability during the application process, read more about requesting accommodations.",
"apply_url": "https://apply.careers.microsoft.com/careers/job/1970393556978275?utm_source=linkedin&domain=microsoft.com&src=LinkedIn",
"ext": {
"is_promote": null,
"applicant_count": 0,
"skills": null
}
}
},
"credits_used": 5,
"request_id": "req_example000000",
"cached": false,
"credits_remaining": 9999
}통합 응답 구조를 보여 주는 실제 샘플이에요. 필드 값은 조회한 대상에 따라 달라져요.
LinkedIn Job API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 67개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 67개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.
코드 한 줄 쓰기 전에, 데이터부터
Visual Data Explorer에 URL만 붙여넣으면 결과 카드와 정형화된 테이블, CSV 내보내기를 바로 사용할 수 있습니다.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}자주 묻는 질문
API, 요금제, 기능에 대한 질문과 답변입니다.
문의하기LinkedIn 채용공고 하나는 어떻게 가져오나요?
LinkedIn 채용공고 엔드포인트는 어떤 필드를 주나요?
여기 필요한 잡 ID는 어디서 얻나요?
요구 스킬은 어떻게 함께 받나요?
LinkedIn 채용공고 엔드포인트 요금은 얼마인가요?
채용 시장 분석에도 쓸 수 있나요?
AI에게 SocialCrawl을 물어보세요
LinkedIn Job 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 LinkedIn 데이터를 받아 가세요.
