v1

latestOpenAPI 3.1.02026-07-26103879.6 KB

Look up company

Look up a single company using its identifiers (domain, or professional network URL/ID). Returns the best matching company.

post/company/lookup

Request body

domainstring

Company domain to look up.

professional_network_urlstring

Professional network URL of the company.

professional_network_idinteger

Professional network ID of the company.

Example request

{
  "domain": "anthropic.com",
  "professional_network_url": "https://www.linkedin.com/company/anthropic",
  "professional_network_id": 1883877
}

Response

OK

Example response

{
  "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"
      }
    }
  ],
  "metadata": {
    "credits": 0.25
  }
}