superagnt_
Company

Get Company Details

GET/get-company-details
priced per calljson responserest · mcp
01// 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.

02// code samples

Call it over REST

Authenticate with a bearer token against https://api.agntdata.dev. Swap the placeholders for your key and parameter values.

curlbash
curl -s "https://api.agntdata.dev/get-company-details?username=<username>" \
  -H "Authorization: Bearer <YOUR_AGNTDATA_API_KEY>"
03// give it to your agent

Copy-paste prompt

Paste this into a coding agent. It connects the superagnt MCP server, finds the tool data_linkedin_get_company_details, and runs a first call — with the REST fallback if MCP is unavailable.

agent prompttext
You are wiring up the agntdata "LinkedIn" API to use this endpoint: Get Company Details.

1. CONNECT over MCP (preferred). Add the superagnt MCP server, then let the client
   run OAuth on first tool call — no token to paste:
     claude mcp add --scope user --transport http superagnt https://mcp.superagnt.com/mcp
     claude mcp login superagnt
   MCP endpoint: https://mcp.superagnt.com/mcp
   After connecting, the tool you want is named exactly:
     data_linkedin_get_company_details
   Call agnt_tools_search or agnt_tools_list_enabled to confirm it is available.

2. REST fallback (if you are not using MCP):
     GET https://api.agntdata.dev/get-company-details
     Header: Authorization: Bearer <YOUR_AGNTDATA_API_KEY>
   Required parameters:
    - username (string, required)
   Optional parameters:
    - (none)

3. COST & KEY. This endpoint is priced per call in credits, and each successful response reports its own cost in its meta.costCents field. Only successful calls are charged.
   Get an agntdata API key at https://app.agntdata.dev.

4. TEST. Connect the server (or set the key), discover the tool
   (data_linkedin_get_company_details), run one minimal call with just the required parameters,
   and report back the shape of the JSON response (top-level fields).

Reference (machine-readable variant): https://superagnt.com/docs/apis/social/linkedin/endpoints/Get_Company_Details.md
mcp tool definitionjson
{
  "name": "get_company_details",
  "description": "The endpoint enrich full details of the company",
  "parameters": {
    "type": "object",
    "properties": {
      "username": {
        "type": "string",
        "description": "query parameter",
        "default": "google"
      }
    },
    "required": [
      "username"
    ]
  }
}
04// parameters
NameInTypeRequiredDescription
usernamequerystringrequired
05// responses

200

200json
{
  "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"
            }
          }
        }
      }
    }
  }
}
06// pricing
priced per call

This endpoint is priced per call and deducted from your agntdata balance; only a successful call is billed. Every billable response reports its own cost in meta.costCents.

Get a key at app.agntdata.dev.

07// related endpoints
08// more from LinkedIn

start calling

Point your client at https://mcp.superagnt.com/mcp and your agent has this endpoint, plus every other source on one balance.

Start free
LinkedIn company username lookupcompany profile by URLLinkedIn company enrichmentcompany vanity URL APILinkedIn APILinkedIn data APILinkedIn scraper API