Skip to main content
GET
/
api
/
v2
/
lead-lists
/
{id}
/
verification-stats
Get verification statistics for a lead list
curl --request GET \
  --url https://api.instantly.ai/api/v2/lead-lists/{id}/verification-stats \
  --header 'Authorization: Bearer <token>'
{
  "stats": {
    "verified": 150,
    "invalid": 25,
    "risky": 10,
    "catch_all": 5,
    "job_change": 2,
    "verification_job_pending_leadfinder": 11,
    "verification_job_pending_user": 12
  },
  "total_leads": 203
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required
Example:

"019cc043-e38b-7062-a13d-c143ed8e7562"

Response

Default Response

stats
object
required

Sums up the leads by their verification status

Example:
{
"verified": 150,
"invalid": 25,
"risky": 10,
"catch_all": 5,
"job_change": 2,
"verification_job_pending_leadfinder": 11,
"verification_job_pending_user": 12
}
total_leads
number
required

Total number of leads in the list

Example:

203