Search Company lookalikes

Quota limitation

Results received from this endpoint count towards the company look-alikes quota

Search for similar companies to the ones you provide.
Additionally, filters can be provided to refine the results. Note that some filters only accept pre-defined values, as provided by the filters endpoint.

POST
/v1/organizations/lookalikes

Authorization

AuthorizationRequiredBearer <token>

In: header

Request Body

application/jsonRequired

List of companies from which to find other similar ones

domainsarray<string>

List of domains of the organizations we want to find look-alikes from

filtersobject

Attributes to filter the results

maxResultsinteger

The maximum amount of results

Minimum: 1Maximum: 10
namesarray<string>

List of names of the organizations we want to find look-alikes from

curl -X POST "https://api.surfe.com/v1/organizations/lookalikes" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "domains": [
      "surfe.com",
      "apple.com",
      "microsoft.com"
    ],
    "filters": {
      "employeeCounts": [
        "51-200",
        "201-500"
      ],
      "industries": [
        "Aerospace",
        "Software"
      ],
      "keywords": [
        "Recruitment",
        "Education"
      ],
      "locations": [
        "fr",
        "es"
      ],
      "primaryLocations": [
        "fr",
        "es"
      ],
      "revenues": [
        "0-1M",
        "1-10M"
      ],
      "technologies": [
        "Mixpanel",
        "Salesforce"
      ]
    },
    "maxResults": 5,
    "names": [
      "Surfe",
      "Apple",
      "Microsoft"
    ]
  }'

List of similar companies to the provided ones

{
  "organizations": [
    {
      "addresses": [
        {
          "isPrimary": true,
          "raw": "526 Coyote Road, CA, USA"
        }
      ],
      "annualRevenueRange": "10-50M",
      "description": "The Acme Corporation is a fictional corporation that features prominently in the Road Runner/Wile E. Coyote animated shorts as a running gag. The company manufactures outlandish products that fail or backfire catastrophically at the worst possible times.",
      "digitalPresence": [
        {
          "name": "X (Previously Twitter)",
          "url": "https://x.com/acmeorg"
        }
      ],
      "externalID": "external-id",
      "followersCountLinkedin": 1000000,
      "founded": "1920",
      "fundingRounds": [
        {
          "amount": 2,
          "amountCurrency": "USD",
          "announcedDate": "1920-01-01",
          "leadInvestors": [
            "Coyote",
            "Road Runner"
          ],
          "name": "Seed round"
        }
      ],
      "industries": [
        {
          "SubIndustry": "Commodity Chemicals",
          "group": "Materials",
          "industry": "Chemicals",
          "sector": "Materials"
        }
      ],
      "ipo": {
        "date": "1920-01-01",
        "sharePrice": 1,
        "sharePriceCurrency": "USD"
      },
      "isPublic": true,
      "keywords": [
        "American",
        "Corporations",
        "Manufacture",
        "Everything"
      ],
      "linkedinUrl": "https://www.linkedin.com/company/acmeorg/",
      "logoUrl": "www.acme.org/logo.jpeg",
      "name": "Acme Corporation",
      "parentOrganization": {
        "name": "Cyberdyne Systems",
        "website": "skynet.org"
      },
      "phones": [
        "555-555-555",
        "555-555-5554"
      ],
      "size": 100,
      "stocks": [
        {
          "exchange": "NASDAQ",
          "ticker": "ACME"
        }
      ],
      "website": "www.acme.org"
    }
  ]
}