Give your OpenClaw AI agent full access to LinkedIn data — profiles, companies, jobs, posts, people search, and B2B lead intelligence.
This skill connects your OpenClaw agent to the LinkdAPI REST API, unlocking 50+ LinkedIn endpoints so your agent can research people, companies, jobs, and content on LinkedIn — in plain language, no code required.
Once installed, just ask your agent naturally. It handles the API calls, pagination, data enrichment, and synthesis for you.
- "Look up John Smith at Salesforce on LinkedIn and give me his full work history and skills"
- "Find the LinkedIn profile for the CEO of OpenAI and get his contact info"
- "Get me the URN for username 'ryanroslansky' and then pull his recommendations"
- "Who are the top voices similar to this LinkedIn profile?"
- "Research Google on LinkedIn — give me headcount, recent posts, and open jobs"
- "Find all subsidiaries and affiliated pages of Microsoft on LinkedIn"
- "What companies are similar to Stripe on LinkedIn?"
- "Show me the last 10 posts from Anthropic's LinkedIn company page"
- "Find VP of Sales in San Francisco on LinkedIn who currently work at SaaS companies"
- "Search LinkedIn for marketing directors in London in the fintech industry"
- "Find people with the title 'Head of Growth' at Series B startups"
- "Search for Python engineers in Berlin open to remote work"
- "What remote AI engineer jobs were posted on LinkedIn in the last week?"
- "Find all open marketing jobs at Shopify and get the hiring team for the top 3"
- "Search LinkedIn for junior developer jobs with easy apply and under 10 applicants"
- "What jobs has this LinkedIn profile posted recently?"
- "Get the last 20 posts from this LinkedIn profile and summarize the themes"
- "Search LinkedIn posts about 'AI agents' from the past week sorted by latest"
- "Find all posts from Sequoia Capital on LinkedIn and pull engagement stats"
- "Get the comments on this LinkedIn post URN"
- "Pull all LinkedIn articles written by this profile and summarize key insights"
- "Get details and reactions for this LinkedIn article URL"
- "Build me a lead list: VPs of Marketing at SaaS companies in New York, include their LinkedIn profiles and current company"
- "Research this prospect before my call — LinkedIn overview, recent posts, and any articles they've written"
- "Find competitors of HubSpot on LinkedIn and pull their latest company posts"
- "Who is the hiring team for this job posting? I want to reach out directly"
linkdapi-openclaw/
├── SKILL.md # Main skill — auth, endpoint map, workflows
└── references/
├── api-ref.md # Full parameter schemas + response fields
└── skills.json # Machine-readable endpoint manifest
1. Download linkdapi-openclaw.skill from this repo
2. Upload to your VPS
rsync -avz -e "ssh -i ~/.ssh/your_key" linkdapi-openclaw.skill root@YOUR_VPS:/home/openclaw/3. Install on the server
ssh -i ~/.ssh/your_key root@YOUR_VPS
mkdir -p /home/openclaw/.openclaw/skills
cd /home/openclaw/.openclaw/skills
unzip /home/openclaw/linkdapi-openclaw.skill
chown -R 1000:1000 /home/openclaw/.openclaw/skills/4. Add your LinkdAPI key to /home/openclaw/.openclaw/agents/main/agent/openclaw.json:
"skills": {
"entries": {
"linkdapi-openclaw": {
"env": {
"LINKDAPI_KEY": "your_linkdapi_key_here"
}
}
}
}5. Restart OpenClaw
cd /home/openclaw/openclaw && docker compose restartGet your API key at linkdapi.com — 100 free credits included.
The correct auth header is X-linkdapi-apikey. Do not use x-api-key or Authorization: Bearer — both will return 401.
Built for OpenClaw. Powered by LinkdAPI.