Endpoints
Get Enrichment Results
Endpoints
Get Enrichment Results
Retrieve the enrichment results for a specific request ID.
GET
/
async
/
{request_id}
curl --request GET \
--url https://app.bettercontact.rocks/api/v2/async/{request_id}
{
"id": "fefbc2203558eb3adcea",
"status": "terminated",
"credits_consumed": 1,
"credits_left": 331,
"summary": {
"total": 1,
"valid": 1,
"catch_all": 0,
"catch_all_safe": 0,
"catch_all_not_safe": 0,
"undeliverable": 0,
"not_found": 0
},
"data": [
{
"enriched": true,
"email_provider": "XXX",
"contact_first_name": "Elon",
"contact_last_name": "Musk",
"contact_email_address": "[email protected]",
"contact_email_address_status": "deliverable",
"contact_gender": "male",
"contact_job_title": "CEO of Tesla"
}
]
}
Path Parameters
Response
200
application/json
Enrichment results retrieved successfully
curl --request GET \
--url https://app.bettercontact.rocks/api/v2/async/{request_id}
{
"id": "fefbc2203558eb3adcea",
"status": "terminated",
"credits_consumed": 1,
"credits_left": 331,
"summary": {
"total": 1,
"valid": 1,
"catch_all": 0,
"catch_all_safe": 0,
"catch_all_not_safe": 0,
"undeliverable": 0,
"not_found": 0
},
"data": [
{
"enriched": true,
"email_provider": "XXX",
"contact_first_name": "Elon",
"contact_last_name": "Musk",
"contact_email_address": "[email protected]",
"contact_email_address_status": "deliverable",
"contact_gender": "male",
"contact_job_title": "CEO of Tesla"
}
]
}