Skip to main content
GET
/
phone
/
single
curl --request GET \
  --url 'https://api.enrow.io/phone/single?id=94cbc13b-7d77-4f41-83f0-60106daa7182' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "params": {
    "linkedin_url": "https://www.linkedin.com/in/michael-scott/"
  },
  "custom": "#u84hde941Jdx",
  "number": "+15705551234",
  "country": "US",
  "qualification": "found"
}
GET
https://api.enrow.io/phone/single?id={search_id}
Retrieve the result of a previously initiated phone search. Authenticate every request with your API key in the x-api-key header.
Using a webhook allows you to skip calling this GET endpoint. See How Webhooks Work.

Query Parameters

id
string
required
The search ID returned from the POST request

Response

200 — Number found

params
object
The original search parameters
custom
string
Custom value passed in the original request
number
string
The phone number
country
string
ISO 3166-1 Alpha-2 country code (e.g., "FR", "US")
qualification
string
found

200 — Number not found

params
object
The original search parameters
qualification
string
not_found

202 — Search still in progress

qualification
string
ongoing

Error Responses

CodeMessage
400Missing id in the query params
500Could not retrieve single search results
See Error handling for the full list of status codes and response formats. Note that retrieving a result does not consume credits — credits are charged when the search is launched, as described in Credits & billing.
curl --request GET \
  --url 'https://api.enrow.io/phone/single?id=94cbc13b-7d77-4f41-83f0-60106daa7182' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "params": {
    "linkedin_url": "https://www.linkedin.com/in/michael-scott/"
  },
  "custom": "#u84hde941Jdx",
  "number": "+15705551234",
  "country": "US",
  "qualification": "found"
}

Next steps

Find a phone number

Launch a single phone search from a LinkedIn URL.

Get bulk results

Retrieve the results of a bulk phone search.

Webhooks

Get notified automatically when a search completes.

Authentication

How to pass your API key in the x-api-key header.