| name | linkdapi |
| description | 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. |
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:
from linkdapi import LinkdAPI
client = LinkdAPI("YOUR_API_KEY")
profile = client.get_profile_overview("ryanroslansky")
print(profile)
Run with:
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