Collect and analyze public LinkedIn data
Coding
linkedin-research
Try itLooks 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.
What it does
Looks 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.
The skill document
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.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://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 '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/linkedin/company/1035" | jq '.'
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.
Related skills
Pull LinkedIn person and company profiles, their posts, job listings and post comments as structured JSON. 9 endpoints from 1 to 30 credits, four of them paginated, for prospecting, recruiting, and market research.
Search ads running across LinkedIn by keyword and/or advertiser company id, returning each ad's advertiser, ad copy, format, promoted label, thumbnail and a detail link, then open one ad in full with its media, headline, who paid for it and the advertiser's company URL. 2 endpoints, 6 credits each, structured JSON.
Collect and analyze public Linkedin Ad Library data
Collect Linkedin Builder data and return results
Enrich a list of prospects (profile URLs, slugs, or names) with LinkedIn role and experience data via Veezee. Use when the user wants current titles, companies, or work history for known people, or asks to "enrich" leads/prospects/candidates.