Skip to main content
POST
/
company
/
lookup
Look up company
curl --request POST \
  --url https://app.fullenrich.com/api/v2/company/lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "anthropic.com",
  "professional_network_url": "https://www.linkedin.com/company/anthropic",
  "professional_network_id": 1883877
}
'
{
  "companies": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "Anthropic",
      "domain": "anthropic.com",
      "description": "AI safety and research company building reliable, interpretable, and steerable AI systems.",
      "year_founded": 2021,
      "headcount": 2610,
      "headcount_range": "1001-5000",
      "company_type": "Privately Held",
      "locations": {
        "headquarters": {
          "line1": "548 Market St",
          "line2": "San Francisco, CA 94105, US",
          "city": "San Francisco",
          "region": "California",
          "country": "United States",
          "country_code": "US"
        },
        "offices": [
          {
            "line1": "111 8th Ave",
            "line2": "New York, NY 10011, US"
          }
        ]
      },
      "social_profiles": {
        "professional_network": {
          "id": 1234,
          "url": "https://www.linkedin.com/company/anthropic",
          "handle": "anthropic",
          "connection_count": 125000
        }
      },
      "specialties": [
        "artificial intelligence",
        "machine learning",
        "AI safety"
      ],
      "industry": {
        "main_industry": "Software Development"
      },
      "revenue_range": "$10M-$50M"
    }
  ],
  "metadata": {
    "credits": 0.25
  }
}
The Company Look Up endpoint returns a single company when you already know which one you are looking for. Provide an identifier and the API matches the best corresponding company. You can look up a company by its domain or its professional network URL or ID for an exact match. The response has the same shape as Search Company, but always contains at most one company. Search API pricing

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Provide at least one identifier to match a single company. The domain or professional network URL/ID give the most reliable match.

domain
string

Company domain to look up.

Example:

"anthropic.com"

professional_network_url
string

Professional network URL of the company.

Example:

"https://www.linkedin.com/company/anthropic"

professional_network_id
integer

Professional network ID of the company.

Example:

1883877

Response

OK

companies
object[]

Array containing the matching company. Returns an empty array if no match is found.

metadata
object