LogoOcean.io
API/Endpoints/Reveal

Reveal phones

Get phones and phone statuses for people.

POST
/v2/reveal/phones

Request Body

application/jsonRequired
personIdsRequiredPersonids

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

webhookUrlRequiredWebhookurl

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

Query Parameters

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

Successful Response

{
  "status": "in progress"
}