KonbiniAPI

Get company page from LinkedIn with KonbiniAPI

Returns public information for a LinkedIn company page including description, location, employee count, and logo.

This API endpoint returns public information for a LinkedIn company page including description, location, employee count, and logo.

Perfect for

  • Data Analytics
  • Market Research
  • Platform Integration

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/linkedin/companies/{company}", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "@context": [
      "https://www.w3.org/ns/activitystreams#",
      "https://konbiniapi.com/ns/social#"
    ],
    "type": "Organization",
    "id": "https://www.linkedin.com/company/stripe",
    "url": "https://www.linkedin.com/company/stripe",
    "name": "Stripe",
    "preferredUsername": "stripe",
    "summary": "Stripe builds programmable financial services. Millions of companies—from the world's largest enterprises to the most ambitious startups—use Stripe to accept payments, grow their revenue, and accelerate new business opportunities. Headquartered in San Francisco and Dublin, the company aims to increase the GDP of the internet.",
    "location": "South San Francisco, California, US",
    "address": {
      "addressLocality": "South San Francisco",
      "addressCountry": "US",
      "streetAddress": "354 Oyster Point Blvd",
      "addressRegion": "California",
      "postalCode": "94080"
    },
    "memberCount": 16907,
    "icon": {
      "type": "Image",
      "url": "https://media.licdn.com/dms/image/v2/D4E03AQExample/profile-displayphoto-shrink_800_800/0/1700000000000"
    },
    "tagline": "Help increase the GDP of the internet.",
    "attachment": [
      {
        "type": "Link",
        "href": "https://stripe.com"
      }
    ]
  }
}