Install
openclaw skills install @tonywangcn/linkedin-researchLooks up LinkedIn company, product, and showcase pages by ID via the Crawlora API, returning clean JSON. Use when the user wants a company's LinkedIn profile info, a product page, or a showcase page — instead of scraping LinkedIn directly. Covers company/product/showcase pages only, not personal LinkedIn profiles.
openclaw skills install @tonywangcn/linkedin-researchLook up LinkedIn company, product, and showcase page info by ID — all as normalized JSON from the Crawlora API, no browser automation or LinkedIn login required.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.Pick the page type, then call it by ID:
/linkedin/company/{id} — detailed company info (industry,
size, description, and related fields) by LinkedIn Company ID./linkedin/product/{id} — detailed product info by LinkedIn
Product ID./linkedin/showcase/{id} — detailed info about a
LinkedIn showcase page by ID.Full endpoint list, methods, and params: reference/endpoints.md.
# Company info:
scripts/crawlora.sh /linkedin/company/1035 | jq '.'
# Product info:
scripts/crawlora.sh /linkedin/product/urn:li:organizationProduct:123456 | jq '.'
# Showcase page info:
scripts/crawlora.sh /linkedin/showcase/1234567 | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/linkedin/company/1035" | jq '.'
See reference/endpoints.md for the full LinkedIn
company/product/showcase endpoint list this skill uses.
/linkedin/company/{id} for a target company to
pull industry, size, and description before an outreach or comparison doc./linkedin/product/{id} to check how a competitor
positions a specific product line on LinkedIn./linkedin/showcase/{id} to see how a company
segments a sub-brand or business unit on its LinkedIn showcase page.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.