GET
/
contact
/
enrich
/
bulk
/
{enrichment_id}
curl --request GET \
  --url https://app.fullenrich.com/api/v1/contact/enrich/bulk/{enrichment_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "2db5ea61-1752-42cf-8ea1-ab1da060cd0a",
  "name": "Sales Operations in London",
  "status": "FINISHED",
  "datas": [
    {
      "custom": {
        "user_id": "12584"
      },
      "contact": {
        "firstname": "john",
        "lastname": "snow",
        "domain": "example.com",
        "most_probable_email": "john.snow@example.com",
        "most_probable_email_status": "HIGH_PROBABILITY",
        "most_probable_phone": "+33 6 76 78 90 65",
        "emails": [
          {
            "email": "john.snow@example.com",
            "status": "DELIVERABLE"
          }
        ],
        "phones": [
          {
            "number": "+33 6 76 78 90 65",
            "region": "FR"
          }
        ],
        "social_medias": [
          {
            "url": "https://www.linkedin.com/in/john-snow",
            "type": "LINKEDIN"
          }
        ],
        "profile": {
          "linkedin_id": 1234567890,
          "linkedin_url": "https://www.linkedin.com/in/john-snow",
          "linkedin_handle": "john-snow",
          "sales_navigator_id": "ACoAAAAmaeEB8HhLAj6PTIYE1fU0DQc4CAkf8..",
          "firstname": "john",
          "lastname": "snow",
          "premium_account": true,
          "location": "Paris",
          "summary": "Business oriented leader with broad experience within industry",
          "headline": "CTO & cofounder",
          "position": {
            "title": "Chief Technical Officer",
            "description": "...",
            "start_at": {
              "month": 6,
              "year": 2024
            },
            "end_at": {
              "month": 6,
              "year": 2024
            },
            "company": {
              "linkedin_id": 9876543210,
              "linkedin_url": "https://www.linkedin.com/company/fullenrich",
              "linkedin_handle": "fullenrich",
              "name": "Fullenrich",
              "description": "...",
              "website": "https://www.fullenrich.com",
              "domain": "fullenrich.com",
              "industry": "...",
              "type": "...",
              "year_founded": 1979,
              "headcount": 27367,
              "headcount_range": "10K+",
              "headquarters": {
                "region": "IDF",
                "city": "Paris",
                "country": "France",
                "country_code": "FR",
                "postal_code": "75001",
                "address_line_1": "Avenue des champs elysées",
                "address_line_2": ""
              }
            }
          }
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

enrichment_id
string
required

Query Parameters

forceResults
boolean

Default = False. This parameter forces the API to return what has been found so far, even if the enrichment is not finished. This may result in missing information and is not recommended for regular use.

Response

200
application/json
OK
id
string
name
string
status
enum<string>
Available options:
CREATED,
IN_PROGRESS,
CANCELED,
CREDITS_INSUFFICIENT,
FINISHED,
RATE_LIMIT,
UNKNOWN
datas
object[]