Overview
- Skill Key
- foontinz/linkdapi
- Author
- foontinz
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/foontinz/linkdapi
- Latest Commit SHA
- a9aa0dfac45558e4373247632741eb3e46c3e3d1
Work with LinkdAPI Python SDK for accessing LinkedIn professional profile and company data. Use when you need to fetch profile information, company data, job listings, or search for people/jobs on LinkedIn. The skill uses uv script pattern for ephemeral Python scripts with inline dependencies.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 linkdapi 技能。 若已安装,则直接安装 linkdapi 技能。
# LinkdAPI Python SDK
Python SDK for LinkdAPI — professional profile and company data from LinkedIn with enterprise-grade reliability.
> **Get your API key:** https://linkdapi.com/signup?ref=K_CZJSWF
## Quick Start Pattern
Use the **uv script pattern** for ephemeral Python scripts with inline dependencies:
```python
# /// script
# dependencies = [
# "linkdapi",
# ]
# ///
from linkdapi import LinkdAPI
client = LinkdAPI("YOUR_API_KEY")
profile = client.get_profile_overview("ryanroslansky")
print(profile)
```
Run with:
```bash
uv run script.py
```
This installs dependencies automatically, runs the script, and cleans up — perfect for one-off tasks.
## Why This Pattern
- **No global installs**: Dependencies are managed per-script
- **Ephemeral by design**: Write, run, delete — no cleanup needed
- **Reproducible**: Everything needed is in one file
- **Fast**: uv handles dependency resolution and caching
## Writing Scripts
### Script Header Format
Always start with the uv script block:
```python
# /// script
# dependencies = [
# "linkdapi",
# # Add more if needed (e.g., "rich", "pandas")
# ]
# ///
```
### Common Tasks
**Get profile overview:**
```python
# /// script
# dependencies = ["linkdapi"]
# ///
from linkdapi import LinkdAPI
client = LinkdAPI("YOUR_API_KEY")
profile = client.get_profile_overview("ryanroslansky")
if profile.get('success'):
data = profile['data']
print(f"{data['fullName']} - {data.get('headline', '')}")
print(f"Location: {data.get('location')}")
```
**Get company info:**
```python
# /// script
# dependencies = ["linkdapi"]
# ///
from linkdapi import LinkdAPI
client = LinkdAPI("YOUR_API_KEY")
company = client.get_company_info(name="google")
if company.get('success'):
data = company['data']
print(f"{data['name']}")
print(f"Industry: {data.get('industry')}")
print(f"Employees: {data.get('employeeCount', 'N/A')}")
```
**Search jobs:**
```python
# /// script
# dependencies = ["linkdapi"]
# ///...
human-pages-ai
Search and hire real humans for tasks — photography, delivery, research, and more
zseven-w
Reusable skill templates for OpenClaw AI agents. Templates for API integration, data processing, web scraping, CLI tools, and file processing.
capt-marbles
Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carlosarturoleon
Connect to Windsor.ai MCP for natural language access to 325+ data sources including Facebook Ads, GA4, HubSpot, Shopify, and more.