Skip to main content
POST
/
v2
/
profiles
Get Company Info
curl --request POST \
  --url https://api.example.com/v2/profiles \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "account_id": "<string>",
  "action": "<string>",
  "params": {
    "company_url": "<string>"
  }
}
'
{
  "success": true,
  "data": {
    "name": "Anthropic",
    "universalName": "anthropicresearch",
    "description": "We're an AI research company that builds reliable, interpretable, and steerable AI systems...",
    "tagline": "Anthropic is an AI safety and research company...",
    "websiteUrl": "https://www.anthropic.com/",
    "industry": "Research Services",
    "employeeCount": 4670,
    "employeeCountRange": { "start": 501, "end": 1000 },
    "headquarter": null,
    "logoUrl": "https://media.licdn.com/dms/image/v2/...",
    "coverImageUrl": "https://media.licdn.com/dms/image/v2/...",
    "callToAction": {
      "displayText": "Visit website",
      "visible": true,
      "type": "VIEW_WEBSITE",
      "url": "https://www.anthropic.com/"
    },
    "locations": [],
    "organizationType": "Privately Held",
    "defaultLocale": "en",
    "followersCount": 3054760,
    "pageMailbox": false,
    "verified": true,
    "socialProofText": "Tridia & 162 other connections follow this page"
  },
  "metadata": {
    "action": "get_company",
    "account_id": "your-account-id",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}

Overview

Fetches detailed information about a company page (description, industry, employee count, follower count, logo, cover image, etc.).
This endpoint consumes 1 credit per request.

Request

x-api-key
string
required
Your API key for authentication.
account_id
string
required
The unique identifier of the account to use.
action
string
required
Must be "get_company".
params
object

Response

success
boolean
Indicates whether the request was successful.
data
object
metadata
object
{
  "success": true,
  "data": {
    "name": "Anthropic",
    "universalName": "anthropicresearch",
    "description": "We're an AI research company that builds reliable, interpretable, and steerable AI systems...",
    "tagline": "Anthropic is an AI safety and research company...",
    "websiteUrl": "https://www.anthropic.com/",
    "industry": "Research Services",
    "employeeCount": 4670,
    "employeeCountRange": { "start": 501, "end": 1000 },
    "headquarter": null,
    "logoUrl": "https://media.licdn.com/dms/image/v2/...",
    "coverImageUrl": "https://media.licdn.com/dms/image/v2/...",
    "callToAction": {
      "displayText": "Visit website",
      "visible": true,
      "type": "VIEW_WEBSITE",
      "url": "https://www.anthropic.com/"
    },
    "locations": [],
    "organizationType": "Privately Held",
    "defaultLocale": "en",
    "followersCount": 3054760,
    "pageMailbox": false,
    "verified": true,
    "socialProofText": "Tridia & 162 other connections follow this page"
  },
  "metadata": {
    "action": "get_company",
    "account_id": "your-account-id",
    "credits_consumed": 1,
    "timestamp": "2026-04-26T10:35:00Z"
  }
}