/get-company-details-by-idGet Company Details by ID
Company
Cost / request
$0.01
Response format
JSON
Protocol
REST
About this endpoint
Retrieve comprehensive company information using a LinkedIn numeric company ID. Returns the full company profile including description, industry classification, employee range, headquarters, specialties, and affiliated companies. Use this when you already have the LinkedIn company ID from a previous enrichment step or stored in your database.
Use cases
Refresh stale company data in your database using stored IDs
Build company relationship graphs from affiliated company IDs
Track company profile changes over time for competitive intelligence
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| id | query | string | required | —Default: 1441 |
Responses
200
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"universalName": {
"type": "string"
},
"linkedinUrl": {
"type": "string"
},
"tagline": {
"type": "string"
},
"description": {
"type": "string"
},
"type": {
"type": "string"
},
"phone": {
"type": "string"
},
"Images": {
"type": "object",
"properties": {
"logo": {
"type": "string"
},
"cover": {
"type": "string"
}
}
},
"isClaimable": {
"type": "boolean"
},
"backgroundCoverImages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
}
}
},
"logos": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
}
}
},
"staffCount": {
"type": "integer"
},
"headquarter": {
"type": "object",
"properties": {
"geographicArea": {
"type": "string"
},
"country": {
"type": "string"
},
"city": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"line1": {
"type": "string"
}
}
},
"locations": {
"type": "array",
"items": {
"type": "object"
}
},
"industries": {
"type": "array",
"items": {
"type": "string"
}
},
"specialities": {
"type": "array",
"items": {
"type": "string"
}
},
"website": {
"type": "string"
},
"founded": {
"type": "null"
},
"callToAction": {
"type": "object",
"properties": {
"callToActionType": {
"type": "string"
},
"visible": {
"type": "boolean"
},
"callToActionMessage": {
"type": "object",
"properties": {
"textDirection": {
"type": "string"
},
"text": {
"type": "string"
}
}
},
"url": {
"type": "string"
}
}
},
"followerCount": {
"type": "integer"
},
"staffCountRange": {
"type": "string"
},
"crunchbaseUrl": {
"type": "string"
},
"fundingData": {
"type": "object",
"properties": {
"updatedAt": {
"type": "string"
},
"updatedDate": {
"type": "string"
},
"numFundingRounds": {
"type": "integer"
},
"lastFundingRound": {
"type": "object",
"properties": {
"investorsCrunchbaseUrl": {
"type": "string"
},
"leadInvestors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"investorCrunchbaseUrl": {
"type": "string"
}
}
}
},
"fundingRoundCrunchbaseUrl": {
"type": "string"
},
"fundingType": {
"type": "string"
},
"moneyRaised": {
"type": "object",
"properties": {
"currencyCode": {
"type": "string"
},
"amount": {
"type": "string"
}
}
},
"numOtherInvestors": {
"type": "integer"
},
"announcedOn": {
"type": "object",
"properties": {
"month": {
"type": "integer"
},
"day": {
"type": "integer"
},
"year": {
"type": "integer"
}
}
}
}
}
}
}
}
}
}
}Agent / Developer Schema
Machine-readable formats for integrating this endpoint into AI agents and toolchains.
{
"operationId": "Get_Company_Details_by_ID",
"method": "get",
"path": "/get-company-details-by-id",
"summary": "Get Company Details by ID",
"description": "The endpoint enrich full details of the company",
"parameters": [
{
"name": "id",
"in": "query",
"required": true,
"schema": {
"type": "string",
"default": "1441"
}
}
],
"responses": [
{
"statusCode": "200",
"description": "200",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"universalName": {
"type": "string"
},
"linkedinUrl": {
"type": "string"
},
"tagline": {
"type": "string"
},
"description": {
"type": "string"
},
"type": {
"type": "string"
},
"phone": {
"type": "string"
},
"Images": {
"type": "object",
"properties": {
"logo": {
"type": "string"
},
"cover": {
"type": "string"
}
}
},
"isClaimable": {
"type": "boolean"
},
"backgroundCoverImages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
}
}
},
"logos": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
}
}
},
"staffCount": {
"type": "integer"
},
"headquarter": {
"type": "object",
"properties": {
"geographicArea": {
"type": "string"
},
"country": {
"type": "string"
},
"city": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"line1": {
"type": "string"
}
}
},
"locations": {
"type": "array",
"items": {
"type": "object"
}
},
"industries": {
"type": "array",
"items": {
"type": "string"
}
},
"specialities": {
"type": "array",
"items": {
"type": "string"
}
},
"website": {
"type": "string"
},
"founded": {
"type": "null"
},
"callToAction": {
"type": "object",
"properties": {
"callToActionType": {
"type": "string"
},
"visible": {
"type": "boolean"
},
"callToActionMessage": {
"type": "object",
"properties": {
"textDirection": {
"type": "string"
},
"text": {
"type": "string"
}
}
},
"url": {
"type": "string"
}
}
},
"followerCount": {
"type": "integer"
},
"staffCountRange": {
"type": "string"
},
"crunchbaseUrl": {
"type": "string"
},
"fundingData": {
"type": "object",
"properties": {
"updatedAt": {
"type": "string"
},
"updatedDate": {
"type": "string"
},
"numFundingRounds": {
"type": "integer"
},
"lastFundingRound": {
"type": "object",
"properties": {
"investorsCrunchbaseUrl": {
"type": "string"
},
"leadInvestors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"investorCrunchbaseUrl": {
"type": "string"
}
}
}
},
"fundingRoundCrunchbaseUrl": {
"type": "string"
},
"fundingType": {
"type": "string"
},
"moneyRaised": {
"type": "object",
"properties": {
"currencyCode": {
"type": "string"
},
"amount": {
"type": "string"
}
}
},
"numOtherInvestors": {
"type": "integer"
},
"announcedOn": {
"type": "object",
"properties": {
"month": {
"type": "integer"
},
"day": {
"type": "integer"
},
"year": {
"type": "integer"
}
}
}
}
}
}
}
}
}
}
},
"example": {
"success": true,
"message": "",
"data": {
"id": "1441",
"name": "Google",
"universalName": "google",
"linkedinUrl": "https://www.linkedin.com/company/google",
"tagline": "",
"description": "A problem isn't truly solved until it's solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone.\n\nCheck out our career opportunities at goo.gle/3DLEokh",
"type": "Public Company",
"phone": "",
"Images": {
"logo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1743638400&v=beta&t=EZ-qIV9msmPpUEFmddmX60XNv3nu521MGt3zcH-Ylkw",
"cover": "https://media.licdn.com/dms/image/v2/D563DAQFydSPUShE9gQ/image-scale_127_750/image-scale_127_750/0/1715888854094/google_cover?e=1736258400&v=beta&t=0aEJXWXcw2aJoBSPgpafHRsVcBENvFRQPTZH-uPx8i0"
},
"isClaimable": false,
"backgroundCoverImages": [
{
"url": "https://media.licdn.com/dms/image/v2/D563DAQFydSPUShE9gQ/image-scale_127_750/image-scale_127_750/0/1715888854094/google_cover?e=1736258400&v=beta&t=0aEJXWXcw2aJoBSPgpafHRsVcBENvFRQPTZH-uPx8i0",
"width": 750,
"height": 126
},
{
"url": "https://media.licdn.com/dms/image/v2/D563DAQFydSPUShE9gQ/image-scale_108_640/image-scale_108_640/0/1715888854094/google_cover?e=1736258400&v=beta&t=JaHNkHE9M9pzHrHrqvR0xy5Hf5grmcQehk_Rd_kL7fM",
"width": 108,
"height": 18
},
{
"url": "https://media.licdn.com/dms/image/v2/D563DAQFydSPUShE9gQ/image-scale_191_1128/image-scale_191_1128/0/1715888854094/google_cover?e=1736258400&v=beta&t=ZOHVJG4dvcjzQ6c6J8JviLDlP9B458Ec3cIYejVo8xs",
"width": 1128,
"height": 191
}
],
"logos": [
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_200_200/company-logo_200_200/0/1631311446380?e=1743638400&v=beta&t=y3hNPrQvEq9O4b0P3L8e6P5iVJEIOqqjwYbKbDnn86c",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_100_100/company-logo_100_100/0/1631311446380?e=1743638400&v=beta&t=ofMfC3AGtZqh9X5j_-NFKlxU1p_jBQPVv1IhF-cw49A",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1743638400&v=beta&t=EZ-qIV9msmPpUEFmddmX60XNv3nu521MGt3zcH-Ylkw",
"width": 400,
"height": 400
}
],
"staffCount": 303008,
"headquarter": {
"geographicArea": "CA",
"country": "US",
"city": "Mountain View",
"postalCode": "94043",
"line1": "1600 Amphitheatre Parkway"
},
"locations": [
{
"geographicArea": "CA",
"country": "US",
"city": "Mountain View",
"postalCode": "94043",
"headquarter": true,
"line1": "1600 Amphitheatre Parkway"
},
{
"geographicArea": "NY",
"country": "US",
"city": "New York",
"postalCode": "10011",
"line1": "111 8th Ave"
},
{
"geographicArea": "North Holland",
"country": "NL",
"city": "Amsterdam",
"postalCode": "1082 MD",
"line1": "Claude Debussylaan 34"
},
{
"geographicArea": "SP",
"country": "BR",
"city": "Sao Paulo",
"postalCode": "04538-133",
"line1": "Avenida Brigadeiro Faria Lima, 3477"
},
{
"geographicArea": "ON",
"country": "CA",
"city": "Kitchener",
"postalCode": "N2H 5G5",
"line1": "51 Breithaupt St"
},
{
"geographicArea": "County Dublin",
"country": "IE",
"city": "Dublin",
"line1": "Barrow Street"
},
{
"geographicArea": "Karnataka",
"country": "IN",
"city": "Bengaluru",
"postalCode": "560016",
"line1": "Old Madras Road"
},
{
"geographicArea": "CO",
"country": "US",
"city": "Boulder",
"postalCode": "80302",
"line1": "2590 Pearl St"
},
{
"geographicArea": "WA",
"country": "US",
"city": "Seattle",
"postalCode": "98103",
"line1": "601 N 34th St"
},
{
"geographicArea": "NSW",
"country": "AU",
"city": "Sydney",
"postalCode": "2009",
"line1": "48 Pirrama Rd"
},
{
"geographicArea": "CA",
"country": "US",
"city": "Irvine",
"postalCode": "92612",
"line1": "19510 Jamboree Rd"
},
{
"geographicArea": "IL",
"country": "US",
"city": "Chicago",
"postalCode": "60607",
"line1": "320 N Morgan St"
},
{
"geographicArea": "Maharashtra",
"country": "IN",
"city": "Mumbai",
"postalCode": "400051",
"line1": "3 Bandra Kurla Complex Road"
},
{
"geographicArea": "National Capital Region",
"country": "PH",
"city": "Taguig City",
"line1": "5th Ave"
},
{
"geographicArea": "Singapore",
"country": "SG",
"city": "Singapore",
"postalCode": "118484",
"line1": "3 Pasir Panjang Rd"
},
{
"geographicArea": "TS",
"country": "IN",
"city": "Hyderabad",
"postalCode": "500084",
"line1": "13"
},
{
"geographicArea": "VIC",
"country": "AU",
"city": "Melbourne",
"postalCode": "3000",
"line1": "90 Collins St"
},
{
"geographicArea": "CA",
"country": "US",
"city": "San Bruno",
"postalCode": "94066",
"line1": "901 Cherry Ave"
},
{
"geographicArea": "Community of Madrid",
"country": "ES",
"city": "Madrid",
"postalCode": "28046",
"line1": "Plaza Pablo Ruiz Picasso"
},
{
"geographicArea": "DC",
"country": "US",
"city": "Washington",
"postalCode": "20001",
"line1": "25 Massachusetts Ave NW"
},
{
"geographicArea": "HR",
"country": "IN",
"city": "Gurugram",
"postalCode": "122001",
"line1": "15"
},
{
"geographicArea": "Bogota, D.C.",
"country": "CO",
"city": "Bogota",
"postalCode": "110221",
"line1": "Carrera 11A 94-45"
},
{
"geographicArea": "Hong Kong",
"country": "HK",
"city": "Wan Chai",
"line1": "2 Matheson St"
},
{
"geographicArea": "VA",
"country": "US",
"city": "Reston",
"postalCode": "20190",
"line1": "1875 Explorer St"
},
{
"geographicArea": "ON",
"country": "CA",
"city": "Toronto",
"postalCode": "M5H 2G4",
"line1": "111 Richmond St W"
},
{
"geographicArea": "CA",
"country": "US",
"city": "San Francisco",
"postalCode": "94105",
"line1": "345 Spear St"
},
{
"geographicArea": "MA",
"country": "US",
"city": "Cambridge",
"postalCode": "02142",
"line1": "355 Main St"
},
{
"geographicArea": "Lomb.",
"country": "IT",
"city": "Milan",
"postalCode": "20124",
"line1": "Via Federico Confalonieri, 4"
},
{
"geographicArea": "England",
"country": "GB",
"city": "London",
"postalCode": "WC2H 8AG",
"line1": "St Giles High Street"
},
{
"geographicArea": "TX",
"country": "US",
"city": "Austin",
"postalCode": "78759",
"line1": "9606 N Mopac Expy"
},
{
"geographicArea": "CA",
"country": "US",
"city": "Los Angeles",
"postalCode": "90291",
"line1": "340 Main St"
},
{
"geographicArea": "Community of Madrid",
"country": "ES",
"city": "Madrid",
"postalCode": "28020",
"line1": "Plaza Pablo Ruiz Picasso"
},
{
"geographicArea": "MI",
"country": "US",
"city": "Ann Arbor",
"postalCode": "48105",
"line1": "2300 Traverwood Dr"
},
{
"geographicArea": "Santiago Metropolitan",
"country": "CL",
"city": "Las Condes",
"postalCode": "7550000",
"line1": "Avenida Costanera Sur"
},
{
"geographicArea": "GA",
"country": "US",
"city": "Atlanta",
"postalCode": "30309",
"line1": "10 10th St NE"
},
{
"geographicArea": "MA",
"country": "PL",
"city": "Warsaw",
"postalCode": "00-125",
"line1": "ulica Emilii Plater 53"
},
{
"geographicArea": "Karnataka",
"country": "IN",
"city": "Bengaluru",
"postalCode": "560016",
"line1": "3 Swamy Vivekananda Road"
},
{
"geographicArea": "WA",
"country": "US",
"city": "Kirkland",
"postalCode": "98033",
"line1": "777 6th St S"
},
{
"geographicArea": "BY",
"country": "DE",
"city": "Munich",
"postalCode": "80636",
"line1": "Erika-Mann-Strasse 33"
},
{
"geographicArea": "CDMX",
"country": "MX",
"city": "Miguel Hidalgo",
"postalCode": "11000",
"line1": "Montes Urales"
},
{
"geographicArea": "Buenos Aires Autonomous City",
"country": "AR",
"city": "Buenos Aires City",
"postalCode": "1107",
"line1": "Avenida Alicia Moreau de Justo 350"
},
{
"geographicArea": "IdF",
"country": "FR",
"city": "Paris",
"postalCode": "75009",
"line1": "8 Rue de Londres"
},
{
"geographicArea": "Tel Aviv",
"country": "IL",
"city": "Tel Aviv-Yafo",
"postalCode": "67891",
"line1": "Yigal Allon 98"
},
{
"geographicArea": "BE",
"country": "DE",
"city": "Berlin",
"postalCode": "10117",
"line1": "Unter den Linden 14"
},
{
"geographicArea": "HH",
"country": "DE",
"city": "Hamburg",
"postalCode": "20354",
"line1": "ABC-Strasse 19"
},
{
"geographicArea": "TX",
"country": "US",
"city": "Frisco",
"postalCode": "75034",
"line1": "6175 Main St"
},
{
"geographicArea": "ZH",
"country": "CH",
"city": "Zurich",
"postalCode": "8002",
"line1": "Brandschenkestrasse 110"
},
{
"geographicArea": "Stockholm County",
"country": "SE",
"city": "Stockholm",
"postalCode": "111 22",
"line1": "Kungsbron 2"
}
],
"industries": [
"Software Development"
],
"specialities": [
"search",
"ads",
"mobile",
"android",
"online video",
"apps",
"machine learning",
"virtual reality",
"cloud",
"hardware",
"artificial intelligence",
"youtube",
"software"
],
"website": "https://goo.gle/3DLEokh",
"founded": null,
"callToAction": {
"callToActionType": "VIEW_WEBSITE",
"visible": true,
"callToActionMessage": {
"textDirection": "USER_LOCALE",
"text": "Visit website"
},
"url": "https://goo.gle/3DLEokh"
},
"followerCount": 35351901,
"staffCountRange": "10001+",
"crunchbaseUrl": "https://www.crunchbase.com/organization/google",
"fundingData": {
"updatedAt": "1726585918",
"updatedDate": "2024-09-17 15:11:58 +0000 UTC",
"numFundingRounds": 3,
"lastFundingRound": {
"investorsCrunchbaseUrl": "https://www.crunchbase.com/funding_round/google-convertible-note--6c4715f9",
"leadInvestors": [
{
"name": "Sequoia Capital",
"investorCrunchbaseUrl": "https://www.crunchbase.com/organization/sequoia-capital"
},
{
"name": "Kleiner Perkins",
"investorCrunchbaseUrl": "https://www.crunchbase.com/organization/kleiner-perkins-caufield-byers"
}
],
"fundingRoundCrunchbaseUrl": "https://www.crunchbase.com/funding_round/google-convertible-note--6c4715f9?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_companies&utm_content=last_funding",
"fundingType": "CONVERTIBLE_NOTE",
"moneyRaised": {
"currencyCode": "USD",
"amount": "25000000"
},
"numOtherInvestors": 7,
"announcedOn": {
"month": 6,
"day": 7,
"year": 1999
}
}
}
}
}
}
}
}
]
}Pricing
$0.01per successful request
Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.
Related endpoints
Start using this endpoint
Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.
LinkedIn company ID lookupcompany details by IDLinkedIn company profile APIcompany data enrichmentLinkedIn APILinkedIn data APILinkedIn scraper API