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.
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

params
object
The original search parameters
qualification
string
ongoing

Error Responses

CodeMessage
400Missing id in the query params
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"
}