Work Email Endpoint using Cerebria ID

This requests a Verified Work Email based on a single or array of Cerebria ID's.

This requests a Verified Work Email based on a single or array of Cerebria ID's.

POST /contactlookup/cerebria

The cost is credits, you are only charged on a successful, verified email.

Request Body

NameTypeDescription

cerebria_ids*

String

An array of Cerebria ID's

search_latest_email

String

Set as true to retrieve the latest emails

Expected Request Body

"body":{
   "cerebria_ids":[
      "MxB4IosBFoATWK64PT2Q",
      "Zoy4C4sBFoATWK64ULDg",
      "vIy4C4sBFoATWK64ULWg"
   ],
   "search_latest_email": "true"
}

Expected Response

[
  {
    "data": [
      {
        "email_address": "dale@cerebria.tech",
        "verified": "true",
        "verified_result": "deliverable",
        "cerebria_id": "9bLrC4sBFoATWK54u0iP",
        "cached_email": "dale.kirkwood@nivy.watch"
      },
      {
        "email_address": "billgates@microsoft.com",
        "verified": "True",
        "verified_result": "Accept-All",
        "cerebria_id": "Zoy4C5sBFoATWK64ULCg",
        "cached_email": "billgates@microsoft.com"
      }
    ]
  }
]

Last updated