curl --request GET \
--url https://app.fullenrich.com/api/v1/contact/enrich/bulk/{enrichment_id} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"status": "CREATED",
"datas": [
{
"custom": {},
"contact": {
"firstname": "<string>",
"lastname": "<string>",
"domain": "<string>",
"most_probable_email": "<string>",
"most_probable_email_status": "<string>",
"most_probable_personal_email": "<string>",
"most_probable_personal_email_status": "<string>",
"most_probable_phone": "<string>",
"emails": [
{
"email": "<string>",
"status": "DELIVERABLE"
}
],
"personal_emails": [
{
"email": "<string>",
"status": "DELIVERABLE"
}
],
"phones": [
{
"number": "<string>",
"region": "<string>"
}
],
"social_medias": [
{
"url": "<string>",
"type": "LINKEDIN"
}
],
"profile": {
"linkedin_id": 123,
"linkedin_url": "<string>",
"linkedin_handle": "<string>",
"sales_navigator_id": "<string>",
"firstname": "<string>",
"lastname": "<string>",
"premium_account": true,
"location": "<string>",
"summary": "<string>",
"headline": "<string>",
"position": {
"title": "<string>",
"description": "<string>",
"start_at": {
"month": 123,
"year": 123
},
"end_at": {
"month": 123,
"year": 123
},
"company": {
"linkedin_id": 123,
"linkedin_url": "<string>",
"linkedin_handle": "<string>",
"name": "<string>",
"description": "<string>",
"website": "<string>",
"domain": "<string>",
"industry": "<string>",
"type": "<string>",
"year_founded": 123,
"headcount": 123,
"headcount_range": "<string>",
"headquarters": {
"region": "<string>",
"city": "<string>",
"country": "<string>",
"country_code": "<string>",
"postal_code": "<string>",
"address_line_1": "<string>",
"address_line_2": "<string>"
}
}
}
}
}
}
],
"cost": {
"credits": 123
}
}Use this endpoint to retrieve the result from an enrich. You don’t need to use this endpoint if you are using a webhook. Using a webhook is the method we recommend to get the result as soon as the enrichment is done.
curl --request GET \
--url https://app.fullenrich.com/api/v1/contact/enrich/bulk/{enrichment_id} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"status": "CREATED",
"datas": [
{
"custom": {},
"contact": {
"firstname": "<string>",
"lastname": "<string>",
"domain": "<string>",
"most_probable_email": "<string>",
"most_probable_email_status": "<string>",
"most_probable_personal_email": "<string>",
"most_probable_personal_email_status": "<string>",
"most_probable_phone": "<string>",
"emails": [
{
"email": "<string>",
"status": "DELIVERABLE"
}
],
"personal_emails": [
{
"email": "<string>",
"status": "DELIVERABLE"
}
],
"phones": [
{
"number": "<string>",
"region": "<string>"
}
],
"social_medias": [
{
"url": "<string>",
"type": "LINKEDIN"
}
],
"profile": {
"linkedin_id": 123,
"linkedin_url": "<string>",
"linkedin_handle": "<string>",
"sales_navigator_id": "<string>",
"firstname": "<string>",
"lastname": "<string>",
"premium_account": true,
"location": "<string>",
"summary": "<string>",
"headline": "<string>",
"position": {
"title": "<string>",
"description": "<string>",
"start_at": {
"month": 123,
"year": 123
},
"end_at": {
"month": 123,
"year": 123
},
"company": {
"linkedin_id": 123,
"linkedin_url": "<string>",
"linkedin_handle": "<string>",
"name": "<string>",
"description": "<string>",
"website": "<string>",
"domain": "<string>",
"industry": "<string>",
"type": "<string>",
"year_founded": 123,
"headcount": 123,
"headcount_range": "<string>",
"headquarters": {
"region": "<string>",
"city": "<string>",
"country": "<string>",
"country_code": "<string>",
"postal_code": "<string>",
"address_line_1": "<string>",
"address_line_2": "<string>"
}
}
}
}
}
}
],
"cost": {
"credits": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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.
OK
CREATED, IN_PROGRESS, CANCELED, CREDITS_INSUFFICIENT, FINISHED, RATE_LIMIT, UNKNOWN Show child attributes
Show child attributes
If we receive multiple emails, we will select the most likely one and exclude any “INVALID” emails.
Status of the most_probable_email.
If we receive multiple emails, we will select the most likely one and exclude any “INVALID” emails.
Status of the most_probable_personal_email.
If we get multiple phones, we will return the most likely one. If we detect a phone as a landline, it will not be returned here (even if it is the only one found)
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?