Skip to main content

Companies

Retrieve basic company info

The Linked API allows you to retrieve basic information about a company on LinkedIn programmatically. You can specify whether to retrieve just the basic info using the include query parameter. Below is an example of how to retrieve this information using a GET request.

Endpoint

GET /v1/companies

Parameters

  • url (required, string): The URL of the LinkedIn company page to retrieve information from.
  • include (optional, string): Set to basicInfo to retrieve only basic information about the company.

Example

curl -X GET "https://api.linkedapi.io/v1/companies?include=basicInfo" \
-H "Content-Type: application/json" \
-H "x-api-token: your-api-token-here" \
-H "account-token: your-account-token-here" \
-d '{
  "url": "https://www.linkedin.com/company/ditch/"
}'

Response

{
  "data": {
    "basicInfo": {
      "name": "Ditch",
      "description": "Ditch is an AI-powered financial wellness app that helps users take control of their debt. Using advanced analytics and insights, Ditch helps users prioritize and pay off their debt more efficiently, so they can focus on what's important to them. With its easy-to-use interface and customizable dashboard, Ditch is the perfect companion for the 240 million Americans who are struggling with debt.",
      "headquarters": "US",
      "industry": "Financial Services",
      "specialties": "",
      "website": "https://ditch.io",
      "employeeCount": 12,
      "yearFounded": 2020,
      "ventureFinancing": false,
      "vacanciesCount": 0
    }
  },
  "success": true
}

Errors

  • 400 Bad Request: Invalid or missing parameters.
  • 401 Unauthorized: Missing or invalid authorization token.
  • 404 Not Found: Company profile not found.