LinkedIn API endpoint
Get Linkedin Showcase Page Info
Returns detailed information about a LinkedIn showcase page by ID.
GETapiKey10 credits/requestlinkedin.showcaseResponseDoc
/linkedin/showcase/{id}Parameters
| Name | In | Type | Required | Enum | Example | Description |
|---|---|---|---|---|---|---|
| id | path | string | Yes | LinkedIn Showcase Page ID | ||
| x-api-key | header | string | Yes | API key required |
Authentication
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Billing
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
- Credit cost
- 10 credits/request
- Charged response
- Successful 2xx responses
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
Catalog quality warnings
- missing example for required path param: id
Failure responses
| Status | Description | Schema |
|---|---|---|
| 400 | Invalid Params | #/definitions/app.Response |
| 429 | Rate limit exceeded | #/definitions/app.Response |
| 500 | Internal server error | #/definitions/app.Response |
Example response
{
"code": 200,
"msg": "OK",
"data": {
"name": "Think with Google",
"link": "https://www.linkedin.com/showcase/think-with-google",
"logo": "https://static.licdn.com/scds/common/u/images/email/artdeco/logos/96/linkedin-bug-color.png",
"headline": "",
"follower_count": 923484,
"num_of_employees_on_linkedin": 0
}
}Request schema
No body schema
Response schema
#/definitions/linkedin.showcaseResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | linkedin.LinkedinCompanyResponse | No | ||||
| data.about | string | No | We’re a team of scientists, engineers... | |||
| data.affiliated_pages | array | No | ||||
| data.affiliated_pages[].address | string | No | San Francisco, CA | |||
| data.affiliated_pages[].industry | string | No | Research Services | |||
| data.affiliated_pages[].link | string | No | https://www.linkedin.com/company/openai | |||
| data.affiliated_pages[].name | string | No | OpenAI | |||
| data.company_size | string | No | 501-1,000 | |||
| data.follower_count | integer | No | 1176422 | |||
| data.founded_on | integer | No | 2010 | |||
| data.headline | string | No | We're committed to solving intelligence, to advance science and benefit humanity. | |||
| data.headquarters | string | No | London, London | |||
| data.industry | string | No | Research Services | |||
| data.link | string | No | https://www.linkedin.com/company/googledeepmind | |||
| data.locations | array | No | ||||
| data.locations[].address | string | No | Kings Cross, London, London N1C4AG, GB | |||
| data.locations[].is_primary | boolean | No | true | |||
| data.logo | string | No | https://static.licdn.com/.../linkedin-bug-color.png | |||
| data.name | string | No | Google DeepMind | |||
| data.num_of_employees_on_linkedin | integer | No | 5590 | |||
| data.similar_pages | array | No | ||||
| data.similar_pages[].address | string | No | San Francisco, CA | |||
| data.similar_pages[].industry | string | No | Research Services | |||
| data.similar_pages[].link | string | No | https://www.linkedin.com/company/openai | |||
| data.similar_pages[].name | string | No | OpenAI | |||
| data.specialties | string | No | Artificial Intelligence and Machine Learning | |||
| data.type | string | No | Privately Held | |||
| data.updates | array | No | ||||
| data.updates[].author | string | No | Google DeepMind | |||
| data.updates[].author_link | string | No | https://uk.linkedin.com/company/googledeepmind | |||
| data.updates[].images | array | No | ["https://example.com/image1.jpg"] | |||
| data.updates[].is_reposted | boolean | No | false | |||
| data.updates[].logo | string | No | https://media.licdn.com/dms/image/v2/D4E0BAQEntrYwxPlbQA/company-logo_100_100/0/googledeepmind_logo | |||
| data.updates[].num_of_comments | integer | No | 21 | |||
| data.updates[].num_of_reactions | integer | No | 571 | |||
| data.updates[].post_link | string | No | https://www.linkedin.com/posts/googledeepmind_thomas-story-activity-7313245349987385346-5COL | |||
| data.updates[].published_at | string | No | 1w | |||
| data.updates[].summary | string | No | When his son was diagnosed with a rare disease, Googler Thomas Wagner... | |||
| data.updates[].videos | array | No | ["https://example.com/video1.mp4"] | |||
| data.website | string | No | https://www.deepmind.google | |||
| msg | string | No | OK |
Example request
curl -X GET "https://api.crawlora.net/api/v1/linkedin/showcase/user-1" -H "x-api-key: <api-key>"
TypeScript fetch
const url = new URL("https://api.crawlora.net/api/v1/linkedin/showcase/user-1");
const headers = new Headers();
headers.set("x-api-key", "<api-key>");
const response = await fetch(url, {
method: "GET",
headers,
});
const payload = await response.json();