Skip to main content
GET
/
contact
/
enrich
/
bulk
/
{enrichment_id}
Get Bulk Enrich Results
curl --request GET \
  --url https://app.fullenrich.com/api/v2/contact/enrich/bulk/{enrichment_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "2db5ea61-1752-42cf-8ea1-ab1da060cd0a",
  "name": "Sales Operations in London",
  "status": "FINISHED",
  "cost": {
    "credits": 14
  },
  "data": [
    {
      "input": {
        "first_name": "John",
        "last_name": "Snow",
        "company_domain": "example.com",
        "company_name": "Example Inc",
        "linkedin_url": "https://www.linkedin.com/in/demoge/"
      },
      "custom": {
        "user_id": "12584"
      },
      "contact_info": {
        "most_probable_work_email": {
          "email": "[email protected]",
          "status": "DELIVERABLE"
        },
        "most_probable_personal_email": {
          "email": "[email protected]",
          "status": "DELIVERABLE"
        },
        "most_probable_phone": {
          "number": "+1 555-123-4567",
          "region": "US"
        },
        "work_emails": [
          {
            "email": "[email protected]",
            "status": "DELIVERABLE"
          }
        ],
        "personal_emails": [
          {
            "email": "[email protected]",
            "status": "DELIVERABLE"
          }
        ],
        "phones": [
          {
            "number": "+1 555-123-4567",
            "region": "US"
          },
          {
            "number": "+33 6 12 34 56 78",
            "region": "FR"
          }
        ]
      },
      "profile": {
        "id": "746e4816-19c8-54d8-b558-65a5a52cc85c",
        "full_name": "John Snow",
        "first_name": "John",
        "last_name": "Snow",
        "location": {
          "country": "United States",
          "country_code": "US",
          "city": "San Francisco",
          "region": "California"
        }
      }
    }
  ]
}

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

The unique identifier returned when the enrichment was started

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

OK

id
string<uuid>
Example:

"2db5ea61-1752-42cf-8ea1-ab1da060cd0a"

name
string
Example:

"Sales Operations in London"

status
enum<string>
Available options:
CREATED,
IN_PROGRESS,
CANCELED,
CREDITS_INSUFFICIENT,
FINISHED,
RATE_LIMIT,
UNKNOWN
Example:

"FINISHED"

data
object[]
cost
object