LogoOcean.io
API/Endpoints/Reveal

Reveal emails

Get emails and email statuses for people.

POST
/v2/reveal/emails

Request Body

application/jsonRequired
personIdsRequiredPersonids

List of Ocean person ids to fetch the email data for. One email credit will be charged for every verified email found.

webhookUrlRequiredWebhookurl

Url of the webhook the email data should be sent to, when completed.

Query Parameters

apiTokenRequiredApitoken
curl -X POST "https://api.ocean.io/v2/reveal/emails?apiToken=string" \
  -H "Content-Type: application/json" \
  -d '{
    "personIds": [
      "personId1",
      "personId2"
    ],
    "webhookUrl": "https://some-url.com"
  }'

Successful Response

{
  "status": "in progress"
}