(Deprecated) Enrich Companies (get)

Quota limitation

Results received from this endpoint count towards the company enrichment and search quota.

Provide an enrichment ID and the endpoint will return the corresponding company enrichment results.

The enrichment might take a few seconds to complete, we recommend polling this endpoint around once every second until a status other than IN_PROGRESS is received.

Webhook notifications are on our roadmap. For updates on the current status, feel free to reach out to us at api.support@surfe.com.

Looking for V1? It’s deprecated, but still available here

GET
/v1/organizations/enrichments/bulk/{id}

Authorization

AuthorizationRequiredBearer <token>

In: header

Path Parameters

idRequiredstring

Enrichment ID from where to retrieve the results

curl -X GET "https://api.surfe.com/v1/organizations/enrichments/bulk/<string>" \
  -H "Authorization: Bearer <token>"

List of enriched companies

{
  "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"
    }
  ]
}