Skip to main content
POST
/
phone
/
bulk
curl --request POST \
  --url https://api.enrow.io/phone/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "searches": [
      {
        "linkedin_url": "https://www.linkedin.com/in/michael-scott"
      },
      {
        "linkedin_url": "https://www.linkedin.com/in/dwight-schrute"
      }
    ],
    "settings": {
      "webhook": "https://your-app.com/webhooks/enrow/phone"
    }
  }'
{
  "credits_used": 3400,
  "estimated_duration": 5,
  "id": "e3b61122-d6a6-4ea7-b331-9b734682a76a",
  "message": "Bulk search operating"
}
POST
https://api.enrow.io/phone/bulk
Run multiple phone searches in a single request. Up to 5,000 searches per batch. Each search needs to contain either:
  • The URL of a person’s LinkedIn profile (e.g., https://www.linkedin.com/in/michael-scott/)
  • The combination of individual information: first_name + last_name + (company_name or company_domain)
The LinkedIn URL will always prevail on the individual information if both are present.

Request Body

searches
array of objects
required
Search payloads for which to find corresponding phone numbers.
custom
object
Custom params that will be returned in the GET response and in the webhook notification.
settings
object
Settings relative to the whole bulk search.

Response

201 — Bulk search created

message
string
Confirmation message
id
string
Unique identifier for this batch. Use this to retrieve results via the GET endpoint.
credits_used
number
Total credits consumed
estimated_duration
number
Estimated processing time in minutes (not guaranteed)
credits
object
Credit breakdown

Error Responses

CodeMessage
400At least 1 phone search must be present in the payload
400Missing payload
401This apikey is not valid
422Insufficient balance
curl --request POST \
  --url https://api.enrow.io/phone/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "searches": [
      {
        "linkedin_url": "https://www.linkedin.com/in/michael-scott"
      },
      {
        "linkedin_url": "https://www.linkedin.com/in/dwight-schrute"
      }
    ],
    "settings": {
      "webhook": "https://your-app.com/webhooks/enrow/phone"
    }
  }'
{
  "credits_used": 3400,
  "estimated_duration": 5,
  "id": "e3b61122-d6a6-4ea7-b331-9b734682a76a",
  "message": "Bulk search operating"
}