Skip to main content
GET
/
phone
/
bulk
curl --request GET \
  --url 'https://api.enrow.io/phone/bulk?id=e3b61122-d6a6-4ea7-b331-9b734682a76a' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "general": {
    "id": "e3b61122-d6a6-4ea7-b331-9b734682a76a",
    "status": "completed"
  },
  "results": [
    {
      "country": "US",
      "index": 0,
      "number": "+15705551234",
      "params": {
        "linkedin_url": "https://www.linkedin.com/in/michael-scott"
      },
      "qualification": "found"
    },
    {
      "country": "US",
      "index": 1,
      "number": "+15705555678",
      "params": {
        "linkedin_url": "https://www.linkedin.com/in/dwight-schrute"
      },
      "qualification": "found"
    }
  ],
  "stats": {
    "credits_cost": 100,
    "requested": 2,
    "valid": 2
  }
}
GET
https://api.enrow.io/phone/bulk?id={batch_id}
Retrieve results of a previously submitted bulk phone search.
Using a webhook allows you to skip calling this GET endpoint. See How Webhooks Work.

Query Parameters

id
string
required
The id returned from the POST request

Response

200 — Search finished

general
object
Batch metadata
stats
object
Batch statistics
results
array
Array of search results

200 — Search ongoing

general
object
id and status: "ongoing"
stats
object
requested and finished counts

Error Responses

CodeMessage
400Missing id in the query params
curl --request GET \
  --url 'https://api.enrow.io/phone/bulk?id=e3b61122-d6a6-4ea7-b331-9b734682a76a' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "general": {
    "id": "e3b61122-d6a6-4ea7-b331-9b734682a76a",
    "status": "completed"
  },
  "results": [
    {
      "country": "US",
      "index": 0,
      "number": "+15705551234",
      "params": {
        "linkedin_url": "https://www.linkedin.com/in/michael-scott"
      },
      "qualification": "found"
    },
    {
      "country": "US",
      "index": 1,
      "number": "+15705555678",
      "params": {
        "linkedin_url": "https://www.linkedin.com/in/dwight-schrute"
      },
      "qualification": "found"
    }
  ],
  "stats": {
    "credits_cost": 100,
    "requested": 2,
    "valid": 2
  }
}