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 Search V1? It’s deprecated, but still available here

GET
/v2/companies/enrich/{id}

Authorization

AuthorizationRequiredBearer <token>

In: header

Path Parameters

idRequiredstring

Identifier of the enrichment operation from which the results can be retrieved.

curl -X GET "https://api.surfe.com/v2/companies/enrich/<string>" \
  -H "Authorization: Bearer <token>"

List of enriched companies

{
  "description": "string",
  "digitalPresence": [
    {
      "name": "string",
      "url": "string"
    }
  ],
  "employeeCount": 0,
  "externalID": "external-id",
  "followersCountLinkedi": 0,
  "founded": "string",
  "fundingRounds": [
    {
      "amount": 0,
      "amountCurrency": "string",
      "announcedDate": "string",
      "leadInvestors": [
        "string"
      ],
      "name": "string"
    }
  ],
  "hqAddress": "string",
  "hqCountry": "fr",
  "industry": "string",
  "ipo": {
    "date": "string",
    "sharePrice": 0,
    "sharePriceCurrency": "string"
  },
  "isPublic": true,
  "keywords": [
    "string"
  ],
  "linkedInURL": "string",
  "name": "string",
  "parentOrganization": {
    "name": "string",
    "website": "string"
  },
  "phones": [
    "string"
  ],
  "revenue": "string",
  "status": "COMPLETED",
  "stocks": [
    {
      "exchange": "string",
      "ticker": "string"
    }
  ],
  "subIndustry": "string",
  "websites": [
    "string"
  ]
}