Appearance
Company Page
GET /v1/linkedin/company
Fetches a LinkedIn company page with details including name, description, logo, cover image, slogan, location, headquarters, employee count (headcount/staff size), website, industry, company type, founded year, specialties, funding rounds with investors, featured employees, recent posts, and similar company pages.
Authentication
All requests require the x-api-key header. Get your key at scrapecreators.com.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
url | string | yes | The URL of the LinkedIn company page to get | https://linkedin.com/company/shopify |
Example Request
curl
bash
curl 'https://api.scrapecreators.com/v1/linkedin/company?url=https://linkedin.com/company/shopify' \
-H 'x-api-key: $SCRAPECREATORS_API_KEY'Node / TypeScript
js
const params = new URLSearchParams({ url: 'https://linkedin.com/company/shopify' });
const res = await fetch(`https://api.scrapecreators.com/v1/linkedin/company?${params}`, {
headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);Python
python
import os, requests
r = requests.get(
'https://api.scrapecreators.com/v1/linkedin/company',
headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
params={'url': 'https://linkedin.com/company/shopify'},
)
r.raise_for_status()
print(r.json())CLI
bash
scrapecreators linkedin company --helpExample Response
json
{
"success": true,
"id": "784652",
"name": "Shopify",
"description": "Shopify is a leading global commerce company, providing trusted tools to start, grow, market, and manage a retail business of any size. Shopify makes commerce better for everyone with a platform and services that are engineered for reliability, while delivering a better shopping experience for consumers everywhere. Shopify powers millions of businesses in more than 175 countries and is trusted by brands such as Allbirds, Gymshark, PepsiCo, Staples, and many more.\n\nFind all our jobs here: www.shopify.com/careers",
"location": {
"city": "Ottawa",
"state": "ON",
"country": "CA"
},
"employeeCount": 23591,
"website": "https://www.shopify.com",
"logo": "https://media.licdn.com/dms/image/v2/D560BAQG_KjTcNcrLVw/company-logo_200_200/B56ZZolTV.HUAU-/0/1745511331439/shopify_logo?e=2147483647&v=beta&t=D2saVg58cKnwEiDQgFgzvwL24mTRM_cPuU1ndv6kL2U",
"coverImage": "https://media.licdn.com/dms/image/v2/D563DAQGruQL8kvBvnw/image-scale_191_1128/B56ZanR4DSGoAs-/0/1746563203576/shopify_cover?e=2147483647&v=beta&t=rHubhVZZZSU_1V8tCeBpwL80OG3bNBjzBNEWFO24qa4",
"slogan": "Make commerce better for everyone",
"similarPages": [
{
"link": "https://www.linkedin.com/company/airbnb",
"name": "Airbnb",
"image": "https://media.licdn.com/dms/image/v2/C560BAQFhfl32crIGIw/company-logo_100_100/company-logo_100_100/0/1630637496980/airbnb_logo?e=2147483647&v=beta&t=idNQqoBZi6dZq6iG78J5GTOsNV_ltJf7ITo7zYZ6VWg"
}
],
"industry": "Software Development",
"size": "10,001+ employees",
"founded": 2006,
"headquarters": "Ottawa, ON",
"type": "Public Company",
"specialties": [
"ecommerce"
],
"funding": {
"numberOfRounds": 4,
"lastRound": {
"type": "Series C",
"date": "2014-01-11T00:00:00.000Z",
"amount": "US$ 100.0M"
},
"investors": [
{
"name": "OMERS Ventures",
"crunchbaseUrl": "https://www.crunchbase.com/organization/omers-ventures",
"image": "https://media.licdn.com/dms/image/sync/v2/D4E38AQEnDf6SgPOjAQ/crunchbase_investor_logo_100/crunchbase_investor_logo_100/0/1748147400909?e=1749146400&v=beta&t=V974RcVsrtQI1mZcqXPoKT8kutQoYneu8pjbjm5Un8E"
}
]
},
"employees": [
{
"name": "🇨🇦 Todd Jefferson",
"title": "Staff Software Developer at Shopify",
"link": "https://ca.linkedin.com/in/toddjefferson",
"image": "https://media.licdn.com/dms/image/v2/C4E03AQHg-rFtEf9qpw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1583259322606?e=2147483647&v=beta&t=uBFwlGCBbgFmwrP8f29P4nIDJCgZ1YEyyntBzpR9j30"
}
],
"posts": [
{
"url": "https://www.linkedin.com/posts/shopify_shopifys-design-vision-brings-horizon-into-activity-7331699854873620480-R_N8",
"datePublished": "2025-05-23T15:17:41.770Z",
"text": "In the era of AI, design matters more than ever. And we’re not just keeping pace-we’re leading the way.\
... (truncated)Credits
Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.
Errors
| Status | Meaning | Action |
|---|---|---|
| 200 | Success. | Use the JSON payload. |
| 400 | Invalid or missing parameter. | Verify required parameters and value format. |
| 401 | Missing or invalid x-api-key. | Pass a valid API key in the header. |
| 402 | Out of credits. | Top up at scrapecreators.com or wait for plan reset. |
| 404 | Resource not found or private. | Confirm the handle, URL, or id and that the resource is public. |
| 429 | Rate limited. | Backoff and retry with exponential delay. |
| 500 | Server error or upstream platform failure. | Retry with backoff; report persistent errors to support. |