LinkedIn company research
Look 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.
When to use this skill
- "What's 's LinkedIn company info (industry, size, description)?"
- "Pull the LinkedIn product page for ."
- "Get details on this LinkedIn showcase page."
- Competitor company profiling or firmographic research using LinkedIn IDs.
- Enriching a company record with its LinkedIn company/product/showcase data.
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
- Set
CRAWLORA_API_KEYin the environment before running the helper. - The helper reads
CRAWLORA_API_KEYfrom the environment and sends requests tohttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
Pick the page type, then call it by ID:
- Company —
/linkedin/company/{id}— detailed company info (industry, size, description, and related fields) by LinkedIn Company ID. - Product —
/linkedin/product/{id}— detailed product info by LinkedIn Product ID. - Showcase page —
/linkedin/showcase/{id}— detailed info about a LinkedIn showcase page by ID.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# 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 '.'
Use scripts/crawlora.sh for all requests; it keeps the API key out of command-line arguments.
Endpoint reference
See reference/endpoints.md for the full LinkedIn
company/product/showcase endpoint list this skill uses.
Examples
- Company profiling:
/linkedin/company/{id}for a target company to pull industry, size, and description before an outreach or comparison doc. - Product-page audit:
/linkedin/product/{id}to check how a competitor positions a specific product line on LinkedIn. - Showcase-page check:
/linkedin/showcase/{id}to see how a company segments a sub-brand or business unit on its LinkedIn showcase page.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public company/product/showcase pages; no login, no private content. Respect LinkedIn's terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Scope: companies/products, not personal profiles. This skill covers LinkedIn company, product, and showcase pages by ID only — there is no personal-profile lookup endpoint; don't imply one exists.
- All three endpoints take a LinkedIn ID as a path parameter — no search or discovery endpoint is available to find that ID, so it must come from the page URL or an upstream source.