/get-company-detailsGet Company Details
Company
Cost / request
$0.01
Response format
JSON
Protocol
REST
About this endpoint
Fetch detailed company data using the LinkedIn company username/vanity URL. This is the most versatile company enrichment endpoint — pass the company's LinkedIn username (e.g., 'microsoft', 'google') and receive comprehensive firmographic data including industry, size, location, specialties, recent updates, and affiliated pages. Perfect for AI agents that parse LinkedIn URLs from web pages or user input.
Use cases
Extract company data from LinkedIn URLs shared in emails or messages
Build company databases from curated LinkedIn company lists
Power chatbots that answer questions about specific companies
Feed competitive analysis dashboards with real-time company data
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| username | query | string | required | —Default: google |
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": {
"countryCode": {
"type": "string"
},
"geographicArea": {
"type": "string"
},
"country": {
"type": "string"
},
"city": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"headquarter": {
"type": "boolean"
},
"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": {
"type": {
"type": "string"
},
"displayText": {
"type": "string"
},
"visible": {
"type": "boolean"
},
"callToActionMessage": {
"type": "object"
},
"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"
}
}
}
}
}
}
},
"featuredCustomers": {
"type": "null"
},
"pageVerification": {
"type": "object",
"properties": {
"verified": {
"type": "boolean"
},
"lastModifiedAt": {
"type": "integer"
}
}
}
}
}
}
}Agent / Developer Schema
Machine-readable formats for integrating this endpoint into AI agents and toolchains.
{
"operationId": "Get_Company_Details",
"method": "get",
"path": "/get-company-details",
"summary": "Get Company Details",
"description": "The endpoint enrich full details of the company",
"parameters": [
{
"name": "username",
"in": "query",
"required": true,
"schema": {
"type": "string",
"default": "google"
}
}
],
"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": {
"countryCode": {
"type": "string"
},
"geographicArea": {
"type": "string"
},
"country": {
"type": "string"
},
"city": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"headquarter": {
"type": "boolean"
},
"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": {
"type": {
"type": "string"
},
"displayText": {
"type": "string"
},
"visible": {
"type": "boolean"
},
"callToActionMessage": {
"type": "object"
},
"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"
}
}
}
}
}
}
},
"featuredCustomers": {
"type": "null"
},
"pageVerification": {
"type": "object",
"properties": {
"verified": {
"type": "boolean"
},
"lastModifiedAt": {
"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": "",
"phone": "",
"Images": {
"logo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1753315200&v=beta&t=nJ3kJqXCopAwdGbBOLCdQ1K1hTpj0bTKcIQOeG47AjQ",
"cover": "https://media.licdn.com/dms/image/v2/D4E1BAQHa1I1wf2xCPg/company-background_400/B4EZbznHBCHYAY-/0/1747843839270/google_cover?e=1748592000&v=beta&t=CgUOeRkJypT1_L-QlhSsIJ0XQPP6TL6RHw-qlDIHysE"
},
"isClaimable": false,
"backgroundCoverImages": [
{
"url": "https://media.licdn.com/dms/image/v2/D4E1BAQHa1I1wf2xCPg/company-background_400/B4EZbznHBCHYAY-/0/1747843839270/google_cover?e=1748592000&v=beta&t=CgUOeRkJypT1_L-QlhSsIJ0XQPP6TL6RHw-qlDIHysE",
"width": 400,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/D4E1BAQHa1I1wf2xCPg/company-background_10000/B4EZbznHBCHYAU-/0/1747843839270/google_cover?e=1748592000&v=beta&t=T6FPgYfe3eU2Piv_bdQEBfdHVRy0EBw9FhCRr8vBwY0",
"width": 1584,
"height": 396
},
{
"url": "https://media.licdn.com/dms/image/v2/D4E1BAQHa1I1wf2xCPg/company-background_200/B4EZbznHBCHYAc-/0/1747843839270/google_cover?e=1748592000&v=beta&t=Ot-u8Jh29htluFB0lrb0aWkGN5xc1pQpHpkPA-Bnjsg",
"width": 200,
"height": 50
}
],
"logos": [
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_200_200/company-logo_200_200/0/1631311446380?e=1753315200&v=beta&t=DR92V0YjU9UjCbplZcGbnj0-ecb1rua7I12AaQo8EZo",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_100_100/company-logo_100_100/0/1631311446380?e=1753315200&v=beta&t=mpaATyXcfC9c5GoT8j7QTT--ugssLIsvn8aWG8Rfdmk",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1753315200&v=beta&t=nJ3kJqXCopAwdGbBOLCdQ1K1hTpj0bTKcIQOeG47AjQ",
"width": 400,
"height": 400
}
],
"staffCount": 306344,
"headquarter": {
"countryCode": "US",
"geographicArea": "CA",
"country": "US",
"city": "Mountain View",
"postalCode": "94043",
"headquarter": true,
"line1": "1600 Amphitheatre Parkway"
},
"locations": [
{
"countryCode": "GB",
"geographicArea": "England",
"country": "GB",
"city": "London",
"postalCode": "WC2H 8AG",
"headquarter": false,
"line1": "St Giles High Street"
},
{
"countryCode": "IE",
"geographicArea": "County Dublin",
"country": "IE",
"city": "Dublin",
"headquarter": false,
"line1": "Barrow Street"
},
{
"countryCode": "CO",
"geographicArea": "Bogota, D.C.",
"country": "CO",
"city": "Bogota",
"postalCode": "110221",
"headquarter": false,
"line1": "Carrera 11A 94-45"
},
{
"countryCode": "SG",
"geographicArea": "Singapore",
"country": "SG",
"city": "Singapore",
"postalCode": "118484",
"headquarter": false,
"line1": "3 Pasir Panjang Rd"
},
{
"countryCode": "MX",
"geographicArea": "CDMX",
"country": "MX",
"city": "Miguel Hidalgo",
"postalCode": "11000",
"headquarter": false,
"line1": "Montes Urales"
},
{
"countryCode": "IL",
"geographicArea": "Tel Aviv",
"country": "IL",
"city": "Tel Aviv-Yafo",
"postalCode": "67891",
"headquarter": false,
"line1": "Yigal Allon 98"
},
{
"countryCode": "CA",
"geographicArea": "ON",
"country": "CA",
"city": "Toronto",
"postalCode": "M5H 2G4",
"headquarter": false,
"line1": "111 Richmond St W"
},
{
"countryCode": "CA",
"geographicArea": "ON",
"country": "CA",
"city": "Kitchener",
"postalCode": "N2H 5G5",
"headquarter": false,
"line1": "51 Breithaupt St"
},
{
"countryCode": "CL",
"geographicArea": "Santiago Metropolitan",
"country": "CL",
"city": "Las Condes",
"postalCode": "7550000",
"headquarter": false,
"line1": "Avenida Costanera Sur"
},
{
"countryCode": "IT",
"geographicArea": "Lomb.",
"country": "IT",
"city": "Milan",
"postalCode": "20124",
"headquarter": false,
"line1": "Via Federico Confalonieri, 4"
},
{
"countryCode": "PH",
"geographicArea": "National Capital Region",
"country": "PH",
"city": "Taguig City",
"headquarter": false,
"line1": "5th Ave"
},
{
"countryCode": "AU",
"geographicArea": "NSW",
"country": "AU",
"city": "Sydney",
"postalCode": "2009",
"headquarter": false,
"line1": "48 Pirrama Rd"
},
{
"countryCode": "AU",
"geographicArea": "VIC",
"country": "AU",
"city": "Melbourne",
"postalCode": "3000",
"headquarter": false,
"line1": "90 Collins St"
},
{
"countryCode": "CH",
"geographicArea": "ZH",
"country": "CH",
"city": "Zurich",
"postalCode": "8002",
"headquarter": false,
"line1": "Brandschenkestrasse 110"
},
{
"countryCode": "FR",
"geographicArea": "IdF",
"country": "FR",
"city": "Paris",
"postalCode": "75009",
"headquarter": false,
"line1": "8 Rue de Londres"
},
{
"countryCode": "AR",
"geographicArea": "Buenos Aires Autonomous City",
"country": "AR",
"city": "Buenos Aires City",
"postalCode": "1107",
"headquarter": false,
"line1": "Avenida Alicia Moreau de Justo 350"
},
{
"countryCode": "DE",
"geographicArea": "HH",
"country": "DE",
"city": "Hamburg",
"postalCode": "20354",
"headquarter": false,
"line1": "ABC-Strasse 19"
},
{
"countryCode": "DE",
"geographicArea": "BE",
"country": "DE",
"city": "Berlin",
"postalCode": "10117",
"headquarter": false,
"line1": "Unter den Linden 14"
},
{
"countryCode": "DE",
"geographicArea": "BY",
"country": "DE",
"city": "Munich",
"postalCode": "80636",
"headquarter": false,
"line1": "Erika-Mann-Strasse 33"
},
{
"countryCode": "PL",
"geographicArea": "MA",
"country": "PL",
"city": "Warsaw",
"postalCode": "00-125",
"headquarter": false,
"line1": "ulica Emilii Plater 53"
},
{
"countryCode": "NL",
"geographicArea": "North Holland",
"country": "NL",
"city": "Amsterdam",
"postalCode": "1082 MD",
"headquarter": false,
"line1": "Claude Debussylaan 34"
},
{
"countryCode": "ES",
"geographicArea": "Community of Madrid",
"country": "ES",
"city": "Madrid",
"postalCode": "28046",
"headquarter": false,
"line1": "Plaza Pablo Ruiz Picasso"
},
{
"countryCode": "US",
"geographicArea": "GA",
"country": "US",
"city": "Atlanta",
"postalCode": "30309",
"headquarter": false,
"line1": "10 10th St NE"
},
{
"countryCode": "US",
"geographicArea": "MA",
"country": "US",
"city": "Cambridge",
"postalCode": "02142",
"headquarter": false,
"line1": "355 Main St"
},
{
"countryCode": "US",
"geographicArea": "CA",
"country": "US",
"city": "Mountain View",
"postalCode": "94043",
"headquarter": true,
"line1": "1600 Amphitheatre Parkway"
},
{
"countryCode": "US",
"geographicArea": "TX",
"country": "US",
"city": "Austin",
"postalCode": "78759",
"headquarter": false,
"line1": "9606 N Mopac Expy"
},
{
"countryCode": "US",
"geographicArea": "CA",
"country": "US",
"city": "Irvine",
"postalCode": "92612",
"headquarter": false,
"line1": "19510 Jamboree Rd"
},
{
"countryCode": "US",
"geographicArea": "IL",
"country": "US",
"city": "Chicago",
"postalCode": "60607",
"headquarter": false,
"line1": "320 N Morgan St"
},
{
"countryCode": "US",
"geographicArea": "CO",
"country": "US",
"city": "Boulder",
"postalCode": "80302",
"headquarter": false,
"line1": "2590 Pearl St"
},
{
"countryCode": "US",
"geographicArea": "TX",
"country": "US",
"city": "Frisco",
"postalCode": "75034",
"headquarter": false,
"line1": "6175 Main St"
},
{
"countryCode": "US",
"geographicArea": "MI",
"country": "US",
"city": "Ann Arbor",
"postalCode": "48105",
"headquarter": false,
"line1": "2300 Traverwood Dr"
},
{
"countryCode": "US",
"geographicArea": "DC",
"country": "US",
"city": "Washington",
"postalCode": "20001",
"headquarter": false,
"line1": "25 Massachusetts Ave NW"
},
{
"countryCode": "US",
"geographicArea": "WA",
"country": "US",
"city": "Kirkland",
"postalCode": "98033",
"headquarter": false,
"line1": "777 6th St S"
},
{
"countryCode": "US",
"geographicArea": "NY",
"country": "US",
"city": "New York",
"postalCode": "10011",
"headquarter": false,
"line1": "111 8th Ave"
},
{
"countryCode": "SE",
"geographicArea": "Stockholm County",
"country": "SE",
"city": "Stockholm",
"postalCode": "111 22",
"headquarter": false,
"line1": "Kungsbron 2"
},
{
"countryCode": "BR",
"geographicArea": "SP",
"country": "BR",
"city": "Sao Paulo",
"postalCode": "04538-133",
"headquarter": false,
"line1": "Avenida Brigadeiro Faria Lima, 3477"
},
{
"countryCode": "HK",
"geographicArea": "Hong Kong",
"country": "HK",
"city": "Wan Chai",
"headquarter": false,
"line1": "2 Matheson St"
},
{
"countryCode": "IN",
"geographicArea": "TS",
"country": "IN",
"city": "Hyderabad",
"postalCode": "500084",
"headquarter": false,
"line1": "13"
},
{
"countryCode": "IN",
"geographicArea": "Maharashtra",
"country": "IN",
"city": "Mumbai",
"postalCode": "400051",
"headquarter": false,
"line1": "3 Bandra Kurla Complex Road"
},
{
"countryCode": "IN",
"geographicArea": "Karnataka",
"country": "IN",
"city": "Bengaluru",
"postalCode": "560016",
"headquarter": false,
"line1": "Old Madras Road"
},
{
"countryCode": "IN",
"geographicArea": "HR",
"country": "IN",
"city": "Gurugram",
"postalCode": "122001",
"headquarter": false,
"line1": "15"
}
],
"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": {
"type": "VIEW_WEBSITE",
"displayText": "Visit website",
"visible": true,
"callToActionMessage": {},
"url": "https://goo.gle/3DLEokh"
},
"followerCount": 37405586,
"staffCountRange": "10001+",
"crunchbaseUrl": "https://www.crunchbase.com/organization/google",
"fundingData": {
"updatedAt": "1741666333",
"updatedDate": "2025-03-11 04:12:13 +0000 UTC",
"numFundingRounds": 3,
"lastFundingRound": {
"investorsCrunchbaseUrl": "https://www.crunchbase.com/funding_round/google-series-unknown--6c4715f9",
"leadInvestors": [
{
"name": "Kleiner Perkins",
"investorCrunchbaseUrl": "https://www.crunchbase.com/organization/kleiner-perkins-caufield-byers"
},
{
"name": "Sequoia Capital",
"investorCrunchbaseUrl": "https://www.crunchbase.com/organization/sequoia-capital"
}
],
"fundingRoundCrunchbaseUrl": "https://www.crunchbase.com/funding_round/google-series-unknown--6c4715f9?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_companies&utm_content=last_funding",
"fundingType": "Series unknown",
"moneyRaised": {
"currencyCode": "USD",
"amount": "25000000"
},
"numOtherInvestors": 0,
"announcedOn": {
"month": 6,
"day": 7,
"year": 1999
}
}
},
"featuredCustomers": null,
"pageVerification": {
"verified": true,
"lastModifiedAt": 1692139093065
}
}
}
}
}
}
]
}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 username lookupcompany profile by URLLinkedIn company enrichmentcompany vanity URL APILinkedIn APILinkedIn data APILinkedIn scraper API